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

https://github.com/skykery/scraping_stuff


https://github.com/skykery/scraping_stuff

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Examples for web scraping and crawling

## Useful resources

### Basic Knowledge
- [CSS Selectors](https://www.w3schools.com/cssref/css_selectors.asp)
- [HTML DOM](https://www.w3schools.com/whatis/whatis_htmldom.asp)

### Core
- [lxml](https://lxml.de/)
- [cssselect](https://cssselect.readthedocs.io/en/latest/) (required for lxml if css selectors are used)
- [requests](https://docs.python-requests.org/en/latest/)

### Extra
- [splash](https://splash.readthedocs.io/en/stable/)
- [ratelimiter](https://pypi.org/project/ratelimiter/)
- [requests-cache](https://requests-cache.readthedocs.io/en/stable/)
- [tablib](https://tablib.readthedocs.io/en/stable/)

### Some day
These are used for more complicated crawlers.
- [celery](https://github.com/celery/celery)
- [rabbitmq](https://www.rabbitmq.com/)
- [scrapy](https://scrapy.org/)