404
+ +Page not found
+ + +diff --git a/404.html b/404.html new file mode 100644 index 0000000..bd2e118 --- /dev/null +++ b/404.html @@ -0,0 +1,134 @@ + + + +
+ + + + + + +Page not found
+ + +Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
+Please make sure to update tests as appropriate.
+YouTube's API is annoying to work with, and has lots of limitations. utuby is a simple script for downloading Youtube comments without using the Youtube API - No API rate limits. No restrictions. Extremely fast.
+Source | +Link | +
---|---|
PyPI: | +https://pypi.org/project/utuby/ | +
Repository: | +https://github.com/santhoshse7en/utuby/ | +
Documentation: | +https://santhoshse7en.github.io/utuby_docs/ | +
Download it by clicking the green download button here on Github. You only need to parse specific YouTube URL as argument.
+>>> from utuby.utuby import youtube
+
+>>> url = 'https://www.youtube.com/watch?v=xjQFi-HP7po'
+
+>>> youtube = youtube(url)
+
+
+ This part of the documentation covers the installation of utuby. The first step to using any software package is getting it properly installed.
+Installing utuby is simple with pip.
+$ pip install utuby
+
+
+utuby is actively developed on GitHub, where the code is always available.
+You can clone the public repository:
+git clone git://github.com/santhoshse7en/utuby.git
+
+
+Once you have a copy of the source, you can embed it in your Python package, or install it into your site-packages easily:
+$ pip install -r requirements.txt
+$ python setup.py install
+
+
+Feel free to give our testing suite a shot:
+$ python twitter/utuby.py
+
+
+