from pymongo import MongoClient
import pandas as pd
from sqlalchemy import create_engine
# 连接到MongoDB
mongo_client = MongoClient('mongodb://localhost:27017/')
db = mongo_client['test']
collection = db['aggtest']
# 查询数据
cursor = collection.find({}) # 这里使用空查询来获取所有文档
data = list(cursor)
# 将数据转换为Pandas DataFrame
df = pd.DataFrame(data)
# 连接到PostgreSQL(使用SQLAlchemy作为ORM)
engine = create_engine('postgresql://postgres:foxconn.88@localhost:5432/test')
# 将DataFrame写入到PostgreSQL(如果表不存在,会自动创建)
table_name = 'tabletest'
df2=df.drop(columns="_id")
print(df)
df2.to_sql(table_name, engine, if_exists='fail',schema="schtest", index=False)
# 注意:if_exists='append' 表示如果表已存在,则追加数据;如果表不存在,则创建表。
# index=False 表示不将DataFrame的索引作为一列写入到数据库中。
python将mongodb中的数据写入到postgresql中
半吊子的程序狗2024-10-29 9:10
相关推荐
狼刀流4 分钟前
(8) cuda分析工具Gnevergiveup5 分钟前
2024网鼎杯青龙组Web+Misc部分WP机器学习之心1 小时前
GCN+BiLSTM多特征输入时间序列预测(Pytorch)子墨7771 小时前
MySQL学习笔记黑龙江亿林等级保护测评1 小时前
等保行业如何选择核实的安全防御技术ai产品老杨1 小时前
深度学习模型量化原理赵闪闪1681 小时前
PDF无法转换成其他格式的常见原因与解决方法解析恬淡虚无真气从之1 小时前
django中的类属性和类方法Fantasy丶夜雨笙歌1 小时前
用Pyhon写一款简单的益智类小游戏——2048新知图书1 小时前
Django 5企业级Web应用开发实战-分页