From 760092c297c9af8c2a33aeae7b44befb0ab9d6ca Mon Sep 17 00:00:00 2001 From: Roman Date: Sun, 17 Jan 2021 08:27:10 +0200 Subject: [PATCH] Update comments --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index e62672f..169cbd2 100644 --- a/main.py +++ b/main.py @@ -78,7 +78,7 @@ def get_categories(): Here you can insert some parsing code that retrieves the list of video categories (e.g. 'Movies', 'TV-shows', 'Documentaries' etc.) - from some site or server. + from some site or API. .. note:: Consider using `generator functions `_ instead of returning lists. @@ -94,7 +94,7 @@ def get_videos(category): Get the list of videofiles/streams. Here you can insert some parsing code that retrieves - the list of video streams in the given category from some site or server. + the list of video streams in the given category from some site or API. .. note:: Consider using `generators functions `_ instead of returning lists.