การทำงานที่นี่คือการขูด API ที่เว็บไซต์ที่เริ่มต้นจากการhttps://xxx.xxx.xxx/xxx/1.json
ไปhttps://xxx.xxx.xxx/xxx/1417749.json
และเขียนมันตรงกับ MongoDB เพื่อที่ฉันมีรหัสต่อไปนี้:
client = pymongo.MongoClient("mongodb://127.0.0.1:27017")
db = client["thread1"]
com = db["threadcol"]
start_time = time.time()
write_log = open("logging.log", "a")
min = 1
max = 1417749
for n in range(min, max):
response = requests.get("https:/xx.xxx.xxx/{}.json".format(str(n)))
if response.status_code == 200:
parsed = json.loads(response.text)
inserted = com.insert_one(parsed)
write_log.write(str(n) + "\t" + str(inserted) + "\n")
print(str(n) + "\t" + str(inserted) + "\n")
write_log.close()
แต่มันใช้เวลามากในการทำงาน คำถามนี่คือฉันจะเร่งกระบวนการนี้ได้อย่างไร