如何使用 nltk - 正则表达式从 Twitter 获取流数据

发布于 2024-11-26 11:40:22 字数 186 浏览 1 评论 0原文

我是 Python 新手,老板给了我一个任务来执行此操作:

  1. 使用 NLTK 和正则表达式在 JSON
  2. 解析
  3. 中从 twitter 获取流数据将其保存到文件库或数据库文件,好的

有没有人知道如何从中获取流数据使用上述步骤推特?

您的帮助将非常感激:)

I am newbie in Python and given a task from my boss to do this :

  1. Grab streaming data from twitter in JSON
  2. Parsing using NLTK and Regular Expression
  3. Save it to file base or database file, ok

Is there anyone know how to grab a streaming data from twitter using the step above ?

Your help would be very grateful :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

兰花执着 2024-12-03 11:40:22

快速 Google 搜索即可找到 Tweepy,这是一个用于访问 Twitter API 的 Python 库。这应该可以帮助您开始。在解析数据方面,您需要更具体地说明要解析的内容。

A quick Google search yields Tweepy, which is a python library for accessing the Twitter API. This should get you started. In terms of parsing the data, you'll need to be a little more specific as to what you want to parse.

满身野味 2024-12-03 11:40:22

这应该为您指明正确的方向,

import urllib2, simplejson

json = urllib2.urlopen('http://search.twitter.com/search.json?q=from%3Aalexiskold').read()
tweets = simplejson.loads(json)["results"]
for tweet in tweets: print tweet["text"]

它不会 eval 所以我使用 simplejson http://simplejson.github.com/simplejson/

This should point you in the right direction

import urllib2, simplejson

json = urllib2.urlopen('http://search.twitter.com/search.json?q=from%3Aalexiskold').read()
tweets = simplejson.loads(json)["results"]
for tweet in tweets: print tweet["text"]

it wouldn't eval so i used simplejson http://simplejson.github.com/simplejson/

君勿笑 2024-12-03 11:40:22

您将同一问题发布了两次,显然:我在另一篇文章中回答了。
如何从twitter 使用 nltk - 正则表达式与 pycurl 连接

You posted the same question twice, appearently: I answered in the other post.
How to grab streaming data from twitter connect with pycurl using nltk - regular expression

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文