From f08f98c5b89a6e232592f69a7b32418b3fd96e58 Mon Sep 17 00:00:00 2001 From: Kyle Anderson Date: Sat, 31 Oct 2015 17:24:57 -0700 Subject: [PATCH] Added readme, gitignore, and requirements --- .gitignore | 62 ++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 10 ++++++++ requirements.txt | 3 +++ 3 files changed, 75 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c9e6b29 --- /dev/null +++ b/.gitignore @@ -0,0 +1,62 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Site-specific ignores +result/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..0d56ec7 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# newgg storage scaper + +Scrapes [Newegg](http://www.newegg.com/) and sorts storage product by +price-per-gigabyte. Hosted [here](http://forre.st/storage). + +## Requirements + +* gnuplot-x11 / gnuplot-py +* numpy +* BeautifulSoup diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..13dd649 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +numpy +http://prdownloads.sourceforge.net/gnuplot-py/gnuplot-py-1.8.tar.gz?download +BeautifulSoup