Skip to main content

AIDA Interchange Format

Project description

AIF Python API

To use the aida_interchange package within your project, you must first install it. It is recommended that you install aida_interchange into a python3 virtual environment. See Python Virtual Environment for more details on creating and using a virtual environment.

Install

To install aida_interchange, make sure a Python Virtual Environment is activated and run the following command:

$ pip install aida-interchange

The aida_interchange modules can now be imported into your project.

API Documentation

The python project uses Sphinx for generating documentation. To generate the documentation, make sure a Python Virtual Environment is activated, navigate to the AIDA-Interchange-Format/python/docs directory, and run the update_documentation.sh script.

$ cd docs
$ ./update_documentation.sh

This script will generate documentation in the form of HTML and place it within the AIDA-Interchange-Format/python/docs/build/html folder.

Python Virtual Environment

It is recommended that Python development be done in an isolated environment called a virtual environment. There are multiple ways to set up and use Python virtual environments. This README describes one of those ways.

The basic steps are:

  1. Install virtualenv (done once)
  2. Create a virtual environment (done once per development effort)
  3. Repeat as needed:
    1. Activate a virtual environment
    2. Install libraries and develop code
    3. Deactivate a virtual environment

Follow the instructions below to set up your virtual environment. It is important to note that you should never install any project specific python dependencies outside of your virtual environment. Also, ensure that your virtual environment has been activated before running python scripts within this repository.

Install virtualenv

If you haven't installed virtualenv yet, follow these steps. This only needs to be once.

$ cd ~
$ mkdir .virtualenvs
$ pip install virtualenv

Verify virtualenv is installed

$ which virtualenv

Create virtual environment

When you are starting development of a python project, you first need to create a virtual environment. The name of the virtual environment in the example below, aida-interchange-format, assumes you are making changes or testing the AIF library. Feel free to use a name specific to your application if you are just using the AIF library.

To create the virtual environment and install the latest AIF, run the following:

$ virtualenv -p python3 ~/.virtualenvs/aida-interchange-format
$ source ~/.virtualenvs/aida-interchange-format/bin/activate
$ pip install aida-interchange

Your virtual environment is now activated. The following sections describe deactivating and re-activating the virtual environment.

Deactivate virtual environment

To deactivate your current virtual environment, run the following command.

$ deactivate

Activate virtual environment

To re-activate your virtual environment, run the following command.

$ source ~/.virtualenvs/aida-interchange-format/bin/activate

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aida-interchange-1.2.1.tar.gz (54.7 kB view hashes)

Uploaded Source

Built Distribution

aida_interchange-1.2.1-py3-none-any.whl (57.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page