Official Python Package for creation of disy Cadenza analytics extensions
Project description
Cadenza Analytics Python
cadenzaanalytics for python is the official package for fast and easy creation of disy Cadenza analytics extensions. It enables the extension of disy Cadenza for advanced analytics purposes with the usage of python code.
Currently, this package is in beta status: it can be used for testing, but there may be breaking changes before a full release.
Find the docs at https://disyinformationssysteme.github.io/cadenza-analytics-python
Dependencies:
- Python 3
- Flask
- Pandas
- requests-toolbelt
Example:
An example extension can be found in examples/extension/example_extensions.py.
To test the example extension, clone this repository, install the dependencies, navigate to the folder examples/extension
. Run the example file in your python environment e.g.:
python example_extensions.py
A development server will be started on localhost http://127.0.0.1:5005
. The analytics extension can now be registered and used in disy Cadenza.
It is not recommended to use the development server in a production environment.
Development of Cadenza Analytics Python
Development Environment
Development is possible via most common IDEs such as Visual Studio Code or PyCharm. Make sure to mark the src
directory as "Sources Root" to make sure cross imports from the examples
directory work as expected and that imports within cadenzaanalytics
can get resolved by the IDE.
Python version
We aim to support older python versions and dependencies, but best experience and most features will be available for newer versions, currently this is Python 9.12
.
Versioning
Versioning of cadenzaanalytics
will happen via poetry-bumpversion. On release, this will bump the version depending on the chosen release type.
The project uses semantic versioning with a major, minor and patch version.
Documentation
On release, all "Unreleased" changes in the Changelog will be automatically tagged with the released version. So make sure to add relevant changelog notes for every change you make and follow the style described in the changelog file.
Pylint
Pylint is used for making sure that cadenzaanalytics
follows some common styles. If necessary some rules can be disabled globally in the .pylintrc file or in the corresponding python file. There is a GitHub workflow to validate this. For some IDEs like PyCharm there are also plugins for Pylint so that linting can happen within the IDE and errors in the pipeline can be avoided.
Releasing:
Make sure to check the following
- Does the Changelog contain all relevant information?
- Are all relevant workflows green?
- Do you want to make a test release to https://test.pypi.org? This is helpful to test
cadenzaanalytics
with existing extensions. To get the latest version immediately it might be good to disable caches, e.g. viapip install --upgrade cadenzaanalytics --extra-index-url https://test.pypi.org/simple --no-cache-dir
. For a first installation in a new (virtual) environment, you can usepip install cadenzaanalytics --extra-index-url https://test.pypi.org/simple
- To make a non-test release, choose the pypi.org deployment environment in the release dialog.
Dockerized Example Extension
To run the example (and your production application) in a docker container you will need to define the wsgi server that will run the flask app.
The provided Dockerfile in the examples uses gunicorn with some example options, for more details consult the documentation. Important is that gunicorn has access to a function creating or providing the flask app object, which for cadenzanalytics
is the CadenzaAnalyticsExtensionService
.
The requirements file can use test releases when adding --extra-index-url https://test.pypi.org/simple
in the first line. It can (re)define versions of its own or transient dependencies, but most importantly needs the cadenzaanalytics
dependency.
cd /examples
docker build . -t cadenza-analytics-example
docker image list
docker run -p 8080:8080 YOUR_CREATED_IMAGE_ID
Technical notes
The release process uses PyPi's trusted publishing, so is based on
OIDC id token and uses no API token from PyPi. The relevant permission id-token: write
must be given to the release-job.
The test environment test.pypi.org makes no guarantee on availability of the package or even on the account. So it might be necessary to recreate an account at some point in time.
To test and play around with poetry-bumpversion locally, you can use it as follows, see documentation of poetry and poetry-bumpversion
pipx install poetry
pipx run poetry self add poetry-bumpversion
pipx run poetry version minor -s
License:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cadenzaanalytics-0.1.17.tar.gz
.
File metadata
- Download URL: cadenzaanalytics-0.1.17.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f003ce3503982346f945b21871e80f41600d9b101a35c0df7f6d8ee67522e775 |
|
MD5 | ab2d0e54f4a157bb75b9644abd7f1531 |
|
BLAKE2b-256 | a9538f85fd6f3f3c64211b174f2889fc0b0087d48acbcb16e3dd4947327f0319 |
File details
Details for the file cadenzaanalytics-0.1.17-py3-none-any.whl
.
File metadata
- Download URL: cadenzaanalytics-0.1.17-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ca181fc27f93b766703669714d5cd9ae9ed79a6f165adb1a47ebb8c28d568de |
|
MD5 | 711d709b820f66e3eba5970547e58840 |
|
BLAKE2b-256 | 7a696c96523fd3d4b9c3c2959249244532f9139dd176e815a92534c721508ba2 |