This is the QuartzBio Python package and command-line interface (CLI).
Install quartzbio using pip:
pip install quartzbio
For interactive use, we recommend installing IPython and gnureadline:
pip install ipython
pip install gnureadline
To log in, type:
quartzbio login
Enter your QuartzBio credentials and you should be good to go!
pip install -e git+https://github.com/quartzbio/quartzbio-python.git#egg=quartzbio
git clone https://github.com/quartzbio/quartzbio-python.git
cd quartzbio-python/
python setup.py develop
or
pip install -e .
Or install tox and run:
pip install tox
tox
You will need to configure Twine in order to push to PyPI.
Maintainers can release quartzbio-python to PyPI with the following steps:
bumpversion <major|minor|patch>
git push --tags
make changelog
make release
For requests, please email QuartzBio Product Support.
The QuartzBio python client can be configured by setting system environment variables. Supported environment variables are:
QUARTZBIO_API_HOST
- The URL of the target API backend. If not specified the value from the local credentials file will be used.
QUARTZBIO_ACCESS_TOKEN
- The OAuth2 access token for authenticating with the API.
The lookup order for credentials is:
- Access Token environment variable
- API Key environment variable
- Local Credentials file entry for the specific API host
QUARTZBIO_LOGLEVEL
- The log level at which to log messages. If not specified the default log level will be WARN.
QUARTZBIO_LOGFILE
- The file in which to write log messages. If the file does not exist it will be created. If not specified '~/.quartzbio/quartzbio-python.log' will be used by default.
QUARTZBIO_RETRY_ALL
- Flag for enabling aggressive retries for failed requests to the API. When truthy, the client will attempt to retry a failed request regardless of the type of operation. This includes idempotent and nonidempotent operations: "HEAD", "GET", "PUT", "POST", "PATCH", "DELETE", "OPTIONS", "TRACE" If this value is not set it will default to false and retries will only be enabled for idempotent operations.
Project documentation is powered by Sphinx + Sphinx Autobuild.
To build the docs locally and view them in a browser:
make sphinx-autobuild