扭曲的服务器,从Twitter流api消费并同时提供静态内容

时间:2014-04-07 10:14:19

标签: python api asynchronous twitter twisted

我对扭曲的服务器和服务器有点新意。我需要在我的本地检索来自twitter推文的数据上运行异步服务器(在本地文件中写入数据),同时,我想要服务一些简单的内容,例如" Hello world" at" local_ip:8880" 问题是流api创建了一个http连接,我不知道如何同时执行这两个任务。我的代码看起来像这样:

"imports and connection to twitter api keys"
def pp(o):
   return json.dumps(o, indent=3)
class listener(StreamListener):

   def on_data(self,data):
      #Convert to JSON the input string
      data_json = json.loads(data)
      #print pp(data_json['user'])

      #We get the html from embedly
      tweet_id = data_json['id_str']
      tweet_user = data_json['user']['screen_name']
      tweet_url = "https://twitter.com/"+tweet_user+"/status/"+tweet_id
      html="<a class=\"embedly-card\" href=\""+tweet_url+"\">Prueba</a>\n"
      print "Datos recibidos en el listener."
      #Write the results in the file
      f = open('myfile.html','a')
      f.write(html) # python will convert \n to os.linesep
      f.close()
      return True

   def on_error(self,status):
      print status


class Root(resource.Resource,StreamListener):
   isLeaf = True
   def __init__(self):
      print "Server iniciado"
      auth = OAuthHandler(CONSUMER_KEY,CONSUMER_SECRET)
      auth.set_access_token(OAUTH_TOKEN,OAUTH_TOKEN_SECRET)
      twitterStream = Stream(auth, listener())

      twitterStream.filter(track=["query"])

   def render_GET(self, request):
         print "Recibida peticion"
         return '<html><body>Hello world<body></html>'

root = Root()
site = server.Site(root)
reactor.listenTCP(8880, site)
reactor.run()

当我运行它时,我卡在控制台中,它接收到流数据,但是当我访问我的&#34; local_ip:8880&#34;它无法加载&#34; Hello world&#34;。 有可能做到这一点吗?提前感谢您的关注,对不起我的英语。

1 个答案:

答案 0 :(得分:2)

如果您使用阻止API - 例如,使用阻塞套接字执行网络I / O的功能 - 那么您将阻止Twisted应用程序同时执行操作。一次只能进行一次阻止操作。

切换到非阻止Twitter API - 例如https://github.com/fiorix/twisted-twitter-stream