Database/SQL1 01_python & postgreSQL 연동하기 PostgreSQL 설치법은 다른 블로그들 많으니 생략 Table of Contents psycopg2 또는 sqlalchemy 모듈 설치 기본적인 코드 설명 요약 설치 $ pip install psycopg2 Python 연결코드 1. 데이터 연결 및 삽입 - postgreSQL 설치할 때, 설정한 host, dbname, user, password 입력 import psycopg2 # Update connection string information host = "" dbname = "" user = "" password = "" sslmode = "require" # Construct connection string conn_string = "host={0} user={1} dbname={2} pa.. 2020. 12. 28. 이전 1 다음