ViniciusFM/TubeCrawler
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
PURPOSE
=======
TubeCrawler is a simple python3 script that collects
all YouTube video hrefs and titles from a given
channel.
It helps displaying a list in CSV format for
any purpose you have in mind.
SCRAPY
======
TubeCrawler uses a python's lib called scrapy
to do the crawling stuff. You may download it
first simply doing a pip:
pip install scrapy
USAGE
=====
USAGE: tubecrawler.py <channel_name> <output_file_name>
NOT OPTIONAL ARGS:
channel_name: the exactly name of the channel (case sensitive)
output_file_name: the CSV output file name
EXAMPLE:
tubecrawler.py foochannel /path/to/foochannellinks.csv
This line will output the video links from oldest to newest
from foochannel to file located at /path/to/foochannellinks.csv