These Python packages implement example Elimity Insights custom connectors importing from different sources.
Installing the connectors requires Python version 3.9 or higher. Since these are just example scripts, they are not publicly available on PyPI. Local installation in a virtual environment is recommended for trying out the connectors:
$ python -m venv venv
$ source venv/bin/activate
(venv) $ pip install <connector-directory>
After installing, a CLI for the chosen connector should be available in the virtual environment:
(venv) $ elimity-insights-example-<connector-name>-connector --help
Contributing to these connectors requires Poetry. The examples below show how to perform some common development tasks, with the working directory set for a specific connector.
$ poetry install
$ poetry run black .
$ poetry run mypy .