Skip to content

Commit

Permalink
0.6.6: Update scraping logic for the new UI
Browse files Browse the repository at this point in the history
- **BUGFIX**
  - around mid-late October, YouTube rolled out a new UI that changed
    rendering of different parts of the website, including the videos
    page
  - this broke the previous scraping logic, and this release fixes
    the endpoints to correctly extract video information
  - for more information, see the following references:
    - https://techcrunch.com/2022/10/24/youtube-rolls-out-new-design-with-pinch-to-zoom-on-ios-and-android-and-other-updates/
    - https://blog.youtube/news-and-events/an-updated-look-and-feel-for-youtube/
    - https://www.youtube.com/watch?v=zC8hYQwiEy4
    - https://www.youtube.com/watch?v=lYVtgYjJvuo
  • Loading branch information
shailshouryya committed Dec 5, 2022
1 parent 734b6a6 commit 53e2bc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/dev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .custom_logger import log, log_time_taken


__version__ = '0.6.5'
__version__ = '0.6.6'
__email__ = '[email protected]'


Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name = 'yt_videos_list',
version = '0.6.5',
version = '0.6.6',
description = 'YouTube bot to make a YouTube videos list (including all video titles and URLs uploaded by a channel) with end-to-end web scraping - no API tokens required. 🌟 Star this repo if you found it useful! 🌟',
long_description = long_description,
long_description_content_type = 'text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion python/yt_videos_list/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .custom_logger import log, log_time_taken


__version__ = '0.6.5'
__version__ = '0.6.6'
__email__ = '[email protected]'


Expand Down

0 comments on commit 53e2bc1

Please sign in to comment.