Python 用pandas连接Postgresql库

pandas确实蛮强的,记录使用的代码

python 复制代码
from sqlalchemy import create_engine
import pandas as pd
import os

# 从环境变量中读取数据库连接信息
user = os.getenv('DB_USER', 'xxx')              # 数据库用户名
password = os.getenv('DB_PASSWORD', 'xxx')      # 数据库密码
host = os.getenv('DB_HOST', '192.168.0.1')      # 数据库主机地址
port = os.getenv('DB_PORT', '5432')             # 数据库端口
dbname = os.getenv('DB_NAME', 'xxx')            # 数据库名称

# 创建数据库引擎
# 这个引擎将用于与 PostgreSQL 数据库建立连接
engine = create_engine(f'postgresql://{user}:{password}@{host}:{port}/{dbname}')

# 插入数据到数据库
def insert_data(df):
    """
    将 DataFrame 插入到数据库表中。

    参数:
    df (pd.DataFrame): 要插入的 DataFrame 数据
    """
    df.to_sql(name='employees', 
              schema='xxx',        # 库名
              con=engine, 
              if_exists='append',  # 追加数据到现有表
              index=False)         # 不写入 DataFrame 的索引列

# 查询数据库中的数据
def query_data():
    """
    从数据库中查询数据并返回 DataFrame。

    返回:
    pd.DataFrame: 查询结果 DataFrame
    """
    query = "SELECT * FROM xxx.employees"
    return pd.read_sql_query(query, con=engine)

# 主程序
if __name__ == '__main__':
    # 创建一个 DataFrame,包含要插入的新数据
    df = pd.DataFrame({
        'id': [14, 25, 36],                 # ID 列
        'name': ['Alice', 'Bob', 'Charlie'], # 名字列
        'age': [25, 30, 35],                # 年龄列
        'department': ['HR', 'Engineering', 'Marketing']  # 部门列
    })

    # 将数据插入到数据库中
    insert_data(df)
    
    # 查询并打印数据库中的数据
    df_result = query_data()
    print(df_result)
相关推荐
江上月5133 分钟前
Pandas 高级教程:解锁数据分析的强大潜能
数据挖掘·数据分析·pandas
头发还在的女程序员1 小时前
三天搞定招聘系统!附完整源码
开发语言·python
温轻舟1 小时前
Python自动办公工具06-设置Word文档中表格的格式
开发语言·python·word·自动化工具·温轻舟
花酒锄作田1 小时前
[python]FastAPI-Tracking ID 的设计
python·fastapi
AI-智能1 小时前
别啃文档了!3 分钟带小白跑完 Dify 全链路:从 0 到第一个 AI 工作流
人工智能·python·自然语言处理·llm·embedding·agent·rag
d***95622 小时前
爬虫自动化(DrissionPage)
爬虫·python·自动化
APIshop3 小时前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python
二川bro3 小时前
AutoML自动化机器学习:Python实战指南
python·机器学习·自动化
杨超越luckly3 小时前
基于 Overpass API 的城市电网基础设施与 POI 提取与可视化
python·数据可视化·openstreetmap·电力数据·overpass api
q***44814 小时前
PostgreSQL的备份方式
数据库·postgresql