pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
550 B
25 lines
550 B
from datetime import datetime
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Subscription(BaseModel):
|
|
username: str
|
|
monthly_fee: float
|
|
start_date: datetime
|
|
|
|
|
|
@app.webhooks.post("new-subscription")
|
|
def new_subscription(body: Subscription):
|
|
"""
|
|
When a new user subscribes to your service we'll send you a POST request with this
|
|
data to the URL that you register for the event `new-subscription` in the dashboard.
|
|
"""
|
|
|
|
|
|
@app.get("/users/")
|
|
def read_users():
|
|
return ["Rick", "Morty"]
|
|
|