Meta-AI / src /sites_list_torrens.py
randydev's picture
Create sites_list_torrens.py
8a0c796 verified
raw
history blame contribute delete
543 Bytes
from fastapi import APIRouter, status
from helper.is_site_available import check_if_site_available
from helper.error_messages import error_handler
router = APIRouter(tags=["Get all sites"])
@router.get("/sites_torrens_all")
async def get_all_supported_sites():
all_sites = check_if_site_available("1337x")
sites_list = [site for site in all_sites.keys() if all_sites[site]["website"]]
return error_handler(
status_code=status.HTTP_200_OK,
json_message={
"supported_sites": sites_list,
},
)