Skip to content

PyDelphinTop

EricZinda edited this page Nov 17, 2022 · 4 revisions

PyDelphin is a Python library for working with DELPH-IN representations, as well as client interfaces to the ACE processor and web API.

PyDelphin can be installed from the Python Package index as follows:

$ pip3 install pydelphin 

But it is recommended to install in a virtual environment for your application. For example:

 1 $ python3 -m venv env # create a virtual environment 2 $ source env/bin/activate # activate the environment 3 $ pip install pydelphin # install to the environment 4 

The documentation is available online, and the source is on github.

Clone this wiki locally