PatrickAlphaC/nft-mix

There is no main() in upload_to_pinata.py

snowyaya opened this issue · 3 comments

main() is not included in the file. Should be:

def main():
    with Path(filepath).open("rb") as fp:
        image_binary = fp.read()
        response = requests.post(
            PINATA_BASE_URL + endpoint,
            files={"file": (filename, image_binary)},
            headers=headers,
        )
        print(response.json())

Doesn't necessarily need to be a main function.... but you're right it is much nicer.

Care to make a PR?

@PatrickAlphaC Sure! I will make one!

Pr was created.