peewee 从已经存在的数据库中自动生成Model

pwiz是一款随Peewee提供的小型脚本工具,能够对现有数据库进行内省,并生成用于与底层数据交互的模型代码。通过pwiz,用户可以快速地为已有的数据库生成包含正确列属性和外键的骨架代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

pwiz, a model generator
pwiz is a little script that ships with peewee and is capable of introspecting an existing database and generating model code suitable for interacting with the underlying data. If you have a database already, pwiz can give you a nice boost by generating skeleton code with correct column affinities and foreign keys.
If you install peewee using setup.py install, pwiz will be installed as a “script” and you can just run:
python -m pwiz -e postgresql -u postgres my_postgres_db
This will print a bunch of models to standard output. So you can do this:
python -m pwiz -e postgresql my_postgres_db > mymodels.pypython # <-- fire up an interactive shell
>>> from mymodels import Blog, Entry, Tag, Whatever
>>> print [blog.name for blog in Blog.select()]
Option
Meaning
Example
-h
show help
 
-e
database backend
-e mysql
-H
host to connect to
-H remote.db.server
-p
port to connect on
-p 9001
-u
database user
-u postgres
-P
database password
-P secret
-s
postgres schema
-s public
The following are valid parameters for the engine:
  • sqlite
  • mysql
  • postgresql
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值