Web app for Scrapyd cluster management, Scrapy log analysis & visualization, Auto packaging, Timer tasks, Monitor & Alert, and Mobile UI. DEMO :point_right:
๐ค English | ๐ ็ฎไฝไธญๆ
๐ How to efficiently manage your distributed web scraping projects
๐ How to set up Scrapyd cluster on Heroku
๐ Scrapyd Cluster Management
๐ Scrapy Log Analysis
๐ Enhancements
โ Make sure that ๐ Scrapyd has been installed and started on all of your hosts.
โผ๏ธ Note that for remote access, you have to manually set โbind_address = 0.0.0.0โ in ๐ the configuration file of Scrapyd
and restart Scrapyd to make it visible externally.
pip install scrapydweb
โ Note that you may need to execute python -m pip install --upgrade pip
first in order to get the latest version of scrapydweb, or download the tar.gz file from https://pypi.org/project/scrapydweb/#files and get it installed via pip install scrapydweb-x.x.x.tar.gz
pip install --upgrade git+https://github.com/my8100/scrapydweb.git
Or:
git clone https://github.com/my8100/scrapydweb.git
cd scrapydweb
python setup.py install
scrapydweb
. (a config file would be generated for customizing settings at the first startup.)The latest version of Google Chrome, Firefox, and Safari.
$ git clone https://github.com/my8100/scrapydweb.git
$ cd scrapydweb
# To create isolated Python environments
$ pip install virtualenv
$ virtualenv venv/scrapydweb
# Or specify your Python interpreter: $ virtualenv -p /usr/local/bin/python3.7 venv/scrapydweb
$ source venv/scrapydweb/bin/activate
# Install dependent libraries
(scrapydweb) $ python setup.py install
(scrapydweb) $ pip install pytest
(scrapydweb) $ pip install coverage
# Make sure Scrapyd has been installed and started, then update the custom_settings item in tests/conftest.py
(scrapydweb) $ vi tests/conftest.py
(scrapydweb) $ curl http://127.0.0.1:6800
# '-x': stop on first failure
(scrapydweb) $ coverage run --source=scrapydweb -m pytest tests/test_a_factory.py -s -vv -x
(scrapydweb) $ coverage run --source=scrapydweb -m pytest tests -s -vv --disable-warnings
(scrapydweb) $ coverage report
# To create an HTML report, check out htmlcov/index.html
(scrapydweb) $ coverage html
Detailed changes for each release are documented in the ๐ HISTORY.md.
my8100 |
---|
Kaisla |
---|
This project is licensed under the GNU General Public License v3.0 - see the ๐ LICENSE file for details.