The Usabilla Python client allows users to access data from their Usabilla accounts. It makes use of the API to request the following products and resources:
- Buttons
- Feedback items
- Campaigns
- Campaign results
- Campaign statistics
- In-Page widgets
- In-Page feedback
- Buttons
- Feedback items
- Apps
- Feedback items
- Campaigns
- Campaign results
For more information on resources, authorization and available API calls, please visit our documentation.
Requires Python 3. Support for Python 2.7 is expected but not tested or validated.
pip install usabilla-api
The example folder contains an example of the client, which gives an idea how the client can be used and what is possible.
When working with the limit
parameters (default value is 100) you can request resources using the item_iterator()
function.
The API returns data in pages. This function returns a Generator which
traverses these pages for you and yields each result in the current page before retrieving the next page.
The Usabilla Python Client API is maintained by Usabilla Development Team. Everyone is encouraged to file bug reports, feature requests, and pull requests through GitHub. This input is critical and will be carefully considered, but we can’t promise a specific resolution or time frame for any request. For more information please email our Support Team at [email protected].
In order to release a new version of this library, follow these steps:
- bump version in setup.py
- merge and tag the new release with
v<versio>
- run
python -m build
- upload release to pypi-test:
python -m twine upload --repository testpypi dist/*
- upload release to pypi:
python -m twine upload --repository pypi dist/*