Skip to content

identify who's hogging too much space in your twitter feed

Notifications You must be signed in to change notification settings

buzzfeed-openlab/twitter-pruner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

twitter-pruner

Identify who's hogging too much space in your Twitter feed! All you need is Python & a Twitter account.

What is this?

If you don't know what GitHub is - hi! & welcome! This is a place where people put their code & collaborate on projects, among other things. Here, you can view a project's history & discussions.

This repo contains lightweight code that ingests your Twitter feed & generates output like this: screen shot 2017-01-27 at 12 02 58 pm

How to use this

This project is newbie-friendly! If something is confusing, definitely let me know.

1. Download this code

If you have git:

git clone https://github.com/buzzfeed-openlab/twitter-pruner.git
cd twitter-pruner

If you don't know what git is...don't worry - click the green "Clone or download" button. Then, open up the command line (if you're on a Mac, it's the Terminal app) and navigate inside this project directory (the rest of the commands in these instructions will only work if you are in the right directory).

2. Install required python libraries

Make sure you have Python installed (if you're on a Mac, you already have Python).

Make sure you have pip, too. (Context: open-source code usually makes it easier to do something that'd be tedious to do from scratch. pip is for easily installing Python code that other people have written - in this case, tweepy, a python library that makes it easier to work with the Twitter api)

Optional but recommended: make a virtual environment using virtualenv and virtualenvwrapper. This is a good practice b/c it helps you manage your environments when you work on many projects with varying dependencies. If that last sentence sounds like gibberish...don't worry about it for now.

To install required python libraries:

pip install -r requirements.txt

2. Copy the example script

cp run.py.example run.py

You now have your own script, run.py (this is gitignored to keep twitter credentials from accidentally getting into version control)

2. Add Twitter API credentials

Edit run.py with your twitter credentials.

To get twitter api credentials, go to https://apps.twitter.com/ & create a new app. Then, in the 'Keys & Access Tokens' tab, click the 'Create my access token' button. You'll need the Consumer Key, Consumer Secret, Access Token, & Access Token Secret. These credentials allow you to programmatically read & write tweets! (This means you should keep them secret)

3. Run the script!

python run.py

Feel free to play around with the arguments passed into the show_worst_offenders() method.

Now, you've got some objective data to work with. Mute/unfollow people with these insights! Rinse & repeat.

About

identify who's hogging too much space in your twitter feed

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages