1
0
mirror of https://github.com/lorien/awesome-web-scraping.git synced 2024-11-24 08:32:19 +02:00

New stuff

This commit is contained in:
Gregory Petukhov 2015-08-13 02:49:22 +06:00
parent a7015ca629
commit b117a73a54
5 changed files with 47 additions and 23 deletions

15
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,15 @@
# Contributing
Your contributions are always welcome!
## Guidelines
* Clone the web-scraping repo.
* Add section if needed.
* Add section description.
* Add section title to Table of contents.
* Search previous suggestions before making a new one, as yours may be a duplicate.
* Add your links: `* [project-name](http://example.com/) - A short description ends with a dot.` Do not use common words in description. Try to describe unique features of that library.
* Check your spelling and grammar.
* Make sure your text editor is set to remove trailing whitespace.
* Send a Pull Request.

View File

@ -3,3 +3,4 @@
html: html:
python -m markdown README.md > html/README.html python -m markdown README.md > html/README.html
python -m markdown python.md > html/python.html python -m markdown python.md > html/python.html
python -m markdown web_service.md > html/web_service.html

View File

@ -8,4 +8,9 @@ The list of tools, programming libraries and APIs used in web-scraping.
## Other ## Other
* [Python](http://github.com/lorien/web-scraping/blob/master/web_service.md) * [Web Services](http://github.com/lorien/web-scraping/blob/master/web_service.md)
## [Contributing](https://github.com/lorien/web-scraping/blob/master/CONTRIBUTING.md)
Make this list better! Your contributions are always welcome!

View File

@ -3,34 +3,34 @@
## Network Request ## Network Request
* [urllib](https://docs.python.org/3.4/library/urllib.html?highlight=urllib#module-urllib) - standard python network library * [urllib](https://docs.python.org/3.4/library/urllib.html?highlight=urllib#module-urllib) - standard python network library
* [requests](http://www.python-requests.org/) - network library * [requests](http://www.python-requests.org/) - network library
* [grab](http://github.com/lorien/grab) - network library (pycurl based) * [grab](http://docs.grablib.org/en/latest/) - network library (pycurl based)
* [pycurl](http://pycurl.sourceforge.net/) - network library (binding to [libcurl](http://curl.haxx.se/libcurl/)) * [pycurl](http://pycurl.sourceforge.net/) - network library (binding to [libcurl](http://curl.haxx.se/libcurl/))
* [urllib3](https://github.com/shazow/urllib3) - network library * [urllib3](https://github.com/shazow/urllib3) - network library
## Web-Scraping Frameworks ## Web-Scraping Frameworks
* [grab](http://github.com/lorien/grab) - web-scraping framework (pycurl/multicurl based) * [grab](http://docs.grablib.org/en/latest/#grab-spider-user-manual) - web-scraping framework (pycurl/multicurl based)
* [scrapy](http://scrapy.org/) - web-scraping framework (twisted based) * [scrapy](http://scrapy.org/) - web-scraping framework (twisted based). Does not support Python3.
## HTML/XML Parsing ## HTML/XML Parsing
* [lxml](http://lxml.de) - effective HTML/XML processing library. Supports XPATH. * [lxml](http://lxml.de) - effective HTML/XML processing library. Supports XPATH. Written in C.
* [cssselect](https://pythonhosted.org/cssselect) - quering DOM tree with CSS expressions * [cssselect](https://pythonhosted.org/cssselect) - working with DOM tree with CSS selectors
* [pyquery](http://pythonhosted.org//pyquery/) - парсинг XML/HTML с помощью jquery-запросов (требует lxml) * [pyquery](http://pythonhosted.org//pyquery/) - working with DOM tree with jQuery-like selectors
* [BeautifulSoup](http://www.crummy.com/software/BeautifulSoup/bs4/doc/) - глючная тормозная библиотека для парсинга XML/HTML, не поддерживающая xpath запросы, плюсом является то, что она написана на чистом питоне. * [BeautifulSoup](http://www.crummy.com/software/BeautifulSoup/bs4/doc/) - slow HTML/XMl processing library, written in pure python
* [WHATWG](http://html5lib.readthedocs.org/en/latest/]html5lib[/url] - парсинг и сериализация HTML по спецификации [url=http://www.whatwg.org/) (на неё ориентируются современные веб-браузеры). Возможно выбрать для построения DOM-дерева, как встроенные средства питона, так и библиотеки lxml или BeautifulSoup. * [html5lib](http://html5lib.readthedocs.org/en/latest/) - building DOM of HTML/XML парсинг according to [WHATWG spec](url=http://www.whatwg.org/). That spec is used in all modern browsers.
* [feedparser](http://pythonhosted.org/feedparser/) - парсинг RSS и ATOM фидов. * [feedparser](http://pythonhosted.org/feedparser/) - parsing of RSS/ATOM feeds.
* [Bleach](http://bleach.readthedocs.org/en/latest/) - библиотека для очистки HTML (требует html5lib) * [Bleach](http://bleach.readthedocs.org/en/latest/) - cleaning of HTML (requires html5lib)
## Эмуляторы браузеров ## Browser automation and emulation
* [selenium](http://selenium.googlecode.com/git/docs/api/py/api.html) - средство для тестирования веб-интерфейсов с помощью реальных браузеров: google chrome, opera, firefox, IE. Можно и сайты через него парсить. Есть некоторые неудобства, связанные с идеологией инструмента - он позволяет эмулировать внешние действия пользователя. Например, задать свой собственный Referer - это уже проблема. Не требует дополнительных зависимостей. * [selenium](http://selenium.googlecode.com/git/docs/api/py/api.html) - automating real browsers (Chrome, Firefox, Opera, IE)
* [Ghost.py](http://carrerasrodrigo.github.io/Ghost.py/) - обёртка над QtWebKit (требует PyQt или PySide) * [Ghost.py](http://carrerasrodrigo.github.io/Ghost.py/) - wrapper of QtWebKit (requires PyQT)
* [Spynner](https://github.com/makinacorpus/spynner) - ещё одна обёртка над QtWebKit, более ничего не знаю про эту либу :) * [Spynner](https://github.com/makinacorpus/spynner) - wrapper of QtWebKit QtWebKit (requires PyQT)
## Параллельная многозадачность ## Multiprocessing
* [threading](http://docs.python.org/2.7/library/threading.html) - встроенный в python модуль для реализации многозадачности с помощью тредов (объекты языка, выполняющиеся в одном процессе). Минусы подхода в том, что вы не можете загрузить вычислениями более одного ядра. * [threading](http://docs.python.org/2.7/library/threading.html) - standard python library to run threads. Effective for I/O-bound tasks. Useless for CPU-bound tasks because of python GIL.
* [multiprocessing](http://docs.python.org/2.7/library/multiprocessing.html) - встроенный в python модуль для реализации многозадачности с помощью процессов * [multiprocessing](http://docs.python.org/2.7/library/multiprocessing.html) - standard python library to run processes.
* [celery](http://celery.readthedocs.org/en/latest/index.html) - навороченная реализация очереди задач, поддерживающая различные бэкенды для хранения этой самой очереди задач. * [celery](http://celery.readthedocs.org/en/latest/index.html) - task queue manager
* [RQ](http://python-rq.org/docs/) - легковесная очередь задач, использующая redis * [RQ](http://python-rq.org/docs/) - lightweight task queue manager based on redis
## Облачные вычислениях ## Cloud Computing
* [picloud](http://docs.picloud.com/) - выполнение python-кода в облаке * [picloud](http://docs.picloud.com/) - executing python-code in cloud
* [dominoup.com](http://www.dominoup.com/) - выполнение R, Python и matlab кода в облаке * [dominoup.com](http://www.dominoup.com/) - executing R, Python и matlab code in cloud

3
web_service.md Normal file
View File

@ -0,0 +1,3 @@
# Web-scraping Web Services
* [import.io](https://import.io/) - bla bla bla