搜索结果
查询Tags标签: Fastapi,共有 53条记录-
FastAPI 学习之路(三十三)操作数据库
通过创建pydantic模型进行验证提交数据from pydantic import BaseModel class UserBase(BaseModel):email: str class UserCreate(UserBase):"""请求模型验证:email:password:"""password: str class Users(UserBase):"""响…
2021/10/20 19:13:23 人评论 次浏览 -
FastAPI 学习之路(三十三)操作数据库
通过创建pydantic模型进行验证提交数据from pydantic import BaseModel class UserBase(BaseModel):email: str class UserCreate(UserBase):"""请求模型验证:email:password:"""password: str class Users(UserBase):"""响…
2021/10/20 19:13:23 人评论 次浏览 -
FastAPI 学习之路(三十二)创建数据库
在大型的web开发中,我们肯定会用到数据库操作,那么FastAPI也支持数据库的开发,你可以用 PostgreSQL MySQL SQLite Oracle 等本文用SQLite为例。我们看下在fastapi是如何操作设计数据库的#这个安装依赖也可以 pip install sqlalchemy #我在看到有支持异步的,我用的这个…
2021/10/20 19:13:20 人评论 次浏览 -
FastAPI 学习之路(三十二)创建数据库
在大型的web开发中,我们肯定会用到数据库操作,那么FastAPI也支持数据库的开发,你可以用 PostgreSQL MySQL SQLite Oracle 等本文用SQLite为例。我们看下在fastapi是如何操作设计数据库的#这个安装依赖也可以 pip install sqlalchemy #我在看到有支持异步的,我用的这个…
2021/10/20 19:13:20 人评论 次浏览 -
FastAPI(56)- 使用 Websocket 打造一个迷你聊天室
背景在实际项目中,可能会通过前端框架使用 WebSocket 和后端进行通信 这里就来详细讲解下 FastAPI 是如何操作 WebSocket 的 模拟 WebSocket 客户端#!usr/bin/env python # -*- coding:utf-8 _*- """ # author: 小菠萝测试笔记 # blog: https://www.cnb…
2021/10/5 23:42:03 人评论 次浏览 -
FastAPI(56)- 使用 Websocket 打造一个迷你聊天室
背景在实际项目中,可能会通过前端框架使用 WebSocket 和后端进行通信 这里就来详细讲解下 FastAPI 是如何操作 WebSocket 的 模拟 WebSocket 客户端#!usr/bin/env python # -*- coding:utf-8 _*- """ # author: 小菠萝测试笔记 # blog: https://www.cnb…
2021/10/5 23:42:03 人评论 次浏览 -
FastAPI学习笔记(一)-14.请求头cookie和head
1 2 @author:invoker3 @project:fastapi2021084 @file: chapter036.py5 @contact:invoker2021@126.com6 @descript:7 @Date:2021/8/6 21:508 @version: Python 3.7.89 10 from fastapi import APIRouter,Cookie,Header 11 from typing import Optional,List 12 13 app03…
2021/8/6 23:09:40 人评论 次浏览 -
FastAPI学习笔记(一)-14.请求头cookie和head
1 2 @author:invoker3 @project:fastapi2021084 @file: chapter036.py5 @contact:invoker2021@126.com6 @descript:7 @Date:2021/8/6 21:508 @version: Python 3.7.89 10 from fastapi import APIRouter,Cookie,Header 11 from typing import Optional,List 12 13 app03…
2021/8/6 23:09:40 人评论 次浏览 -
Integration with FastAPI and APScheduler
API Server with Scheduler 一般API服务器,仅仅提供API接口, 执行单次业务逻辑的执行。 如果在API服务器后台,执行定时执行功能, 让后台承担业务逻辑的定时执行功能, 添加APScheduler库。FastAPI https://fastapi.tiangolo.com 现代,快速,web框架, 用于构建APIs。…
2021/7/23 23:59:16 人评论 次浏览 -
Integration with FastAPI and APScheduler
API Server with Scheduler 一般API服务器,仅仅提供API接口, 执行单次业务逻辑的执行。 如果在API服务器后台,执行定时执行功能, 让后台承担业务逻辑的定时执行功能, 添加APScheduler库。FastAPI https://fastapi.tiangolo.com 现代,快速,web框架, 用于构建APIs。…
2021/7/23 23:59:16 人评论 次浏览 -
FastAPI hello-word
from typing import Optionalfrom fastapi import FastAPIapp = FastAPI()@app.get("/") def read_root():return {"Hello": "World"}@app.get("/items/{item_id}") def read_item(item_id: int, q: Optional[str] = None):retur…
2021/7/21 6:08:05 人评论 次浏览 -
FastAPI hello-word
from typing import Optionalfrom fastapi import FastAPIapp = FastAPI()@app.get("/") def read_root():return {"Hello": "World"}@app.get("/items/{item_id}") def read_item(item_id: int, q: Optional[str] = None):retur…
2021/7/21 6:08:05 人评论 次浏览 -
FastAPI - most popular API framework in python
FastAPI https://fastapi.tiangolo.com/#performanceFastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. The key features are:Fast: Very high performance, on par with NodeJS a…
2021/7/16 17:06:36 人评论 次浏览 -
FastAPI - most popular API framework in python
FastAPI https://fastapi.tiangolo.com/#performanceFastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. The key features are:Fast: Very high performance, on par with NodeJS a…
2021/7/16 17:06:36 人评论 次浏览 -
fastapi之helloworld
简介 以下简介来自官网描述: FastAPI是一个用于构建API的现代、快速(高性能)的web框架,使用Python3.6+并基于标准的Python类型提示。 关键特性:快速:可与NodeJS和Go比肩的极高性能。最快的Python Web框架之一。(PS:自行用wrk测试了一下,比flask快2倍,但比sanic慢…
2021/7/14 6:07:47 人评论 次浏览