This book covers the long awaited Scrapy v 1.0 that empowers you to extract useful data from virtually any source with very little effort. It starts off by explaining the fundamentals of Scrapy framework, followed by a thorough description of how to extract data from any source, clean it up, shape it as per your requirement using Python and 3rd party APIs. Next you will be familiarised with the process of storing the scrapped data in databases as well as search engines and performing real time analytics on them with Spark Streaming. By the end of this book, you will perfect the art of scraping data for your applications with ease.
This book is now available on Amazon and Packt.
A docker-compose.yml
file is included, mainly for those who already have Docker installed. For completeness, here are the links to go about installing Docker.
sudo groupadd docker
sudo usermod -aG docker $USER
Once you have Docker installed and started, change to the project directory and run:
docker-compose pull
- To check for updated imagesdocker-compose up
- Will scroll log messages as various containers (virtual machines) start up. To stop the containers, Ctrl-C in this window, or enter docker-compose down
in another shell window.docker system prune
will delete the system-wide Docker images, containers, and volumes that are not in use when you want to recover space.
See also the official website