Metadata-Version: 2.1
Name: dremio-api-wrapper
Version: 1.0.0
Summary: Wrapper to use Dremio rest api.
Home-page: https://github.com/victorouttes/dremio-api-wrapper
Author: Victor Outtes
Author-email: victor.outtes@gmail.com
License: MIT
Keywords: dremio
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Dremio Api Wrapper
Wrapper to use Dremio REST API in Python applications.

## Example
```
dremio_wrapper = DremioWrapper(host='', username='', password='')
dremio_wrapper.create_element(element_type='folder', element_name_or_path='folder.subfolder')
```

