Twitter bot: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "=steps= * create a twitter app using your twitter account https://apps.twitter.com/ and get your ** consumer_key ** consumer_secret ** access_token ** access_token_secret")
 
No edit summary
Line 1: Line 1:
==twitter bots==
* Twitter Bot Encyclopedia http://p-dpa.net/work/twitter-bot-encyclopedia/ [https://ia800509.us.archive.org/4/items/twitter_bot_encyclopedia_with_cover/twitter_bot_encyclopedia_with_cover.pdf PDF]
** Art Assignment bot (p.21) '''What is the tweet structure?'''
* ProustTweet https://twitter.com/ProustTweet
==wikipedia bots==
=steps=
=steps=
* create a twitter app using your twitter account https://apps.twitter.com/ and get your
== Create twitter app ==
** consumer_key
Create a twitter app using your twitter account https://apps.twitter.com/ and get your
** consumer_secret
* consumer_key
** access_token
* consumer_secret
** access_token_secret
* access_token
* access_token_secret
 
== python ==
install [http://www.tweepy.org/ tweepy] Python library
sudo pip install tweepy
 
if you dont have pip (python package manager) install it:
* (debian/ubuntu) <pre>sudo aptitude install python-pip</pre>
* (mac) <pre>brew install python</pre>
 
 
 
==Twitter and Python tutorials==
http://naelshiab.com/twitter-meets-python/

Revision as of 17:27, 17 November 2016

twitter bots

wikipedia bots

steps

Create twitter app

Create a twitter app using your twitter account https://apps.twitter.com/ and get your

  • consumer_key
  • consumer_secret
  • access_token
  • access_token_secret

python

install tweepy Python library

sudo pip install tweepy

if you dont have pip (python package manager) install it:

  • (debian/ubuntu)
    sudo aptitude install python-pip
  • (mac)
    brew install python


Twitter and Python tutorials

http://naelshiab.com/twitter-meets-python/