https://github.com/prikhi/seed-pricing-scraper
Scrapes Price Information From Various Seed Companies
https://github.com/prikhi/seed-pricing-scraper
prices scraper seeds web
Last synced: 3 months ago
JSON representation
Scrapes Price Information From Various Seed Companies
- Host: GitHub
- URL: https://github.com/prikhi/seed-pricing-scraper
- Owner: prikhi
- License: gpl-3.0
- Created: 2017-08-26T00:15:31.000Z (almost 8 years ago)
- Default Branch: develop
- Last Pushed: 2017-08-26T00:41:17.000Z (almost 8 years ago)
- Last Synced: 2025-01-17T01:36:22.448Z (5 months ago)
- Topics: prices, scraper, seeds, web
- Language: Python
- Homepage: http://seed-pricing-scraper.rtfd.org
- Size: 93.8 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
- License: COPYING.txt
Awesome Lists containing this project
README
====================
Seed Pricing Scraper
====================.. image:: https://readthedocs.org/projects/seed-pricing-scraper/badge/?version=latest
:target: http://seed-pricing-scraper.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
This scrapes various seed company websites for product information & prices.
It uses Python 3, along with Sphinx for documentation & Nose for testing.
Quickstart
==========Change into the ``pricescraper`` directory::
cd pricescraper
Stick a CSV named ``input.csv`` containing your Product's SKU, Name, Category,
& Organic Status into the directory::mv ~/input.csv .
Run the scraper::
python price_scraper.py
Building the Docs
=================You can install the required dependencies using ``pip``, it's recommended to do
this in a virtual environment::python -m venv Env
source Env/bin/activate
pip install -r requirements/develop.txtThen build the docs::
cd docs/
make html
firefox _build/html/index.htmlYou can also build a PDF of the documentation by running ``make latexpdf``
instead.