Skip to main content

A Python wrapper for the Hypixel Skyblock Bazaar API

Project description

bazaar.py

A Python Wrapper for the Hypixel Skyblock Bazaar

Version License

Installation

pip install bazaarpy

Usage

This code will import the library, setup the Bazaar class and refresh the data from the API.

from bazaarpy import bazaar as bz
baz = bz.Bazaar()
baz.updateValues() 

When querying an item, you must use its Product ID or similar name, as defined in items.json

Available Functions:

  • updateValues() Fetches new data from the Hypixel API. Do not spam this function or Hypixel may blacklist your IP address.
  • buyOrders(item) Gets the current Buy Orders for an item
  • sellOrders(item) Gets the current Sell Orders for an item
  • price(item) Gets the Buy and Sell price for an item
  • volume(item) Gets the Buy and Sell volume for an item
  • orderCount(item) Gets the number of Buy and Sell orders currently open for an item

Examples

Fetch the Buy Price of a red gift and print it to the screen.

from bazaarpy import bazaar as bz
baz = bz.Bazaar()
baz.updateValues()    
buyPrice = baz.price("red gift")['buyPrice']   
print(str(buyPrice))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

bazaarpy-0.1.4-py3-none-any.whl (25.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page