We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not a bug, just an error I can't find a fix for
import pytumblr import os
client = pytumblr.TumblrRestClient( "client key", 'client secret', '0auth key', '0auth secret', )
photo_directory = 'folder/to/photos'
for filename in os.listdir(photo_directory): if filename.endswith('.JPG'): # Upload the photo to Tumblr photo = open(photo_directory +"/"+ filename, 'rb') response = client.create_photo('blog url', data=photo, tags=['photo dump']) photo.close() print("Did it.")
The text was updated successfully, but these errors were encountered:
pytumblr can open file for you as in ReadMe
Just pass the filename instead of opening like client.create_photo('blog url', data=filename, tags=['photo', 'dump'])
client.create_photo('blog url', data=filename, tags=['photo', 'dump'])
Also, please use MarkDown properly next time: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks
Don't forget to read the docs.
Sorry, something went wrong.
No branches or pull requests
Not a bug, just an error I can't find a fix for
import pytumblr
import os
Authenticate via Tumblr API
client = pytumblr.TumblrRestClient(
"client key",
'client secret',
'0auth key',
'0auth secret',
)
Set the directory containing the photos to upload
photo_directory = 'folder/to/photos'
Iterate through the files in the directory
for filename in os.listdir(photo_directory):
if filename.endswith('.JPG'):
# Upload the photo to Tumblr
photo = open(photo_directory +"/"+ filename, 'rb')
response = client.create_photo('blog url', data=photo, tags=['photo dump'])
photo.close()
print("Did it.")
The text was updated successfully, but these errors were encountered: