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 6ab45cd commit bd4e874Copy full SHA for bd4e874
README.md
@@ -26,7 +26,7 @@ import skyblockpy
26
skyblock = skyblockpy.Skyblock("api_key") # Initialize the Skyblock class with a prospective Hypixel API key.
27
28
def latest_auctions_raw() -> dict: # Make a function for returning API output, and highlight return output type as dict.
29
- output = skyblock.get_auctions(page=3) # Gets the API response.
+ output = skyblock.get_auctions(page=3) # Gets the API response, and returns the third page of contents.
30
return output
31
32
latest_auctions_raw() # Run the actual function now.
0 commit comments