Last active
April 19, 2022 00:36
Revisions
-
ChanceToZoinks revised this gist
Apr 19, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def _try_get_builds(): def get_n_characters(n): """ Get the first n characters in the list storing their name, level, life, es, and worn unique items """ builds = _try_get_builds() -
ChanceToZoinks created this gist
Apr 19, 2022 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,45 @@ #!/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"} def _try_get_builds(): r = requests.get(url=ENDPOINT, params=PARAMS) try: return r.json() except: return {} def get_n_characters(n): """ Get the first 5 characters in the list storing their name, level, life, es, and worn unique items """ builds = _try_get_builds() if builds: characters = [] for i in range(n): c = {} c["name"] = builds["names"][i] c["level"] = builds["levels"][i] c["life"] = builds["life"][i] c["es"] = builds["energyShield"][i] c["uniques"] = [] for idx, unique in enumerate(builds["uniqueItems"]): if i in builds["uniqueItemUse"][str(idx)]: c["uniques"].append(unique["name"]) characters.append(c) return characters else: return "No builds found." if __name__ == "__main__": print(get_n_characters(1))