This is a web scraper written using FastAPI and Python. It can be used to search and retrieve information related to Anime from the GogoAnime website.
The web scraper can be used by making HTTP requests to the various endpoints/routes. Each endpoint accepts different parameters, depending on the action it performs.
-
Python 3.6+
-
FastAPI
-
uvicorn
-
/search/{query} - Search for Anime by title
-
/anime/{anime_id} - Get detailed information about an Anime
-
/new-season/{page_no} - Get a list of Anime from the latest season
-
/streaming-links/{anime_id}/{episode_no} - Get streaming links for a particular episode
-
/home/{page} - Get a list of Anime from popular lists
-
/download/{anime_id}/{episode_no} - Get a list of Anime download links from particular episode
pip install -r requirements.txt
uvicorn main:app --reload