3 changed files with 76 additions and 0 deletions
@ -0,0 +1,35 @@
@@ -0,0 +1,35 @@
|
||||
from pymongo import MongoClient |
||||
import random |
||||
|
||||
client = MongoClient('localhost', 27017) |
||||
db = client.test_database |
||||
collection = db.test_collection |
||||
|
||||
docs = [{ |
||||
'timestamp' : '2017-04-11 11:04:12', |
||||
'bssid' : 'DEADBEEFSFUOESIEWR', |
||||
'channel' : random.randint(0,100), |
||||
'ssid' : 'wiiiiiifi', |
||||
'strength' : -24, |
||||
'encryption' : 'WPA' |
||||
}, |
||||
{ |
||||
'timestamp' : '2017-04-11 11:01:12', |
||||
'bssid' : 'BEEOIEUDSJFLKSDJFF', |
||||
'channel' : random.randint(0,100), |
||||
'ssid' : 'iurtiruyiuyrwe', |
||||
'strength' : -20, |
||||
'encryption' : 'WPA' |
||||
}, |
||||
{ |
||||
'timestamp' : '2017-04-11 11:24:12', |
||||
'bssid' : 'BEEF2DJFSKJFLKJSFKJL', |
||||
'channel' : random.randint(0,100), |
||||
'ssid' : 'sdfjaskfjlkdfjglfdghfketa', |
||||
'strength' : -30, |
||||
'encryption' : 'WPA' |
||||
}] |
||||
|
||||
result = collection.insert_many(docs) |
||||
print result.inserted_ids |
||||
|
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
from pymongo import MongoClient |
||||
import random |
||||
|
||||
client = MongoClient('localhost', 27017) |
||||
db = client.test_database |
||||
collection = db.test_collection |
||||
|
||||
# Note: |
||||
# The space in front of the askterisk is important. |
||||
# (Got it working through trial and error: W* worked, *A didn't, so * as leading character led to problems.) |
||||
for doc in collection.find({'encryption':{'$regex':' *'}}): |
||||
print "Channel: %d \tNetwork bssid: %s"%( doc['channel'], doc['bssid'] ) |
||||
|
||||
|
Loading…
Reference in new issue