Web scrapping API for selected stores
Project description
StoreScrapper provides a convenient API to obtain product information from a variety of stores. Typical usage of the library is as follows:
#!/usr/bin/env python from storescrapper.stores import Sym for product in Sym.products(): print product
Features
Obtain name, URL and price for many of the stores in the market in a straighforward way.
Obtain only the types of products you need.
Easily extensible with new stores and product types that plug-in into the existing framework.
Leverage the power of asynchronous tasks using Celery to speed-up the scrapping process ten-fold.
Never used Celery before? You can get up and running in minutes.
Installation
The easiest way to install storescrapper is using pip:
pip install storescrapper
Otherwise you can download the tar.gz source, extract its contents and install the library directly. But first let’s make sure everything works as expected:
python setup.py test
Don’t worry if you get a TypeError exception at the end, just make sure all the tests pass.
After that build and install the library (you may need superuser privileges for the second command):
python setup.py build python setup.py install
Using StoreScrapper in Linux
Install the RabbitMQ server with your distribution package manager (Fedora yum in this case):
sudo yum install rabbitmq-server
Note for Ubuntu users: The RabbitMQ server included with the distribution is extremely dated and incompatible, with the current version of celery / kombu. Install RabbitMQ from another source.
Install the StoreScrapper package:
sudo pip install storescrapper
In an empty directory, create a celeryconfig.py file with the following contents:
BROKER_URL = 'amqp://guest:guest@localhost/' CELERY_RESULT_BACKEND = 'amqp' CELERY_IMPORTS = [ 'storescrapper.store' ] CELERYD_CONCURRENCY = 20 CELERY_TASK_PUBLISH_RETRY = True
Open three terminals at the same time on this directory. On the first one execute:
sudo rabbitmq-server
On the second one execute:
celeryd -l info
On the third one open a Python shell and write the following commands to print the products from Sym:
from storescrapper.stores import Sym for product in Sym.products(): print product
In one or two minutes this will return all of the products in the store with the current products types. You can check the progress on the shell that is running celeryd.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file storescrapper-0.2.5.tar.gz
.
File metadata
- Download URL: storescrapper-0.2.5.tar.gz
- Upload date:
- Size: 29.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11142bb07b8d3b77af60ce03f3e0c09b047f66894345e8bc4542df43a9dfbb35 |
|
MD5 | f147440a3c472ec4d1606d7cd69a24e3 |
|
BLAKE2b-256 | d1bce978ecfcd3273724a0600c6643a9583b5cbcdbd52e4870f91e657691d365 |