-
I am getting the error "fastapi_mail.errors.ConnectionErrors: Exception raised (535, '5.7.8 Username and Password not accepted."
The password I am using works within Azure Functions. Could it be th…
-
Hi,
Do you have some documentation or example regarding configuration for ApiKey (header) and how to verify it on FastAPI ?
thanks in advance,
Rémy.
-
Hi!
I need to use ProtonMail for a project and have gone through the process to learn how to set the integration up. Proton requires to run a local software called ProtonMail Bridge, that acts as a…
-
In each comment of this issues page, I will be listing the topics of my upcoming blogs yet to be published in `https://senthilkumarm1901.quarto.pub/learn-by-blogging/`
-
I use FastAPI-Mail and Celery to send notifications in the background. I want to place the static image in the template and send it to the customer.
I discovered that a ```url_for``` function retu…
-
I have attempted to install easy auth in an existing fast API project. There are the following 2 issues encountered:
1. Pip/Poetry add do not install all dependencies. The following dependencies ar…
-
Hi
Thanks for creating this helpfull application.
i want to use your app main function for FastAPI microservice. can you help me for that?
-
### Description
So we have some APIs that have optional fields, or fields that may not have values, these are usually sent over the wire in JSON and they have `null` as their value.
The problem he…
-
Hi sir, when I run the application of ch03 project. It shows the error as below:
> from dependency_injector.wiring import inject, Provide
> ModuleNotFoundError: No module named 'dependency_injector'…
-
pip install fastapi
pip install uvicorn
教程
第一步
```python
from fastapi import FastAPI
app = FastAPI() # 创建API实例
@app.get("/")
async def root():
return {"message": "Hello World"}
```…