Installation

note

To install the plugin, you must be in the Crowd groups granting you access to the required Artifactory repositories. If you don’t already have access, contact the Customer Success team or create a Jira ticket.

Like the core atoti package and the other plugin packages, atoti-limits can be installed as a Python package or as a Conda package, but pip, poetry , or conda need some extra configuration to be able to download the package from private repositories.

In the commands below, replace {{username}} and {{password}} with your credentials, escaping them if they contain reserved characters.

pip

pip install atoti-limits --extra-index-url https://{{username}}:{{password}}@activeviam.jfrog.io/artifactory/api/pypi/bas-tools-pypi-release/simple

Poetry

First, follow Poetry’s instructions to configure https://activeviam.jfrog.io/artifactory/api/pypi/bas-tools-pypi-release/ as a private repository:

# Name our repo `jfrog`
poetry source add jfrog https://activeviam.jfrog.io/artifactory/api/pypi/bas-tools-pypi-release/

# If your password contains reserved characters, enclose them in quotes (eg `pa$$word`)
# Percent-encoding will not work here
poetry config http-basic.jfrog <username> <password>

Then:

poetry add atoti-limits

Conda

Add the atoti channel:

conda config --add channels https://{{username}}:{{password}}@activeviam.jfrog.io/artifactory/bas-conda-release

Install atoti-limits:

conda install atoti-limits