Skip to content

Instantly share code, notes, and snippets.

{
"bannerImageURL": null,
"bannerLink": null,
"latestVersion": "1.8.9",
"latestBeta": "1.9.0-beta.2",
"videoLink": "https://github.com/Fix3dll/SkyblockAddons/commits/main",
"directDownload": "https://modrinth.com/mod/skyblockaddons-unofficial/versions",
"updateInfo": {
@Fix3dll
Fix3dll / gemstonecosts.py
Last active April 24, 2024 12:44
Python script designed for keeps up to date NEU-REPO gemstonecosts.json
import urllib.request, json
items_api = "https://api.hypixel.net/v2/resources/skyblock/items"
with urllib.request.urlopen(items_api) as url:
data = json.load(url)
slot_unlock_cost = {}
for item in data["items"]: