Skip to content

Instantly share code, notes, and snippets.

View ChanceToZoinks's full-sized avatar

ChanceToZoinks ChanceToZoinks

View GitHub Profile
@ChanceToZoinks
ChanceToZoinks / ninjagetter25.py
Created May 27, 2022 21:07
updated ninjagetter2.py
#!/usr/bin/env python3
import requests
ENDPOINT = f"https://poe.ninja/api/data/0/getbuildoverview"
PARAMS = {"overview": "archnemesis", "type": "exp", "language": "en"}
def _try_get_builds():
r = requests.get(url=ENDPOINT, params=PARAMS)
#!/usr/bin/env python3
import json
import requests
URL = "https://www.poewiki.net/w/index.php"
PARAMS = {
"title": "Special:CargoExport",
"tables": "items",
"fields": "items.name, items.stat_text",
#!/usr/bin/env python3
import requests
ENDPOINT = f"https://poe.ninja/api/data/0/getbuildoverview"
PARAMS = {"overview": "archnemesis", "type": "exp", "language": "en"}
def _try_get_builds():
r = requests.get(url=ENDPOINT, params=PARAMS)
@ChanceToZoinks
ChanceToZoinks / notebook.ipynb
Last active April 23, 2022 17:37
poeninja exploration notebook
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/usr/bin/env python3
import requests
BUILD_SNAPSHOT = 0
ENDPOINT = f"https://poe.ninja/api/data/{BUILD_SNAPSHOT}/getbuildoverview"
PARAMS = {"overview": "archnemesis", "type": "exp", "language": "en"}