Skip to content

Instantly share code, notes, and snippets.

@ChanceToZoinks
Last active April 19, 2022 00:36

Revisions

  1. ChanceToZoinks revised this gist Apr 19, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion poeninjagetter.py
    Original 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 5 characters in the list storing their name, level, life, es, and worn unique items
    Get the first n characters in the list storing their name, level, life, es, and worn unique items
    """
    builds = _try_get_builds()

  2. ChanceToZoinks created this gist Apr 19, 2022.
    45 changes: 45 additions & 0 deletions poeninjagetter.py
    Original 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))