Commit 8f6de3cc authored by wangmingming's avatar wangmingming

111

parent 00472c9a
......@@ -3,6 +3,7 @@ import random
import re
import subprocess
import time
from pathlib import Path
import loguru
import requests
......@@ -132,11 +133,12 @@ def md5(text):
client = MongoClient('mongodb://lcc-spider:JIUsfhiad&^@18.144.59.80:27017/?authSource=admin&directConnection=true')
db = client.env
# 查询所有文档
result = db.env_shape.find({'env.funcs' :{'$ne': None}})
data = {str(x['_id']): x['env'] for x in result}
print(result)
with open('env.json', 'w', encoding='utf-8') as f:
f.write(json.dumps(data))
if not Path('env.json').exists():
result = db.env_shape.find({'env.funcs' :{'$ne': None}})
data = {str(x['_id']): x['env'] for x in result}
print(result)
with open('env.json', 'w', encoding='utf-8') as f:
f.write(json.dumps(data))
with open('env.json', 'r', encoding='utf-8') as f:
data = json.loads(f.read())
envs = data.keys()
......@@ -175,7 +177,7 @@ while True:
# continue
logger.debug('开始刷值')
lastHash = ''
usedTime = 10
usedTime = 20
code = open('src.js', 'r', encoding='utf-8').read()
for i in range(30):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment