zoukankan      html  css  js  c++  java
  • mongodb 范围查找

    #!/usr/bin/env python
    # -*- coding:utf-8 -*-
    import json
    from pymongo import MongoClient
    import time
    def id2time(object_id):
        timeStamp = int(object_id[:8], 16)
        return time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(timeStamp))
    import pymongo
    import time
    import datetime
    from bson.objectid import ObjectId
    
    
    def object_id_from_datetime(from_datetime=None):
        ''' According to the time manually generated an ObjectId '''
        if not from_datetime:
            from_datetime = datetime.datetime.now()
        return ObjectId.from_datetime(generation_time=from_datetime)
    
    def object_id_from_datetime(from_datetime=None):
        ''' According to the time manually generated an ObjectId '''
        if not from_datetime:
            from_datetime = datetime.datetime.now()
        return ObjectId.from_datetime(generation_time=from_datetime)
    
    def range_search(start_timestamp, end_timestamp):
      connection = MongoClient("mongodb://20.5.101.31:27017/")
      with connection:
        db = connection['tlyy']
        table = db['checkf5']
        a = table.find({'_id':{'$lt' : end_timestamp, '$gte' : start_timestamp}})
        print  a
        print type(a)
        print a.limit(1000)
        b=a.limit(1000)
        print type(b)
        for x in b:
            print str(x['_id'])+'=>'+id2time(str(x['_id']))+'=>'+str(x['f5dict'])
    if __name__ == '__main__':
      ##时间要减去8
      #start time
      start_time = datetime.datetime(2019, 4, 6, 06, 0, 0)
      start_timestamp = object_id_from_datetime(start_time)
      print start_timestamp
      #end time
      end_time = datetime.datetime(2019, 4, 6, 07, 0, 0)
      end_timestamp = object_id_from_datetime(end_time)
      print end_timestamp
      range_search(start_timestamp, end_timestamp)
    
  • 相关阅读:
    [leetcode] LRU Cache @ Python
    [leetcode]Swap Nodes in Pairs @ Python
    [leetcode]Add Two Numbers @ Python
    [leetcode]Candy @ Python
    [leetcode]Gas Station @ Python
    [leetcode]Plus One @ Python
    接口测试-压力-Jmeter继续使用
    移动互联网应用测试,推荐两本书
    Android dumpsys 内存分析
    内存泄露分析之MAT工具简单使用
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13348764.html
Copyright © 2011-2022 走看看