当前位置:   article > 正文

python——peewee简单使用_peewee python3

peewee python3

peewee是一个轻量级的ORM框架,适用于小型项目

要使用首先的现在安装peewee模块:

C:\Users\asus>pip3 install peewee
Collecting peewee
Downloadinghttps://files.pythonhosted.org/packages/33/07/d4c742d88998fb448e18be41dc25e748376b7f69359d37fedaee09e66617/peewee-3.5.2.tar.gz 1.9MB)100% |████████████████████████████████| 1.9MB 13kB/s
Installing collected packages: peewee

  Running setup.py install for peewee ... done  Successfully installed peewee-3.5.2

安装完成之后,要使用peewee操作数据库得先import

连接数据库并创建table

  1. from peewee import MySQLDatabase, Model, CharField, DateField, BooleanField, IntegerField
  2. #py_peewee连接的数据库名
  3. db = MySQLDatabase('py_peewee', host='192.168.1.103', user='root', passwd='mysql', charset='utf8', port=3306)
  4. class BaseModel(Model):
  5. class Meta:
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/172793
推荐阅读
相关标签
  

闽ICP备14008679号