当前位置: 首页>>代码示例>>Python>>正文


Python MongoClient.find方法代码示例

本文整理汇总了Python中pymongo.mongo_client.MongoClient.find方法的典型用法代码示例。如果您正苦于以下问题:Python MongoClient.find方法的具体用法?Python MongoClient.find怎么用?Python MongoClient.find使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pymongo.mongo_client.MongoClient的用法示例。


在下文中一共展示了MongoClient.find方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: index

# 需要导入模块: from pymongo.mongo_client import MongoClient [as 别名]
# 或者: from pymongo.mongo_client.MongoClient import find [as 别名]
def index(request, page='1', edit=None):
    page = int(page)
    cols = MongoClient().prikoso_2016.tweets
    users = []
    for name, num in sorted(space_nums, key=lambda x: x[1]): # numでソート
        # ページ外のユーザを除外
        if not 10 * (page - 1) <= num < 10 * page: # ex. page=2 ならば #10-19 を表示
            continue
        
        user = cols.find_one({'tweet.user.screen_name': name})
        if user:
            user = user['tweet']['user']
            if edit: # 編集するときは全件表示する
                pins = cols.find({
                    'tweet.user.screen_name': name,
                    'tweet.extended_entities': {'$exists': True},
                    'tweet.text': {'$not': re.compile(r'^RT ')},
                    'pin': {'$exists': True},
                }).sort('tweets.id')
                tweets = cols.find({
                    'tweet.user.screen_name': name,
                    'tweet.extended_entities': {'$exists': True},
                    'tweet.text': {'$not': re.compile(r'^RT ')},
                    'pin': {'$exists': False},
                }).sort('tweets.id')
                print(name, pins.count() + tweets.count())
                
            else: # 通常時はdisabaleされたものを除外する
                pins = cols.find({
                    'tweet.user.screen_name': name,
                    'tweet.extended_entities': {'$exists': True},
                    'tweet.text': {'$not': re.compile(r'^RT ')},
                    'disable': {'$exists': False},
                    'pin': {'$exists': True},
                }).sort('tweets.id')
                tweets = cols.find({
                    'tweet.user.screen_name': name,
                    'tweet.extended_entities': {'$exists': True},
                    'tweet.text': {'$not': re.compile(r'^RT ')},
                    'disable': {'$exists': False},
                    'pin': {'$exists': False},
                }).sort('tweets.id')

        if edit:
            users.append({
                'space_num': num,
                'user': user,
                'tweets_list': [pins, tweets[:30 - pins.count()]],
            })
        else: # editモードでない時は、表示ツイート数を制限する
            users.append({
                'space_num': num,
                'user': user,
                'tweets_list': [pins, tweets[:max(0, 6 - pins.count())]],
            })

    return render(request, 'prikoso_2016_circle_checker/index.html', {'users': users, 'edit': edit})
开发者ID:sakuramochi0,项目名称:prikoso-2016-circle-checker,代码行数:59,代码来源:views.py

示例2: getByFirstName

# 需要导入模块: from pymongo.mongo_client import MongoClient [as 别名]
# 或者: from pymongo.mongo_client.MongoClient import find [as 别名]
 def getByFirstName(self, firstName):
     collection = MongoClient("localhost").contactDatabase.contactCollection
     for v in collection.find({'firstName':firstName}):
         print('matched: ' + str(v))
开发者ID:elizcol,项目名称:python-training,代码行数:6,代码来源:Ex13.py

示例3: getAllDocs

# 需要导入模块: from pymongo.mongo_client import MongoClient [as 别名]
# 或者: from pymongo.mongo_client.MongoClient import find [as 别名]
 def getAllDocs(self):
     collection = MongoClient("localhost").contactDatabase.contactCollection
     print("find all documents")
     for v in collection.find():
         print('\t' + str(v))
开发者ID:elizcol,项目名称:python-training,代码行数:7,代码来源:Ex13.py


注:本文中的pymongo.mongo_client.MongoClient.find方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。