婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > Python的輕量級ORM框架peewee使用教程

Python的輕量級ORM框架peewee使用教程

熱門標簽:申請辦個400電話號碼 外呼系統(tǒng)前面有錄音播放嗎 千呼ai電話機器人免費 柳州正規(guī)電銷機器人收費 鎮(zhèn)江人工外呼系統(tǒng)供應商 騰訊地圖標注有什么版本 高德地圖標注字母 深圳網(wǎng)絡外呼系統(tǒng)代理商 400電話辦理費用收費

ORM框架使用最廣泛的就是SQLAlchemy和Django自帶的ORM框架,但是SQLAlchemy的語法顯然相對Django的ORM框架麻煩一點。

而Django本身是一個web框架,比較重量級,僅僅為了使用Django的ORM框架的功能,而安裝Django有點導致系統(tǒng)臃腫。而peewee這個框架語法幾乎與Django的ORM框架一致,而又非常輕量。

它的安裝非常簡單:

pip install peewee

如果你在使用mysql數(shù)據(jù)庫的過程中報出如下錯誤:

peewee.ImproperlyConfigured: MySQL driver not installed!

則需要安裝一個mysql的驅動:

pip install pymysql

peewee的whl包是880kB,pymysql的whl包是51KB,非常輕量級。

peewee的官方文檔地址:http://docs.peewee-orm.com/en/latest/index.html

下面測試一下各項功能:

from peewee import *

db = MySQLDatabase('test', host="localhost", user='root', passwd='123456', port=3306)


# 定義Person
class Person(Model):
  name = CharField()
  birthday = DateField()
  is_relative = BooleanField()

  class Meta:
    database = db
    
def test_create():
  Person.create_table()
  # 創(chuàng)建多張表也可以這樣
  # database.create_tables([Person])


def test_insert():
  # 添加一條數(shù)據(jù)
  p = Person(name='小華', birthday=date(1996, 12, 20), is_relative=True)
  p.save()


def test_delete():
  # 刪除姓名為perter的數(shù)據(jù)
  Person.delete().where(Person.name == 'perter').execute()
  # 已經(jīng)實例化的數(shù)據(jù), 使用delete_instance
  p = Person(name='小華', birthday=date(1996, 12, 20), is_relative=False)
  p.id = 1
  p.save()
  p.delete_instance()


def test_update():
  # 已經(jīng)實例化的數(shù)據(jù),指定了id這個primary key,則此時保存就是更新數(shù)據(jù)
  p = Person(name='小華', birthday=date(1996, 12, 20), is_relative=False)
  p.id = 1
  p.save()

  # 更新birthday數(shù)據(jù)
  q = Person.update({Person.birthday: date(1983, 12, 21)}).where(Person.name == '小華')
  q.execute()


def test_query():
  # 查詢單條數(shù)據(jù)
  p = Person.get(Person.name == '小華')
  print(p.name, p.birthday, p.is_relative)

  # 使用where().get()查詢
  p = Person.select().where(Person.name == '小華').get()
  print(p.name, p.birthday, p.is_relative)

  # 查詢多條數(shù)據(jù)
  persons = Person.select().where(Person.is_relative == True)
  for p in persons:
    print(p.name, p.birthday, p.is_relative)

下面測試一個各個方法。

測試創(chuàng)建表:

if __name__=="__main__":
  Person.create_table()

執(zhí)行完畢,檢查數(shù)據(jù)庫成功創(chuàng)建下面這張表:

測試插入數(shù)據(jù):

if __name__=="__main__":
  p = Person(name='小華', birthday=date(1996, 12, 20), is_relative=True)
  p.save()

執(zhí)行完畢后,表數(shù)據(jù)多了一行:

測試查詢數(shù)據(jù):

if __name__=="__main__":
 p = Person.get(Person.name == '小華')
  print(p.name, p.birthday, p.is_relative)

結果:

小華 1996-12-20 True

測試刪除數(shù)據(jù):

if __name__=="__main__":
  Person.delete().where(Person.name == '小華').execute()

執(zhí)行后,數(shù)據(jù)庫對應的記錄被刪除:

測試修改數(shù)據(jù):

if __name__ == "__main__":
  p = Person(name='小新', birthday=date(1995, 6, 20), is_relative=False)
  p.save()
  # 更新birthday數(shù)據(jù)
  q = Person.update({Person.birthday: date(1983, 5, 21)}).where(Person.name == '小新')
  q.execute()

測試批量查詢:

if __name__ == "__main__":
  for i in range(1, 5):
    p = Person(name=f'小張{i}', birthday=date(1995, 6, 20), is_relative=False)
    p.save()
  # 查詢多條數(shù)據(jù)
  persons = Person.select().where(Person.is_relative == False)
  for p in persons:
    print(p.name, p.birthday, p.is_relative)

以上就是Python的輕量級ORM框架peewee使用教程的詳細內(nèi)容,更多關于Python的輕量級ORM框架peewee的資料請關注腳本之家其它相關文章!

您可能感興趣的文章:
  • Python ORM框架Peewee用法詳解
  • Python輕量級ORM框架Peewee訪問sqlite數(shù)據(jù)庫的方法詳解
  • python輕量級orm框架 peewee常用功能速查詳情

標簽:哈爾濱 平頂山 合肥 郴州 烏蘭察布 大慶 烏蘭察布 海南

巨人網(wǎng)絡通訊聲明:本文標題《Python的輕量級ORM框架peewee使用教程》,本文關鍵詞  Python,的,輕量級,ORM,框架,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Python的輕量級ORM框架peewee使用教程》相關的同類信息!
  • 本頁收集關于Python的輕量級ORM框架peewee使用教程的相關信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 基隆市| 荆州市| 武川县| 泾源县| 湛江市| 侯马市| 巴中市| 紫金县| 麻城市| 宁阳县| 连云港市| 大同市| 桂平市| 德钦县| 新建县| 临潭县| 剑川县| 贵定县| 鹤岗市| 和龙市| 礼泉县| 加查县| 石屏县| 泸西县| 乌兰浩特市| 漳平市| 额尔古纳市| 周至县| 监利县| 津南区| 渝中区| 鄂托克前旗| 七台河市| 安顺市| 大港区| 阿克苏市| 武乡县| 左云县| 特克斯县| 阿克苏市| 万盛区|