FastAPI - in memory counter
from fastapi import FastAPI
app = FastAPI()
counter = 0
@app.get("/")
async def main():
global counter
counter += 1
return {"cnt": counter}
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
from fastapi import FastAPI
app = FastAPI()
counter = 0
@app.get("/")
async def main():
global counter
counter += 1
return {"cnt": counter}