awsed_python_client
is a python client for the awsed.ucsd.edu
API. Refer to API.md for a list of commands.
To install awsed awsed_python_client
run:
pip install git+https://github.com/ucsd-ets/awsed_python_client@VERSION
or add it to requirements.txt
:
git+https://github.com/ucsd-ets/awsed_python_client@VERSION
Please follow the installation procedure and initialize the client as such:
from awsed.client import DefaultClient
awsed_client = DefaultClient(endpoint='awsed_endpoint.com', awsed_api_key='42')
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pytest