使用Python连接postgresql数据库
使用Python连接postgresql数据库的配置非常简单,仅仅需要三步:1、导入psycopg2包;2、设置连接3、取数据#-*- coding:utf-8 -*-import psycopg2conn = psycopg2.connect(database='aa',user='username',password='123456',host='192.168.131.2