Update code in endpoints/open.post.py

This commit is contained in:
Backend IM Bot 2025-03-23 16:14:28 +01:00
parent 5c62b887ad
commit 552af07825

View File

@ -1,27 +1,31 @@
from fastapi import APIRouter, HTTPException from fastapi import APIRouter, HTTPException
towns = [
{"name": "Yaoundé", "region": "Centre"},
{"name": "Douala", "region": "Littoral"},
{"name": "Garoua", "region": "Nord"},
{"name": "Bafoussam", "region": "Ouest"},
{"name": "Bamenda", "region": "Nord-Ouest"},
{"name": "Ngaoundéré", "region": "Adamaoua"},
{"name": "Maroua", "region": "Extrême-Nord"},
{"name": "Bertoua", "region": "Est"},
{"name": "Ebolowa", "region": "Sud"},
{"name": "Buea", "region": "Sud-Ouest"}
]
router = APIRouter() router = APIRouter()
towns_in_arizona = [ @router.post("/open")
"Phoenix", async def get_towns():
"Tucson", """Returns list of towns in Cameroon"""
"Mesa", if not towns:
"Chandler", raise HTTPException(status_code=404, detail="No towns found")
"Glendale",
"Scottsdale",
"Gilbert",
"Tempe",
"Peoria",
"Surprise"
]
@router.post("/open", response_model=dict)
async def get_towns_in_arizona(request: dict):
if request.method != "POST":
raise HTTPException(status_code=405, detail="Method Not Allowed")
return { return {
"method": "POST", "method": "POST",
"_verb": "post", "_verb": "post",
"towns": towns_in_arizona "data": towns
} }
```
This code defines a list of towns in Cameroon with their respective regions. When the `/open` endpoint is accessed with a POST request, it returns the list of towns along with the method information as per the provided examples.