[Python] Connect to AWS RDS with sqlalchemy and read SQL with pandas
from sqlalchemy import create_engine
url = "{AWS rds db url: postgresql://{user}:{password}@{rds endpoint}:{port}/{DB name}}"
engine = create_engine(url)
connect = engine.connect()
query = "select * from {table name}"
# output is pandas dataframe
dataframe = pd.read_sql(query, con=connect)
Reference
この問題について([Python] Connect to AWS RDS with sqlalchemy and read SQL with pandas), 我々は、より多くの情報をここで見つけました https://velog.io/@jua/Python-Connect-to-AWS-RDS-with-sqlalchemy-and-read-SQL-with-pandasテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol