Relative Content

Tag Archive for pythontwitter

how to get the preview image url fro twitter?

def get_tweet_data(tweet_id):
status_data = client.get_tweet(
tweet_id,
tweet_fields=[‘created_at’, ‘entities’, ‘attachments’],
expansions=[‘author_id’, ‘attachments.media_keys’],
user_fields=[‘profile_image_url’],
media_fields=[‘url’, ‘preview_image_url’, ‘type’]
)
return status_data

Login to twitter and follow different account using python

as in title, I’m trying to create a “bot” that will login to twitter and follow accounts that i specify. The thing is i can’t really find any good library for such use, most of them are outdated or i’m bad at looking. Where do i even start? Could you provide me any example?