informacion json twitter
Publicado por david (6 intervenciones) el 09/02/2017 20:50:39
Hola, estoy queriendo organizar y seleccionar diferentes campos de la funcion retweets de tweepy, pero me sale el error TypeError: <resultado de funcion retweets> is not JSON serializable
el codigo es el siguiente, de antemano agradezco su apoyo
el codigo es el siguiente, de antemano agradezco su apoyo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
import tweepy
import json
#Define claves de app...
CONSUMER_KEY = 'xxx'
CONSUMER_SECRET = 'xxx'
ACCESS_KEY = 'xxx'
ACCESS_SECRET = 'xxx'
rts = {}
#En esta parte nos identifica para poder realizar operaciones
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
x = tweepy.API(auth)
for tweets in x.search(q='palabra',count=10, result_type='recent'):
print(tweets.created_at)
print(tweets.user.screen_name)
print(tweets.text)
print(tweets.retweet_count)
rts['prueba'] = (tweets.retweets)
s = json.dumps(rts)
print(s)
print(' *'*40)
Valora esta pregunta
0