티스토리 뷰
from sqlalchemy import create_engine
db = create_engine('postgresql://<user>:<pw>@<serverIP:PORT>/<DB이름>')
result=db.connect()
print(result)
print("완료")
'Programming Languages > Python' 카테고리의 다른 글
Fastapi 알아가기 (middleware, callnext, DB dependency, sqlachemy session) (0) | 2022.08.09 |
---|---|
[코드와 메모리] 클래스, 메소드, 오브젝트, 인스턴스 (0) | 2022.04.03 |
centos7에 파이썬 3.xx 설치 (0) | 2021.09.29 |
[Python] 제너레이터(generator) (0) | 2021.07.06 |
[python/pandas] read_excel, header, stack, reset_index (0) | 2021.07.06 |