Metadata-Version: 2.1
Name: dataplane
Version: 0.0.20
Summary: The data engineering library to build robust, reliable and on time data pipelines in Python.
Author: Saul Frank, Dataplane, Inc.
Project-URL: Homepage, https://dataplane.app
Project-URL: Github, https://github.com/dataplane-app/dataplane-python-package
Project-URL: Issues, https://github.com/dataplane-app/dataplane/issues
Project-URL: Feedback, https://github.com/dataplane-app/dataplane/discussions
Keywords: workflow,data-science,data,airflow,etl,dataplane,data-engineering,data-pipelines,datawarehouse,automation,data-analysis,scheduler
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# dataplane-python-package
The data engineering library to build robust, reliable and on time data pipelines in Python.

### To use with Dataplane Data Platform
Install Python Package on Dataplane: https://learn.dataplane.app/installing-python-packages<br />
Recipes to use Dataplane Python Package: https://recipes.dataplane.app/office-365/sharepoint-api

### Run tests in repo root
```shell
pytest -s
```

### For a specific test

```shell
pytest -s src/dataplane/data_storage/test_sharepoint_upload.py
pytest -s -k test_sharepoint.py
```

### Troubleshooting errors
If an error occurs, try removing .pytest_cache and ```__pycache__``` - can happen after devcontainers build

```shell
find . | grep -E "(/__pycache__$|\.pyc$|\.pyo$)" | xargs rm -rf
rm -rf /home/vscode/.local/lib/python3.10/site-packages/
```

### S3 / Minio for testing in VS code devcontainers
* Go to http://localhost:9011
* Login with: username: admin and password: hello123
* bucket: dataplanebucket
