42 lines
794 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from pymongo import MongoClient
from bson import ObjectId, json_util
# 主环境 (生产环境为production开发环境为development)
ENV = 'development'
def col(arg):
"""
获取数据集
"""
# 链接数据库
conn = MongoClient('mongodb://192.168.2:27017/cherry')
# 判断环境
if ENV == 'development':
arg += '_test'
return conn.cherry[arg]
col('user_y').insert({'cid': 1, 'sid': 2})
col('group_y').insert([
{
'group_id': 3,
'avatar': 4
},
{
'group_id': 5,
'avatar': 6
}
])
col('link_y').insert([
{
'sid': 2,
'group_id': 3
},
{
'sid': 2,
'group_id': 5
}
])
print(col('user_y').find({}))
print(col('link_y').find({}))
print(col('group_y').find({}))