Metadata-Version: 2.1
Name: bitgrit-cloud-api
Version: 0.0.4
Summary: Library to interact with our cloud service
Home-page: https://github.com/bitgrit-official/bitgrit-cloud
Author: bitgrit inc
Author-email: develop@bitgrit.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# bitgrit-cloud-api
Library to interact with our cloud service(GCP)

> Note: look inside `./dist/` folder to see the latest build `.whl` file.

# How to setup the Library:
### Install Dependencies/Packages:

### Run this command:
```bash
pip install -r requirements.txt
```

### Import the Library:
```python
from dsn.bitgrit.gcp.dataset_api import DatasetAPI
```

### To checkout documentation:
```bash
pydoc dataset
```

### To set the environment variable
```bash
export VAULT_TOKEN=<vault-token>
export VAULT_URL=<vault-url>
```

### To run the test
```bash
python -m unittest
```
### To package the library
```bash
python -m pip install --user --upgrade setuptools wheel
python setup.py sdist bdist_wheel
```

