https://github.com/daniel0130/rune-airdrop
https://github.com/daniel0130/rune-airdrop
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/daniel0130/rune-airdrop
- Owner: daniel0130
- License: mit
- Created: 2024-10-22T09:29:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-22T09:30:38.000Z (over 1 year ago)
- Last Synced: 2024-10-28T18:38:01.332Z (over 1 year ago)
- Language: Python
- Size: 284 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# runeq-airdrop



[](https://runeq.readthedocs.io/en/latest/?badge=latest)
[](https://app.circleci.com/pipelines/gh/rune-labs/runeq-python)
Python 3 Standard Development Kit (SDK) for Rune Lab's Query API: `runeq`
## References
* Library documentation: [https://runeq.readthedocs.io/en/latest](https://runeq.readthedocs.io/en/latest)
* API documentation: [https://docs.runelabs.io](https://docs.runelabs.io)
* Rune Labs home page: [https://runelabs.io](https://runelabs.io)
## Installation
Python 3.8+ is required.
To install the library using pip:
pip3 install runeq
To install from source:
python3 setup.py install
## Development
Initialize a virtual environment, with dev requirements installed:
make init
### Run tests
make test
# With coverage
make test-coverage
# For a single test
make test-single
### Lint
make lint
### Preview documentation
make build-docs
- This will build the documents in the `docs` directory. Open the `index.html` file in your browser to preview the documentation.
### Build PyPI artifact:
make build-dist
### Clean up ignored files/artifacts
make clean