Metadata-Version: 2.4
Name: databricks_uc_apis
Version: 0.0.7
Summary: This has all the APIs to interact with Databricks Unity Catalog.
Author-email: Nitin keshav <nitin.keshav11@gmail.com>
License: MIT
Keywords: one,two
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Provides-Extra: release
Requires-Dist: build; extra == "release"
Requires-Dist: twine; extra == "release"
Provides-Extra: static-code-qa
Requires-Dist: pre-commit; extra == "static-code-qa"
Requires-Dist: pylint; extra == "static-code-qa"
Requires-Dist: black; extra == "static-code-qa"
Requires-Dist: isort; extra == "static-code-qa"
Requires-Dist: flake8; extra == "static-code-qa"
Requires-Dist: flake8-docstrings; extra == "static-code-qa"
Requires-Dist: Flake8-pyproject; extra == "static-code-qa"
Requires-Dist: radon; extra == "static-code-qa"
Provides-Extra: dev
Requires-Dist: databricks_uc_apis[release,static-code-qa,test]; extra == "dev"

# databricks_uc_apis

## Quick start

```bash
pip install databricks_uc_apis
```

```python
from dbrick import ....
```

## Developing/Contributing

### System requirements

You will need the following installed on your machine to develop on this codebase

- `make` AKA `cmake`, e.g. `sudo apt-get update -y; sudo apt-get install cmake -y`
- Python 3.7+, ideally using `pyenv` to easily change between Python versions
- `git`

###

```bash
# clone the repo
git clone https://github.com/<your github username>/databricks_uc_apis.git

# install the dev dependencies
make install

# run the tests
make test
```
