Metadata-Version: 2.1
Name: botorift
Version: 0.0.1
Summary: A wrapper to interact with containers and blobs
Home-page: https://github.com/datarisk-io/botorift
Author: João Nogueira
Author-email: joao.nogueira@datarisk.io
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastcore
Requires-Dist: pandas
Requires-Dist: azure-storage-blob (==12.17.0)
Requires-Dist: python-dotenv
Requires-Dist: pyarrow
Provides-Extra: dev

# botorift

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

``` sh
pip install botorift
```

## How to use

``` python
import os
from botorift.azure_client import AzureClient
```

``` python
client = AzureClient(env_path='../.env')

container_name = os.environ['CONTAINER_NAME']
base_path = 'datascience-dev/ultragaz/smb/data/gold/'
```

``` python
df = client.read_parquet(container_name=container_name, file_path="datascience-dev/ultragaz/smb/data/gold/df_abt.parquet")
```
