An all-in-one OSRS Library with Hiscores and Grand Exchange Market Information
Project description
OSRSBytes (v1.3.2)
Introduction
OSRSBytes is an all-in-one Python library for Old School Runescape (OSRS) that features Item Information Lookup, Hiscores, and Market information from RuneLite/Wiki.
Installation:
pip install OSRSBytes
Upgrade
pip install OSRSBytes --upgrade
Example Invocation (Hiscores)
The OSRSBytes library contains caching on Hiscores to improve performance. Caching is disabled by default and must be enabled when initializing the hiscores object. Note that default TTL of cache is
3600
seconds or1
hour. Example without Cachingfrom OSRSBytes import Hiscores user = Hiscores('Zezima') # Lets display some information print("Current level:", user.skill('attack', 'level')) print("Current rank:", user.skill('attack', 'rank')) print("Current exp:", user.skill('attack', 'experience')) print("Exp remaining:", user.skill('attack','exp_to_next_level')) # Lets display some Boss information print("Wintertodt Kills:", user.boss("wintertodt", "score")) # Lets display some Clue Hiscores print("Medium clues done:", user.clue("medium", "score"))
Example Invocation (Items)
from OSRSBytes import Items items = Items() # Lets get information on this item print('Is Members:', items.isMembers('rune dagger')) print("Item ID:", items.getItemID('rune dagger')) print('Sell Average:', items.getSellAverage('rune dagger')) print('Sell Quantity:', items.getSellQuantity('rune dagger')) print('Buy Average:', items.getBuyAverage('rune dagger')) print('Buy Quantity:', items.getBuyQuantity('rune dagger')) print('Buy Limit:', items.getBuyLimit('fire rune')) print('Shop Price:', items.getShopPrice('rune dagger')) print('High Alch Value:', items.getHighAlchValue('rune dagger')) print('Low Alch Value:', items.getLowAlchValue('rune dagger')) # In addition, all items can be called by Item ID as well print('Item Name:', items.getName('1213')) print('Sell Average:', items.getSellAverage('1213')) # Lets update all of the item information after some time has passed items.update() # Lets get some new, up-to-date information print('Sell Average:', items.getSellAverage('rune dagger')
Contributing
Prior to contributing, please consider the following before committing code:
- Do not leave commented lines in code (i.e.
#print('test')
- Try to write your code as cleanly and readable as possible
- Whenever possible, do not use third party packages, try your hardest to utilize built-in python packages
- No commits should break previous code functionality. This means that method names should remain the same and return the same, expected values in the same format.
- NEW: All code should be indented with spaces rather than tabs.
- NEW: All code should be pushed to dev branch instead of master branch. All pull requests sent to master will be rejected.
Thank you for your considerations
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file OSRSBytes-1.3.21.tar.gz
.
File metadata
- Download URL: OSRSBytes-1.3.21.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.9 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 227a90470d839cf0a0bf5ced2266072dc4b0e7456c20ebd99a65bd5580c4bfa3 |
|
MD5 | d9df4a0bc5fe0b731289c8b751fe62e6 |
|
BLAKE2b-256 | 00f87777b44a17d12e55525d563e5aa8b3adb05de4e2324f8575bc901f42789e |
File details
Details for the file OSRSBytes-1.3.21-py3-none-any.whl
.
File metadata
- Download URL: OSRSBytes-1.3.21-py3-none-any.whl
- Upload date:
- Size: 20.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.9 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32992eb699213f69ad5fc18c78f82431f3e031553c2fa14d9b0998b3f98afbb8 |
|
MD5 | 7bc741adb197bd85f24acc87ee82bd1e |
|
BLAKE2b-256 | 2418b202b0c45cd7e0a3d532b7e79d6b60630b7d2505504225537c5f9d0350c6 |