gpt4 book ai didi

python - 如何使用 Python/flask 将 Twitter 元数据从服务器流式传输到客户端浏览器

转载 作者:太空宇宙 更新时间:2023-11-03 19:11:09 24 4
gpt4 key购买 nike

我正在尝试向客户端返回 Twitter 元数据流,客户端以通过 tweepy 的“track”过滤的形式输入该元数据流。

我遇到的问题是,即使服务器接收并处理请求,也没有任何内容返回到浏览器。这是我到目前为止的代码:

main.py:

import flask
from flask.views import MethodView
from tweetStreamsRT import StreamerRt


app = flask.Flask(__name__)
app.secret_key = "asecret"

class View(MethodView):

def get(self):
return flask.render_template('index.html')

def post(self):
results = StreamerRt().filter(track = (flask.request.form['event']))
flask.flash(results)
return self.get()

app.add_url_rule('/', view_func = View.as_view('index'), methods=['GET', 'POST'])
app.debug = True
app.run()

连接到 Twitter Streaming API 的类:

import sys
import tweepy
import json
import time
#from textwrap import TextWrapper
import pymongo

CONSUMER_KEY = ''
CONSUMER_SECRET = ''

ACCESS_TOKEN = ''
ACCESS_TOKEN_SECRET = ''

auth = tweepy.OAuthHandler(CONSUMER_KEY,CONSUMER_SECRET)
auth.set_access_token(ACCESS_TOKEN,ACCESS_TOKEN_SECRET)


connection = pymongo.Connection()
db = connection.twitterStream

class Listener(tweepy.StreamListener):


def on_status(self, status):
message = {}

if status.author.lang == 'en':
try:
message = {
'Author': status.author.screen_name,
'Author_id': status.id,
'Time_normal': str(status.created_at),
'geo_enabled': status.author.geo_enabled,
'Geo': status.geo,
'Place' : status.place,
'Coordinates': status.coordinates}

db.tweetStream.insert(message)


except Exception, e:
print >> sys.stderr, 'Encountered Exception:', e
pass

def on_error(self, status_code):

waitPeriod = 60
if status_code == 420:
print >> sys.stderr, 'Encountered a %i Error, will retry in %i minutes' % \
(status_code, waitPeriod/60)
time.sleep(waitPeriod)
waitPeriod *= 2
return waitPeriod
else:
print >> sys.stderr, 'Encountered error with status code:', status_code
return True

def on_timeout(self):
print >> sys.stderr, 'Timeout...'
return True

def StreamerRt():
return tweepy.streaming.Stream(auth, Listener(), timeout=60)

我的 html 文件继承自基本文件并形成 html 文件:

{% extends "base.html" %}
{% import "forms.html" as forms %}


{% block page_header %}
<div class="page-header">
<h1>Welcome</h1>
</div>
{% endblock %}
{% block content %}
<h2>Enter the Event you would like to follow</h2>
<form action="/" method="post">
<input type="text" name="event" />
<input type="submit" value="Submit Query" />
</form>
{% with messages = get_flashed_messages() %}
{% if messages %}
Results:
<pre>
{% for message in messages %}
{{ message }}
{% endfor %}
</pre>
{% endif %}
{% endwith %}
{% endblock %}

似乎无法向客户端返回任何流数据。

如何将某些元数据从 Twitter Streaming API 返回到浏览器,同时将其写入数据库。

谢谢

此外,StreamerRt 函数不会按来自客户端的输入按轨道进行过滤,但似乎会返回整个公共(public)时间线。

最佳答案

我认为Flask-Sijax就是您正在寻找的。 Hookbox是另一种选择,here是关于如何将 hookbox 与 Flask 集成的教程。另一种选择是 gevent here是一篇关于在 Flask 中使用 gevent 的 SO 帖子。我能想到的最后一个是tornado .

关于python - 如何使用 Python/flask 将 Twitter 元数据从服务器流式传输到客户端浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12965401/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com