def _get_season_shows(self):
"""Gets the list of this season's shows from anilist.
Returns:
list. A list of shows in the anilist format. These are
expected to be run through _get_remote_show_info, as anilist
does not provide everything for every show in this output.
"""
target_date = date.today()
airing_list = requests.get("{0}/browse/anime?year={1}&season={2}&full_page=true&access_token={3}".format(self._api_url,target_date.year,self._get_season_string(),self._access_token))
return airing_list.json()
评论列表
文章目录