Tweety Documentation

from tweety import TwitterAsync

async def main():
    app = TwitterAsync("session")
    await app.sign_in(username, password)

    all_tweets = await app.get_tweets("elonmusk")
    for tweet in all_tweets:
        print(tweet)

What is this?

Twitter is a popular social media platform used by millions of people even the Governments too. This library is meant to scrape the Tweets, Users , Trends and Search Results from Twitter.

How should I use the documentation?

If you are getting started with the library, you should follow the documentation in order by pressing the “Next” button at the bottom-right of every page.

You can also use the menu on the left to quickly skip over sections.