21 lines
761 B
Python
21 lines
761 B
Python
# Entity: Country
|
|
|
|
from fastapi import APIRouter, HTTPException, status
|
|
from typing import List
|
|
from core.models.country import Country
|
|
from core.schemas.country import CountrySchema
|
|
import httpx
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/states", response_model=List[CountrySchema], status_code=status.HTTP_200_OK)
|
|
async def get_countries():
|
|
"""Get list of countries from third party API"""
|
|
async with httpx.AsyncClient() as client:
|
|
response = await client.get("https://restcountries.com/v3.1/all")
|
|
if response.status_code != 200:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
|
|
detail="Unable to fetch countries from external API"
|
|
)
|
|
return response.json() |