Metadata-Version: 2.1
Name: pgman
Version: 0.0.4
Summary: Python操作PostgreSQL
Home-page: https://github.com/markadc/wauo
Author: WangTuo
Author-email: markadc@126.com
License: MIT
Keywords: Python,DB,PostgreSQL
Description-Content-Type: text/markdown

# 更新日志

- 第一版
- 添加数据时，表名称加入双引号，避免跟关键字冲突
- `getfv`方法中也补充双引号，避免冲突
- 修复BUG，fetchone返回None时不应该进行`dict转换`

# 连接PostgreSQL

```python
from pgman import PostgreSQL

pg = PostgreSQL(db="test", user="wauo", password="123456")

name = "people"
pg.make_table(name)

res = pg.exe_sql("select * from people limit 10", query_all=True)
print(res)
```
