https://github.com/dmytrolitvinov/python-dubidoc
Dubidoc API client ✍
https://github.com/dmytrolitvinov/python-dubidoc
Last synced: 8 months ago
JSON representation
Dubidoc API client ✍
- Host: GitHub
- URL: https://github.com/dmytrolitvinov/python-dubidoc
- Owner: DmytroLitvinov
- License: mit
- Created: 2024-07-11T17:40:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-13T12:53:48.000Z (about 1 year ago)
- Last Synced: 2025-02-15T08:46:40.223Z (8 months ago)
- Language: Python
- Homepage: https://dubidoc.com.ua/
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Dubidoc API client ✍
[](https://pypi.python.org/pypi/dubidoc/)
[](https://pypi.python.org/pypi/dubidoc/)
[](https://pypi.python.org/pypi/dubidoc/)---
**Documentation**: [https://my.dubidoc.com.ua/api/api/v1/docs](https://my.dubidoc.com.ua/api/api/v1/docs)**Source Code**: [https://github.com/DmytroLitvinov/python-dubidoc](https://github.com/DmytroLitvinov/python-dubidoc)
**PyPI**: [https://pypi.org/project/dubidoc/](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.## Installation
```sh
pip install dubidoc
```## Usage
1) Request your token at [Dubidoc team](https://t.me/dmytro_dubilet/814)
2) Use that token to initialize client:
```python
from dubidoc import DubidocAPIClientapi_token = 'xxxxxxxxxxxxxxx'
dubidoc = DubidocAPIClient(api_token)
documents = dubidoc.document_api.list()
print(documents.data, documents.response_code)
```## License
This project is licensed under the terms of the [MIT license](https://github.com/DmytroLitvinov/python-dubidoc/blob/master/LICENSE).
### HOW TO MAKE A RELEASE
* Add changes to `CHANGELOG.md`
* Change version in `dubidoc/__init__.py` and `pyproject.toml`
* `source .env/bin/activate`
* `python3 -m build --sdist --wheel`
* `twine upload dist/*`