Posts

Showing posts from January, 2018

[Programming] How to setup Scrapy on Centos 7

Scarpy is An open source and collaborative framework for extracting the data you need from websites. In a fast, simple, yet extensible way. This tut which I'll guide to install Scrapy on Centos 7: - Step 1: Install dependences for Scrapy sudo yum install python-devel libxml2-devel libxslt-devel pyOpenSSL - Step 2: Setup Scrapy via Pip sudo pip install Scrapy --Done--