Skip to main content

Watch tweets on Twitter's user pages or search pages.

Project description

Twittcher (for twitter-watcher) is a Python module to make bots that will watch a Twitter user page or search page, and react to the tweets.

It’s simple, small (currently ~150 lines of code), and doesn’t require any registration on Twitter or dev.twitter.com, as it doesn’t depend on the Twitter API (instead it parses the HTML).

Twittcher is an open-source software originally written by Zulko, and released under the MIT licence. The project is hosted on Github, where you can report bugs, propose improvements, etc.

Install

If you have pip, install twittcher by typing in a terminal:

(sudo) pip install twittcher

Else, download the sources (on Github or PyPI), and in the same directory as the setup.py file, type this in a terminal:

(sudo) python setup.py install

Twittcher requires the Python package BeautifulSoup (a.k.a. bs4), which will be automatically installed when twittcher is installed.

Examples of use

There is currently no documentation for Twittcher, but the following examples should show you everything you need to get started.

2. Control a distant machine through Twitter !

Every 60 seconds, for any of my new tweets of the form cmd: my_command, run my_command in a terminal. Using simple tweets I can control any distant computer running this script.

import subprocess
from twittcher import UserWatcher

def my_action(tweet):
    """ Execute the tweet's command, if any. """
    if tweet.text.startswith("cmd: "):
        subprocess.Popen( tweet.text[5:], shell=True )

# Watch my account and react to my tweets
bot = UserWatcher("Zulko___", action=my_action)
bot.watch_every(60)

For instance, the tweet cmd: firefox will open Firefox on the computer, and the tweet cmd: echo "Hello" will have the computer print Hello in a terminal.

3. Watch search results and send alert mails

Every 20 seconds, send me all the new tweets in the Twitter search results for chocolate milk.

from twittcher import TweetSender, SearchWatcher
sender = TweetSender(smtp="smtp.gmail.com", port=587,
                     login="tintin.zulko@gmail.com",
                     password="fibo112358", # be nice, don't try.
                     to_addrs="tintin.zulko@gmail.com", # where to send
                     sender_id = "chocolate milk")
bot = SearchWatcher("chocolate milk", action=sender.send)
bot.watch_every(20)

4. Multibot watching

If you want to run several bots at once, make sure that you leave a few seconds between the requests of the different bots. Here is how you print the new tweets of John D. Cook, Mathbabe, and Eolas. Each of them is watched every minute, with 20 seconds between the requests of two bots:

import time
import itertools
from twittcher import UserWatcher

bots = [ UserWatcher(user) for user in
         ["JohnDCook", "mathbabedotorg",  "Maitre_Eolas"]]

for bot in itertools.cycle(bots):
    bot.watch()
    time.sleep(20)

5. Saving the tweets

A bot can save to a file the tweets that it has already seen, so that in future sessions it will remember not to process these tweets again, in case they still appear on the watched page.

from twittcher import SearchWatcher
bot = SearchWatcher("chocolate milk", database="choco.db")
bot.watch_every(20)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

twittcher-0.1.05.tar.gz (5.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page