Update comments

This commit is contained in:
Roman 2021-01-17 08:27:10 +02:00
parent b22929d1ef
commit 760092c297
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ def get_categories():
Here you can insert some parsing code that retrieves Here you can insert some parsing code that retrieves
the list of video categories (e.g. 'Movies', 'TV-shows', 'Documentaries' etc.) 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 <https://wiki.python.org/moin/Generators>`_ .. note:: Consider using `generator functions <https://wiki.python.org/moin/Generators>`_
instead of returning lists. instead of returning lists.
@ -94,7 +94,7 @@ def get_videos(category):
Get the list of videofiles/streams. Get the list of videofiles/streams.
Here you can insert some parsing code that retrieves 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 <https://wiki.python.org/moin/Generators>`_ .. note:: Consider using `generators functions <https://wiki.python.org/moin/Generators>`_
instead of returning lists. instead of returning lists.