PostgreSQL & Python

Wook Kim·2022년 3월 13일
0

RDKit

목록 보기
2/2
post-thumbnail

Python에서 PostgreSQL 데이터 검색

  1. PostgreSQL Docker 컨테이너에 필요 프로그램 설치
$ apt-get update
$ apt-get install libpq-dev
  1. psycopg2 설치
$ pip3 install psycopg2
  1. Python import & Check
>>> conn = psycopg2.connect(database='chembl_30', user='postgres')
>>> curs = conn.cursor()
>>> curs.execute('select * from rdk.mols where m@>%s',('c1cccc2c1nncc2',))
>>> curs.fetchone()

결과

profile
#인공지능에 관심있는 #비전공 #생물학도

0개의 댓글