-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
31 lines (23 loc) · 782 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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