Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 1.1 KB

README.rst

File metadata and controls

50 lines (30 loc) · 1.1 KB

Seed Pricing Scraper

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.txt

Then build the docs:

cd docs/
make html
firefox _build/html/index.html

You can also build a PDF of the documentation by running make latexpdf instead.