diff --git a/README.md b/README.md index dadf6bc..19b278a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The project is a work in progress, not finished yet. But, the code works well, f * Search anime by name * Get anime details * Get airing episode urls -* Get ~~download and/or~~ streaming url (m3u8) +* Get streaming url (m3u8) * Show airing schedule * Download anime diff --git a/pynimeapi/pynime.py b/pynimeapi/pynime.py index 055f968..a33d15f 100644 --- a/pynimeapi/pynime.py +++ b/pynimeapi/pynime.py @@ -232,4 +232,5 @@ def download_video(self, stream_url: str, filename: str): shutil.rmtree("temp") # delete folder and files inside them after finished def get_schedule(self, unix_time: int): + schedule = GetSchedule() schedule.print_schedule(unix_time)