Documentation: https://my.dubidoc.com.ua/api/api/v1/docs
Source Code: https://github.com/DmytroLitvinov/python-dubidoc
PyPI: https://pypi.org/project/dubidoc/
Python API wrapper around Dubidoc API. Feel free to contribute and make it better! 🚀
NOTE: Since it is early release, some of the API endpoints may not be implemented yet. If you need some specific endpoint, feel free to create an issue or pull request. Also, library can be changed in the future, so be careful with the updates as for now.
pip install dubidoc
-
Request your token at Dubidoc team
-
Use that token to initialize client:
from dubidoc import DubidocAPIClient
api_token = 'xxxxxxxxxxxxxxx'
dubidoc = DubidocAPIClient(api_token)
documents = dubidoc.document_api.list()
print(documents.data, documents.response_code)
This project is licensed under the terms of the MIT license.
- Add changes to
CHANGELOG.md
- Change version in
dubidoc/__init__.py
andpyproject.toml
source .env/bin/activate
python3 -m build --sdist --wheel
twine upload dist/*