All Projects → jessecordeiro → youtube-trending-videos-scraper

jessecordeiro / youtube-trending-videos-scraper

Licence: MIT license
A scraper for videos that are trending on YouTube (https://www.youtube.com/feed/trending)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to youtube-trending-videos-scraper

avbot-charts
Aviation charts
Stars: ✭ 20 (-4.76%)
Mutual labels:  scraper
LinkedIn-Scraper
A LinkedIn Scraper to scrape up to 10k LinkedIn profiles from company profile links and save their e-mail addresses if available!
Stars: ✭ 62 (+195.24%)
Mutual labels:  scraper
exiftool-json-db
Maintain a JSON database of photos and videos with their metadata
Stars: ✭ 18 (-14.29%)
Mutual labels:  videos
website-to-json
Converts website to json using jQuery selectors
Stars: ✭ 37 (+76.19%)
Mutual labels:  scraper
Recipe-Scraper
A JS package for scraping recipes from the web.
Stars: ✭ 78 (+271.43%)
Mutual labels:  scraper
dorkscout
DorkScout - Golang tool to automate google dork scan against the entiere internet or specific targets
Stars: ✭ 189 (+800%)
Mutual labels:  scraper
blinkist-m4a-downloader
Grabs all of the audio files from all of the Blinkist books
Stars: ✭ 100 (+376.19%)
Mutual labels:  scraper
Image-Scraper
Fast concurrent image scraper
Stars: ✭ 35 (+66.67%)
Mutual labels:  scraper
4scanner
Continuously search imageboards threads for images/webms and download them
Stars: ✭ 103 (+390.48%)
Mutual labels:  scraper
EsriRESTScraper
A Python class that scrapes ESRI Rest Endpoints and exports data to a geodatabase
Stars: ✭ 43 (+104.76%)
Mutual labels:  scraper
scraper
图片爬取下载工具,极速爬取下载 站酷https://www.zcool.com.cn/, CNU 视觉 http://www.cnu.cc/ 设计师/用户 上传的 图片/照片/插画。
Stars: ✭ 64 (+204.76%)
Mutual labels:  scraper
extension
web scraping extension
Stars: ✭ 28 (+33.33%)
Mutual labels:  scraper
TikTokDownloader PyWebIO
🚀「Douyin_TikTok_Download_API」是一个开箱即用的高性能异步抖音|TikTok数据爬取工具,支持API调用,在线批量解析及下载。
Stars: ✭ 919 (+4276.19%)
Mutual labels:  scraper
saveddit
Bulk Downloader for Reddit
Stars: ✭ 130 (+519.05%)
Mutual labels:  scraper
MalScraper
Scrape everything you can from MyAnimeList.net
Stars: ✭ 132 (+528.57%)
Mutual labels:  scraper
GChan
Scrape boards and threads from 4chan (8kun WIP). Downloads images, videos and HTML if desired.
Stars: ✭ 31 (+47.62%)
Mutual labels:  scraper
ceiba-dl
NTU CEIBA 資料下載工具
Stars: ✭ 80 (+280.95%)
Mutual labels:  scraper
TinderBotz
Automated Tinder bot and scraper using selenium in python.
Stars: ✭ 265 (+1161.9%)
Mutual labels:  scraper
immo-feed
A extensible app for scraping property listings
Stars: ✭ 35 (+66.67%)
Mutual labels:  scraper
gesetze-tools
Scripts to maintain German law git repository
Stars: ✭ 99 (+371.43%)
Mutual labels:  scraper

Youtube Trending Videos Scraper

This is a Python scraper for YouTube's feed of videos that are trending.

Contents

Requirements/Installation

  1. Install requirement(s):
  1. Clone repository:
git clone https://github.com/jessecordeiro/youtube-trending-videos-scraper.git
cd youtube-trending-videos-scraper
  1. Install dependencies:
python setup.py develop

Usage

import youtube_trending_scraper

youtube_trending_scraper.Scraper.scrape()

Optional argument: country code

Domain defaults to .com if no argument is provided

# Example: scrape Canada's trending videos
youtube_trending_scraper.Scraper.scrape("ca")

Output

[{
  "profile_name": "Lorem ipsum",
  "profile_url": "/user/loremipsumdolor",
  "upload_date": "1 day ago",
  "video_desc": "Lorem ipsum dolor sit amet, hymenaeos sodales in, scelerisque at.",
  "video_thumbnail": "https://..",
  "video_time": "2:12",
  "video_title": "Lorem ipsum dolor sit amet",
  "video_url": "/watch?v=loR3MIpSUMgd",
  "view_count": "3,151,740"
}]

Contribute

  1. Fork the repository
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Implemented x feature'
  4. Push to the feature branch: git push origin x-feature
  5. Open a pull request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].