Get Anime Schedule Information's via this simple python module!
pip install git+https://github.com/TheProjectsX/anime-schedules.git
pip uninstall anime-schedules && pip install git+https://github.com/TheProjectsX/anime-schedules.git
- validateSeasonInfo
- getCurrentSeason
- getNextSeason
- getSeasonOfDate
- getCurrentSeasonAnimeScheduled
- getAnimeScheduleOfSeason
- getAnimeScheduleOfToday
- getAnimeScheduleOfNextHours
import anime_schedules as ani
season, year = ani.getCurrentSeason()
schedule_data = ani.getCurrentSeasonAnimeScheduled()
Here's a documentation in markdown format that you can use in your GitHub README.md
:
Validate a Season info (Season name and Season Year).
season
: A season name (e.g., "winter", "spring", "summer", "fall").year
: A year (string or integer).
{
"valid": [True || False],
"message": Validation Message
}
Get the current season information.
(season_name, season_year)
Get the next season information.
(season_name, season_year)
Get the season information based on a given date.
date
: A datetime string or timestamp.
(season_name, season_year)
Get anime scheduled to release this current season.
type
: Type of Anime [tv || movies || ovas || all] (Default: "tv").sortby
: Sort the anime by [popularity || countdown || title || airdate || anime.avg_rating] (Default: "popularity").language
: Anime title language [english || romaji] (Default: "english").
Anime scheduled data for the current season.
Get anime scheduled to release in the given season and year.
season
: Season name (e.g., "winter", "spring", "summer", "fall").year
: Year of the season.type
: Type of Anime [tv || movies || ovas || all] (Default: "tv").sortby
: Sort the anime by [popularity || countdown || title || airdate || anime.avg_rating] (Default: "popularity").language
: Anime title language [english || romaji] (Default: "english").
Anime scheduled data for the given season.
Get anime scheduled to release today or within the next 24 hours.
type
: Type of Anime [tv || movies || ovas || all] (Default: "tv").language
: Anime title language [english || romaji] (Default: "english").
Anime scheduled data for today.
Get anime scheduled to release from now until the next specified number of hours.
hours
: Number of hours from now (Default: 24).type
: Type of Anime [tv || movies || ovas || all] (Default: "tv").language
: Anime title language [english || romaji] (Default: "english").
Anime scheduled data for the next specified hours.