A python wrapper for the QuantAQ RESTful API
Install directly from PyPI:
$ pip install -U py-quantaq
Or, install the library directly from GitHub:
$ pip install git+https://github.com/quant-aq/py-quantaq.git
Documentation is in progress, but can be found here.
To use the API, you must first have an API key. You can obtain an API key from the user dashboard. Once you create a new API key, make sure to keep it secret! The easiest way to do this is to save your key as an environment variable. This process is unique to each OS, but many tutorials exist online. For Mac, do the following:
Using your editor of choice, open up your .bash_profile
:
# open up your bash profile
$ nano ~/.bash_profile
Next, save the API key as an environment variable:
# add a line with your API Key
export QUANTAQ_APIKEY=<your-api-key-goes-here>
Finally, source your .bash_profile
:
$ source ~/.bash_profile
Now, you shouldn't ever have to touch this again or remember the key!
To run the unittests:
$ poetry run pytest tests
or, with coverage
$ poetry run pytest tests --cov=quantaq --cov-report term-missing -s
Tests are automagically run via github actions on each build. Results and coverage are tracked via Code Coverage which can be viewed by clicking on the badge above.