Skip to content

Commit 73dbefb

Browse files
committed
refactor database connections to use environment variables and update requirements for psycopg2-binary
1 parent 8e69535 commit 73dbefb

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

requirements.txt

14 Bytes
Binary file not shown.

tools/pgtomongo.py

+10-12
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,16 @@
22
import psycopg2
33
import json
44
from tqdm import tqdm
5+
from config import *
56
# 连接到 MongoDB
6-
mongo_client = pymongo.MongoClient("mongodb://root:JIwb158.@localhost:27017/")
7-
mongo_db = mongo_client["hotday"]
8-
mongo_collection = mongo_db["your_collection"]
7+
mongo_client = pymongo.MongoClient(MONGODB_URI)
8+
mongo_db = mongo_client[MONGODB_DB_NAME]
99

1010
# 连接到 PostgreSQL
11-
pg_conn = psycopg2.connect("dbname=postgres user=admin password=securepassword")
11+
pg_conn = psycopg2.connect(f"host={PG_HOST} port={PG_PORT} dbname={PG_DB} user={PG_USER} password={PG_PASSWORD}")
1212
pg_cursor = pg_conn.cursor()
13-
collection_names = [
14-
"acfun",
15-
"openeye",
16-
"tencent_news",
17-
"woshipm",
18-
"wx_read_rank",
19-
"zongheng",
20-
]
13+
14+
collection_names = mongo_db.list_collection_names()
2115
# 从 MongoDB 中读取数据
2216
for collection_name in tqdm(collection_names):
2317
mongo_collection = mongo_db[collection_name]
@@ -46,6 +40,10 @@
4640
data = document['books']
4741
elif collection_name == "zongheng":
4842
data = document['result']
43+
else:
44+
if "data" not in document:
45+
continue
46+
data = document['data']
4947
insert_time = document['insert_time']
5048

5149
# 将数据插入到 PostgreSQL

0 commit comments

Comments
 (0)