We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab486a commit 0e27b70Copy full SHA for 0e27b70
api.py
@@ -100,3 +100,11 @@ def get_current_election(self) -> dict:
100
election_info = json.loads(api_request)
101
del election_info["mayor"]
102
return election_info
103
+
104
+ def get_bingo_event(self) -> dict:
105
+ """
106
+ Returns a `dict` of information regarding the current bingo event and goals in Skyblock.
107
108
+ api_request = requests.get("https://api.hypixel.net/resources/skyblock/bingo").content
109
+ bingo_data = json.loads(api_request)
110
+ return bingo_data
0 commit comments