This is a Python wrapper for a Analyze Re REST API. It allows you to easily utilize the PRIME Re platform in your applications.
pip install analyzere
Please see http://docs.analyzere.net/?python for the most up-to-date documentation.
The Analyze Re Python Client uses Poetry for package and dependency management. Poetry can be easily installed using either pip or conda.
poetry run pytest (or) poetry run py.test
If you are going to publish a new version increment the version number in the pyproject.toml file.
poetry build
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry publish --repository testpypi --username __token__ --password <token_value>
poetry build
poetry publish --username __token__ --password <token_value>