vote up 5 vote down star
1

I registered the accounts http://twitter.com/stack_overflow and http://identi.ca/stackoverflow and wrote a script to post new questions to these accounts.

Is this service useful or useless?

import sys
import urllib
import time
from datetime import datetime
import feedparser
# http://www.feedparser.org/
import twitter
# http://code.google.com/p/python-twitter/
import identi
# http://commandline.org.uk/python/2008/jul/23/using-new-social-networking-service-identica-command-line/

#IDENTICA_USER = ""
#IDENTICA_PASS = ""

#TWITTERUSER = ""
#TWITTERPASS = ""

def shorten(url):
    u = urllib.urlopen("http://tinyurl.com/api-create.php?url="+url)
    return u.read()

def post(message, url):
    if len(message+" "+url) >=140:
        url = shorten(url)

    if len(message+" "+url) >=140:
        max = 139-len(url)
        message = message[:max]
    message = message +" "+url

    #post_identica(message)
    post_twitter(message)

def post_twitter(message):
    api = twitter.Api(username=TWITTERUSER, password=TWITTERPASS)
    api.PostUpdate(message)

def post_identica(message):
    myid = identi.IdentiCA(username=IDENTICA_USER, password=IDENTICA_PASS)
    myid.login()
    myid.put_message(message)


def get_feed():
    feedurl = "http://beta.stackoverflow.com/feeds"
    feed = feedparser.parse(feedurl)
    new_questions = []
    for entry in feed["entries"]:
        # feed has new and updated items, we are only interested in new questions
        if entry["published_parsed"] == entry["updated_parsed"]:
            tags = [t["term"] for t in entry.tags]
            tags = " ".join(["#"+x for x in tags])
            msg = "%s %s " %(entry.title, tags)
            new_questions.append((msg, entry.link))
    return new_questions

def main(argv=None):
    if argv is None:
        argv = sys.argv

    known_questions = {}

    #do a dry run to prevent questions to be posted twice
    for msg, link in get_feed():
        known_questions[link] = msg
        print "First Run, skip: "+link


    while True:
        time.sleep(300)

        print "%s download feed" %(datetime.now().isoformat())
        for msg, link in get_feed():
            if link in known_questions:
                continue

            known_questions[link] = msg
            print "post: "+link
            post(msg, link)

if __name__ == '__main__':
    main()

If someone "official" from stackoverflow wants to provide this service, I will give them over the account information.

I just talked to some guys from identi.ca on irc and they have ambivalent feelings about posting (flooding??) their service with links to a closed beta service. So I disabled identi.ca for the moment and just sent updates to twitter.


73% accept rate

migrated to meta.stackoverflow.com by Bill the Lizard Sep 4 at 20:52

Browse other questions tagged or ask your own question.