Metadata-Version: 2.1
Name: pykeboola
Version: 0.0.6
Summary: Python package for interacting with Keboola
Author-email: Tomas Pachovsky <pachovst@gmail.com>
Project-URL: Homepage, https://github.com/Pachac/pykeboola
Project-URL: Issues, https://github.com/Pachac/pykeboola/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10.12
Description-Content-Type: text/markdown
License-File: LICENSE

# pykeboola
Python package for interacting with Keboola. I have just started this and will build it as needed for future development.
For now it includes only queueing jobs and checking on their statuses.

# How to use
You can use the `Client` class to gateway into individual functionalities:
```
from pykeboola import Client
client = Client('url', 'token')
```

For now there is only functionality for queueing jobs and checking their statuses. E.g.:
```
client.jobs.check_job_status(id_of_the_job)
```
