Skip to content

MatthewWolff/IsItFiller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Is It Filler?

There's a lot of filler in Naruto. Like. A lot.

Have you ever asked yourself, "How many episodes of this will I need to skip to get back to the canon stuff?"

Wonder no more.

Just tweet at this bot with an episode number to see if it's filler or not!
 
Also, feel free to snag the TwitterBot class I wrote—it's pretty simple and I've used the same template for other bots that have very simple response patterns (check out @theDNABot!).

Requirements

  • Python 3
  • Tweepy module
  • Twitter API credentials

Twitter API credentials

In order to make a bot, you must have your own credentials from Twitter's developer site and place them in a file called api_key.py as a dictionary object called key. Additionally, you'll need the tweepy module. See below for that.

# API_KEY.py
key = {
    "consumer_key": "Nequeporroquisquamestquidolorem",
    "consumer_secret": "abcdefghijklmnopqrstuvwxyz",
    "access_token": "ipsumquiadolorsitamet",
    "access_token_secret": "1234567890"
}

Installing tweepy

$ pip install tweepy

To run, clone the repo and execute the following:

$ python run_bot.py

Releases

No releases published

Packages

No packages published