Python Twitter - 获取推文URL

时间:2011-04-15 14:54:00

标签: python django python-twitter

我正在使用python-twitter模块来获取我最近的Twitter状态更新:

for i in range(0, limit):
        tweet = twitter.Api().GetUserTimeline(TWITTER_USERNAME)[i]
        tweet.date = datetime.strptime( tweet.created_at, "%a %b %d %H:%M:%S +0000 %Y" )
        tweets.append(tweet)

它工作正常,但是tweet.text属性不会将URL包装在标签中,因此它们是可点击的。我查看了python-twitter文档,但它没有给出任何关于获取URL作为可点击URL的状态的具体建议。

我确信库中有一个功能可以做到这一点,有人知道怎么做?

1 个答案:

答案 0 :(得分:1)

您可能需要解析文本以自行查找和标记网址。这是一个问题:

What's the cleanest way to extract URLs from a string using Python?