Skip to content

silky/FakeScienceBot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a template for creating your own twitter bot using python and heroku. The only programming necessary is to update the function get_message() in app.py to create your bot's tweets.

Confused? Try reading this. Or contact me @jehosafet.

Requirements

  • python
    • Install Twython (pip install Twython): for generating/posting tweets in python app
  • heroku

Instructions

  1. Fork and pull this repo.

  2. In your local repo, create a new heroku app.

    • heroku create --stack cedar
    • heroku apps:rename YOUR_APP_NAME
    • Your heroku app will now keep the python script app.py running as often as possible.
  3. Create a new twitter account.

  4. From your main twitter account create a new twitter app.

    • Under Settings / Application Type:
      • Enable "Read and Write"
      • Check "Allow this application to be used to Sign in with Twitter"
    • Under Details:
      • Click "Create My Access Token"
    • Connect this app to your bot's twitter acount (help here)
      • $ gem install twurl
      • $ twurl authorize --consumer-key "REPLACE_THIS" --consumer-secret "REPLACE_THIS"
  5. Create environment variables.

    • In your local repo, create a file called .env that contains your twitter app keys, one per line:
      • TWITTER_CONSUMER_KEY=replace_this
      • TWITTER_CONSUMER_SECRET=replace_this
      • TWITTER_OAUTH_TOKEN=replace_this
      • TWITTER_OAUTH_TOKEN_SECRET=replace_this
    • For heroku, use heroku-config to copy contents of .env to your heroku app.
      • Install heroku-config: heroku plugins:install git://github.com/ddollar/heroku-config.git.
      • Now run heroku config:push.
        • NOTE: To update heroku environment variables later, run heroku config:push --overwrite
        • Alternatively, add heroku environment variables manually using heroku config:set YOUR_ENV_VAR=replace_this

Okay, now here's the fun part:

  1. Update the function get_message() in app.py to create your bot's tweets.

  2. Test your bot locally.

    • Running foreman start should generate your tweets once every minute, or at whatever rate you set in app.py.
  3. Commit and push local changes to heroku and github.

    • git push heroku master pushes all commits to heroku and starts up your app.
    • Your bot should now tweet as long as your heroku app is running (via the worker dyno).

About

tweeting titles of nonsense science articles

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%