上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 98 下一页
摘要: 【一】说明 项目接上小结 【二】请求体和字段 from fastapi import APIRouter, Path, Query from pydantic import BaseModel, Field app03 = APIRouter() ## 请求体字段 class CityInfo(Ba 阅读全文
posted @ 2023-10-01 15:31 Chimengmeng 阅读(107) 评论(0) 推荐(0)
摘要: 【一】小项目构建 【1】文档结构树 projects ├─coronavirus ├─__init__.py ├─....py ├─turtorial ├─__init__.py ├─chapter03.py ├─chapter04.py ├─chapter05.py ├─chapter06.py 阅读全文
posted @ 2023-10-01 15:31 Chimengmeng 阅读(152) 评论(0) 推荐(0)
摘要: 【一】Fastapi引入 【1】构建基础的fastapi项目 from fastapi import FastAPI from typing import Optional from pydantic import BaseModel # 创建 fastapi 对象 app = FastAPI() 阅读全文
posted @ 2023-10-01 15:30 Chimengmeng 阅读(137) 评论(0) 推荐(0)
摘要: 【一】环境准备 【1】第三方包 requirements.txt aiofiles==0.6.0 atomicwrites==1.4.0 attrs==20.3.0 bcrypt==3.2.0 certifi==2020.12.5 cffi==1.14.4 chardet==4.0.0 click= 阅读全文
posted @ 2023-10-01 15:30 Chimengmeng 阅读(203) 评论(0) 推荐(0)
摘要: 【一】介绍 Data validation and settings management using python type annotations. 使用Python的类型注解来进行数据校验和settings管理 pydantic enforces type hints at runtime, 阅读全文
posted @ 2023-10-01 15:30 Chimengmeng 阅读(523) 评论(0) 推荐(0)
摘要: 【一】介绍 Starlette 是个什么项目; IDE 开发时 Python 3.5+ 版本的 "type hints" 的好处:简短、直观和标准的 Python 类型声明; 介绍 Pydantic 包,FastAPI 项目的开发为什么要使用 Pydantic 【二】Starlette 【1】介绍 阅读全文
posted @ 2023-10-01 15:30 Chimengmeng 阅读(3378) 评论(0) 推荐(0)
摘要: 【一】为什么新秀 FastAPI 火成这样 介绍 FastAPI 有哪些突出特点,浏览官网文档中的 Feasures 一览 【二】FastAPI的突出特点 性能优越 开发效率 提升200%~300% 直接减少约40%的人为BUG 直观 易学易用 经简代码/代码重复率低 自带API交互文档,开发成果随 阅读全文
posted @ 2023-10-01 15:29 Chimengmeng 阅读(75) 评论(0) 推荐(0)
摘要: 【一】主题 Topic 主题是 Apache RocketMQ 中消息传输和存储的顶层容器,用于标识同一类业务逻辑的消息。 主题的作用主要如下: 定义数据的分类隔离: 在 Apache RocketMQ 的方案设计中,建议将不同业务类型的数据拆分到不同的主题中管理,通过主题实现存储的隔离性和订阅隔离 阅读全文
posted @ 2023-09-25 21:41 Chimengmeng 阅读(57) 评论(0) 推荐(0)
摘要: 【一】什么是RocketMQ RocketMQ 是一款功能强大的分布式消息系统,广泛应用于多个领域,包括异步通信解耦、企业解决方案、金融支付、电信、电子商务、快递物流、广告营销、社交、即时通信、移动应用、手游、视频、物联网、车联网等。 RocketMQ 源码地址:https://github.com 阅读全文
posted @ 2023-09-25 21:41 Chimengmeng 阅读(30) 评论(0) 推荐(0)
摘要: 基础的 Pandas 学习笔记 阅读全文
posted @ 2023-09-24 16:55 Chimengmeng 阅读(107) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 98 下一页