sql >> Databáze >  >> NoSQL >> MongoDB

Jak mohu konzumovat tweety z rozhraní API pro streamování Twitteru a ukládat je do mongodb

Zde je příklad:

import json
import pymongo
import tweepy

consumer_key = ""
consumer_secret = ""
access_key = ""
access_secret = ""

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_key, access_secret)
api = tweepy.API(auth)


class CustomStreamListener(tweepy.StreamListener):
    def __init__(self, api):
        self.api = api
        super(tweepy.StreamListener, self).__init__()

        self.db = pymongo.MongoClient().test

    def on_data(self, tweet):
        self.db.tweets.insert(json.loads(tweet))

    def on_error(self, status_code):
        return True # Don't kill the stream

    def on_timeout(self):
        return True # Don't kill the stream


sapi = tweepy.streaming.Stream(auth, CustomStreamListener(api))
sapi.filter(track=['Gandolfini'])

To zapíše tweety do mongodb test databáze, tweets kolekce.

Doufám, že to pomůže.



  1. Najít klíč podle hodnoty

  2. Vypočítejte medián v agregačním rámci MongoDB

  3. Použití StackExchange.Redis v ASP.NET Core Controller

  4. MongoDB 3 Java zkontroluje, zda existuje kolekce