The test platform series (88) completes the email notification function (with a beautiful email template)
Hello ~ I'm Milo!
I'm building an open source interface testing platform from 0 to 1, and I'm also writing a complete set of corresponding tutorials. I hope you can support me.
Welcome to my official account MENOIR's diary, get the latest article tutorial!
review
Last time, we found a seemingly good email template, but because the data is dead ...
Posted by fangorn on Wed, 19 Jan 2022 16:39:54 +0100
FastAPI (24) - explain File and upload File
FastAPI (24) - explain File and upload File
preface
You can use the File provided by FastAPI to define the File to be uploaded by the client
Before learning File, you'd better learn Form: https://www.cnblogs.com/poloyy/p/15311533.html
Install Python multipart
To use File, you need to install this library first
pip install python-mu ...
Posted by killfall on Wed, 05 Jan 2022 10:12:03 +0100
The test platform series (84) supports copying other preconditions
Hello ~ I'm Milo!
I'm building an open source interface testing platform from 0 to 1, and I'm also writing a complete set of corresponding tutorials. I hope you can support me.
Welcome to my official account test development pit, get the latest article tutorial!
review
Previously, we supported the precondition of Redis, but in fact, there is a ...
Posted by quintin on Mon, 29 Nov 2021 22:44:49 +0100
fastapi User Guide (path parameters, query parameters, request body)
learn from
https://fastapi.tiangolo.com/zh/tutorial/
1. Step 1
pip install fastapi[all]
from fastapi import FastAPI
my_app = FastAPI() # my_app instance, whose name corresponds to that in the terminal
@my_app.get("/")
async def root():
return {"message" : "Hello World"}
http operation: POST: create data. GET: read data. PUT: upd ...
Posted by dross613 on Thu, 30 Sep 2021 21:05:11 +0200