您好,登錄后才能下訂單哦!
這篇“Python怎么實現Web服務器FastAPI”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Python怎么實現Web服務器FastAPI”文章吧。
FastAPI 是一個用于構建 API 的現代、快速(高性能)的 web 框架,使用 Python 3.6+ 并基于標準的 Python類型提示。
關鍵特性:
快速:可與 NodeJS 和 Go 比肩的極高性能(歸功于 Starlette 和 Pydantic)。最快的 Python web 框架之一。
高效編碼:提高功能開發速度約 200% 至 300%。*
更少 bug:減少約 40% 的人為(開發者)導致錯誤。*
智能:極佳的編輯器支持。處處皆可自動補全,減少調試時間。
簡單:設計的易于使用和學習,閱讀文檔的時間更短。
簡短:使代碼重復最小化。通過不同的參數聲明實現豐富功能。bug 更少。
健壯:生產可用級別的代碼。還有自動生成的交互式文檔。
標準化:基于(并完全兼容)API 的相關開放標準:OpenAPI (以前被稱為 Swagger) 和 JSON Schema。
pip install fastapi or pip install fastapi[all]
運行服務器的命令如下:
uvicorn main:app --reload
使用 FastAPI 需要 Python 版本大于等于 3.6。
# -*- coding:utf-8 -*- from fastapi import FastAPI app = FastAPI() @app.get("/") async def root(): return {"message": "Hello World"}
運行結果如下:
運行服務器的命令如下:
uvicorn main:app --reload
CORS 或者「跨域資源共享」 指瀏覽器中運行的前端擁有與后端通信的 JavaScript 代碼,而后端處于與前端不同的「源」的情況。
源是協議(http,https)、域(myapp.com,localhost,localhost.tiangolo.com)以及端口(80、443、8080)的組合。因此,這些都是不同的源:
http://localhost https://localhost http://localhost:8080
Python測試代碼如下(test_fastapi.py):
# -*- coding:utf-8 -*- from typing import Union from fastapi import FastAPI, Request import uvicorn from fastapi.middleware.cors import CORSMiddleware app = FastAPI() # 讓app可以跨域 # origins = ["*"] origins = [ "http://localhost.tiangolo.com", "https://localhost.tiangolo.com", "http://localhost", "http://localhost:8080", ] app.add_middleware( CORSMiddleware, allow_origins=origins, allow_credentials=True, allow_methods=["*"], allow_headers=["*"], ) # @app.get("/") # async def root(): # return {"Hello": "World"} @app.get("/") def read_root(): return {"message": "Hello World,愛看書的小沐"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} @app.get("/api/sum") def get_sum(req: Request): a, b = req.query_params['a'], req.query_params['b'] return int(a) + int(b) @app.post("/api/sum2") async def get_sum(req: Request): content = await req.json() a, b = content['a'], content['b'] return a + b @app.get("/api/sum3") def get_sum2(a: int, b: int): return int(a) + int(b) if __name__ == "__main__": uvicorn.run("test_fastapi:app", host="127.0.0.1", port=8000 , log_level="info", reload=True, debug=True)
運行結果如下:
FastAPI 會自動提供一個類似于 Swagger 的交互式文檔,我們輸入 “localhost:8000/docs” 即可進入。
返回 json 數據可以是:JSONResponse、UJSONResponse、ORJSONResponse,Content-Type 是 application/json;返回 html 是 HTMLResponse,Content-Type 是 text/html;返回 PlainTextResponse,Content-Type 是 text/plain。
還有三種響應,分別是返回重定向、字節流、文件。
(1)Python測試重定向代碼如下:
# -*- coding:utf-8 -*- from fastapi import FastAPI, Request from fastapi.responses import RedirectResponse import uvicorn app = FastAPI() @app.get("/index") async def index(): return RedirectResponse("https://www.baidu.com") @app.get("/") def main(): return {"message": "Hello World,愛看書的小沐"} if __name__ == "__main__": uvicorn.run("test_fastapi:app", host="127.0.0.1", port=8000 , log_level="info", reload=True, debug=True)
運行結果如下:
(2)Python測試字節流代碼如下:
# -*- coding:utf-8 -*- from fastapi import FastAPI, Request from fastapi.responses import StreamingResponse import uvicorn app = FastAPI() async def test_bytearray(): for i in range(5): yield f"byteArray: {i} bytes ".encode("utf-8") @app.get("/index") async def index(): return StreamingResponse(test_bytearray()) @app.get("/") def main(): return {"message": "Hello World,愛看書的小沐"} if __name__ == "__main__": uvicorn.run("test_fastapi:app", host="127.0.0.1", port=8000 , log_level="info", reload=True, debug=True)
運行結果如下:
(3)Python測試文本文件代碼如下:
# -*- coding:utf-8 -*- from fastapi import FastAPI, Request from fastapi.responses import StreamingResponse import uvicorn app = FastAPI() @app.get("/index") async def index(): return StreamingResponse(open("test_tornado.py", encoding="utf-8")) @app.get("/") def main(): return {"message": "Hello World,愛看書的小沐"} if __name__ == "__main__": uvicorn.run("test_fastapi:app", host="127.0.0.1", port=8000 , log_level="info", reload=True, debug=True)
運行結果如下:
(4)Python測試二進制文件代碼如下:
# -*- coding:utf-8 -*- from fastapi import FastAPI, Request from fastapi.responses import FileResponse, StreamingResponse import uvicorn app = FastAPI() @app.get("/download_file") async def index(): return FileResponse("test_fastapi.py", filename="save.py") @app.get("/get_file/") async def download_files(): return FileResponse("test_fastapi.py") @app.get("/get_image/") async def download_files_stream(): f = open("static\\images\\sheep0.jpg", mode="rb") return StreamingResponse(f, media_type="image/jpg") @app.get("/") def main(): return {"message": "Hello World,愛看書的小沐"} if __name__ == "__main__": uvicorn.run("test_fastapi:app", host="127.0.0.1", port=8000 , log_level="info", reload=True, debug=True)
運行結果如下:
# -*- coding:utf-8 -*- from fastapi import FastAPI, Request from fastapi.websockets import WebSocket import uvicorn app = FastAPI() @app.websocket("/myws") async def ws(websocket: WebSocket): await websocket.accept() while True: # data = await websocket.receive_bytes() # data = await websocket.receive_json() data = await websocket.receive_text() print("received: ", data) await websocket.send_text(f"received: {data}") @app.get("/") def main(): return {"message": "Hello World,愛看書的小沐"} if __name__ == "__main__": uvicorn.run("test_fastapi:app", host="127.0.0.1", port=8000 , log_level="info", reload=True, debug=True)
HTML客戶端測試代碼如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tornado Websocket Test</title> </head> <body> <body onload='onLoad();'> Message to send: <input type="text" id="msg"/> <input type="button" onclick="sendMsg();" value="發送"/> </body> </body> <script type="text/javascript"> var ws; function onLoad() { ws = new WebSocket("ws://127.0.0.1:8000/myws"); ws.onopen = function() { console.log('connect ok.') ws.send("Hello, world"); }; ws.onmessage = function (evt) { console.log(evt.data) }; ws.onclose = function () { console.log("onclose") } } function sendMsg() { ws.send(document.getElementById('msg').value); } </script> </html>
運行結果如下:
以上就是關于“Python怎么實現Web服務器FastAPI”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。