Open snowyaya opened 2 years ago
main() is not included in the file. Should be:
main()
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.
main
Care to make a PR?
@PatrickAlphaC Sure! I will make one!
Pr was created.
main()
is not included in the file. Should be: