知乎上有人問,Python的哪個Web框架學習週期短,學習成本低?
很多人推薦Flask,老牌輕量級web框架,確實是初學者的首選。這幾天我在Github上看到FastApi,覺得比Flask更輕。
FastApi是這兩年異軍突起的網紅web框架,適合新手快速入門。 。
總的來說,FastAPI有三個優點:快、簡、強。
它的自我標籤是:
FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6 based on standard Python type hints.
和Django相比,FastAPI 是一個輕量級的 Web 框架。
Django 是 battery included,雖然設定麻煩,但預設就帶了許多功能,包括很好用的 ORM、migration 工具,也包括很多安全方面的中間件等等。還有例如模板系統、靜態資源管理系統等等,對於一般的商業網站來說,Django 是開箱即用的。
FastAPI 則非常輕量,它本身什麼都不帶,沒有 ORM、沒有 migration,沒有中間件,什麼都沒有。這是缺點也是有優點。
main.py:
from typing import Optional from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Optional[str] = None): return {"item_id": item_id, "q": q}
執行伺服器:
$ uvicorn main:app --reload INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) INFO: Started reloader process [28720] INFO: Started server process [28722] INFO: Waiting for application startup. INFO: Application startup complete.
進入http://127.0.0.1:8000/docs,會看到自動產生的互動式API 文件。
學習文件:https://fastapi.tiangolo.com
#GIthub位址:https://github .com/tiangolo/fastapi
以上是Python的哪個Web框架學習週期短,學習成本低?的詳細內容。更多資訊請關注PHP中文網其他相關文章!