文档服务地址:http://47.92.0.57:3000/ 周报索引地址:http://47.92.0.57:3000/s/NruNXRYmV

Commit a2cf22cb by 李景熙

爬虫平台数据库连接

parent 25d34a6c
......@@ -2,10 +2,11 @@ from pymongo import MongoClient
host = '39.105.93.102' # 服务器url
client = MongoClient(host, 27017) # 服务器端口
client.admin.authenticate("crawlabpro", "crawlabpro")
db = client['python-db']
traffic = db.Traffic
weather = db.Weather
airports = db.airports
traffic = db['Traffic']
weather = db['Weather']
airports = db['airports']
# 查询traffic表中的所有数据并打印
......
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