Brian Carpio
Brian Carpio

Reputation: 491

Python / Pymongo variable for collection name in db insert command

I have this small piece of code that basically takes a list and runs a loop, running search queries against twitter, for each item in the list. I want each item in the list to be a collection name but for some reason I can't figure out how to make db<collection_name_variable>.insert(post)> to actually work:

I get an error:

TypeError: unsupported operand type(s) for +: 'Database' and 'str'

I know this is probably very basic but I am just learning.

from twython import Twython
from pymongo import *

conn = Connection('localhost')
db = conn.nosqltweets
twitter = Twython()

types = ['mongodb', 'cassandra', 'couchdb']

for nosql in types:
    search_results = twitter.searchTwitter(q=nosql, rpp="100")
    for tweet in search_results["results"]:
        from_user = tweet['from_user'].encode('utf-8')
        text = tweet['text']
        created_at = tweet['created_at']
        id_str = tweet['id_str']
        post = { 'id_str': id_str, 'from_user': from_user, 'created_at': created_at }
        insert = db + nosql + ".insert(post)"
        insert

Upvotes: 5

Views: 5009

Answers (1)

diliop
diliop

Reputation: 9451

Replace:

insert = db + nosql + ".insert(post)"
insert

with:

db[nosql].insert(post)

Upvotes: 11

Related Questions