An all-in-one OSRS Library with Hiscores and Grand Exchange Market Information
Project description
OSRSBytes
Updates [20200925]
Currently implemented in v1.2.0:
- Hiscores Shelve-caching (reduces the number of calls to the api).
Fixes currently implemented in v1.2.0:
- Previously, ItemID and ItemName each had their own dictionary to allow users to search by either ItemID or ItemName. This was dumb of me, so I instead implemented one dictionary that was keyed by ItemName. You can still search by ItemID thanks to the
self.__normalize_input()
method which will ensure that anything you input is converted to item name. If you put inint(1213)
orstr(1213)
the method will, ultimately, return"rune dagger"
Introduction
OSRSBytes is an all-in-one Python library for Old School Runescape (OSRS) that features Item Information Lookup, Hiscores, and Market information from RSBuddy.
Installation:
pip install OSRSBytes
Upgrade
pip install OSRSBytes --upgrade
Example Invocation (Hiscores)
from OSRSBytes import Hiscores
user = Hiscores('Zezima', 'N')
# 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'))
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'))
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
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
OSRSBytes-1.2.0.tar.gz
(2.3 kB
view details)
File details
Details for the file OSRSBytes-1.2.0.tar.gz
.
File metadata
- Download URL: OSRSBytes-1.2.0.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e12450619d7a3e15e904f4be707b42d49c918a33d52490bd60097c2c03087ca6 |
|
MD5 | 9d37f9fb514df45aaa5cd0130cdbf112 |
|
BLAKE2b-256 | c7290bc22b9cdfdaf4e57e44ca4e07cfb1699699f875263b471568a8f61af8b6 |