Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pceuropa/youtube-crawler

Youtube crawler & scraper based on scrapy. Written in Python3.
https://github.com/pceuropa/youtube-crawler

crawler csv mariadb python3 scraper scrapy sqlalchemy youtube

Last synced: about 2 months ago
JSON representation

Youtube crawler & scraper based on scrapy. Written in Python3.

Awesome Lists containing this project

README

        

# Youtube Movie and Channel Crawler
Youtube crawler & scraper based on scrapy. Write in Python3.

REQUIREMENTS
------------
Python 3.6+
SQLAlchemy (optional if save in MariaDB)
Pytest (optional to test unit)

CONFIGURATION
----------
Configuration is in ./yt/settings.py

Default save in CSV. Uncomment yt.pipelines.SqlAlchemy if you need store items in DB
```
ITEM_PIPELINES = {
# 'yt.pipelines.SqlAlchemy': 300,
'yt.pipelines.Csv': 300,
}
```

RUNING
----------
```
scrapy crawl youtube
```

TESTING Model
----------
```
pytest yt/test.py
```