Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @app.route('/bprices')
- def bPrices():
- f = requests.get(
- 'https://api.hypixel.net/skyblock/bazaar?key=[cant show key]').json()
- products = [
- {
- "id": product["product_id"],
- "sell_price": product["sell_summary"][:1],
- "buy_price": product["buy_summary"][:1],
- "sell_volume": product["quick_status"]["sellVolume"],
- "buy_volume": product["quick_status"]["buyVolume"],
- }
- for product in f["products"].values()
- ]
- return render_template("index.html", products=products)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement