Skip to content

chrislkeller/nicar-tweets

Repository files navigation

nicar-tweets

What: A quick script using the Twitter python library and the Twitter search API to pull and store in csv the annual #NICAR tweets.

From Twitter's search API documentation:

Before getting involved, it’s important to know that the Search API is focused on relevance and not completeness. This means that some Tweets and users may be missing from search results. If you want to match for completeness you should consider using a Streaming API instead.

The search API is also rate-limited. More information on that here.

What is here?:

For any given year, I have no idea if these are all of them, but there are a lot. Let me know if you do anything fun with them.

Getting Started:

  • Assuming you have pipenv installed, create an enviroment to run the script

    pipenv install

  • Configure init_search.py

    • There are a handful of variables to change.

      • TWITTER_CONSUMER_KEY: You wil need to register an application to acquire the proper authentication keys & tokens.
      • TWITTER_CONSUMER_SECRET: You wil need to register an application to acquire the proper authentication keys & tokens.
      • TWITTER_ACCESS_TOKEN: You wil need to register an application to acquire the proper authentication keys & tokens.
      • TWITTER_ACCESS_TOKEN_SECRET: You wil need to register an application to acquire the proper authentication keys & tokens.
      • LOCAL_TIMEZONE:
      • start_date_for_search: The date and time you want to begin your search - localized for the LOCAL_TIMEZONE in a Python datetime format - (year, month, day, hour, minutes). You can really only search back 6 or 7 days.
      • hashtag: the hashtag to search
    • The script will write the following to a csv named after your chosen hashtag:

      • hashtag:
      • tweet_utc_date:
      • user_name:
      • user_screen_name:
      • bot_or_not:
      • tweet_text:
      • tweet_url:
      • tweet_id:
      • user_profile_image_url:
      • user_location:
      • source:
      • in_reply_to_screen_name:
      • in_reply_to_status_id:
      • image_link:
      • retweet_count:
      • favorite_count:
      • time_zone:
      • geo_enabled:
      • geography:
      • coordinates:
      • lang:
  • Run init_search.py

    pipenv run python init_search.py

About

Using the twitter python library to pull and store in csv the annual #NICAR tweets.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages