Python 3 Standard Development Kit (SDK) for Rune Lab's Query API: runeq
- Library documentation: https://runeq.readthedocs.io/en/latest
- API documentation: https://docs.runelabs.io
- Rune Labs home page: https://runelabs.io
Python 3.8+ is required.
To install the library using pip:
pip3 install runeq
To install from source:
python3 setup.py install
Initialize a virtual environment, with dev requirements installed:
make init
make test
# With coverage
make test-coverage
# For a single test
make test-single
make lint
make build-docs
- This will build the documents in the
docs
directory. Open theindex.html
file in your browser to preview the documentation.
make build-dist
make clean