Skip to content

Commit

Permalink
Added readme, gitignore, and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
solarkennedy committed Nov 1, 2015
1 parent f5d5829 commit f08f98c
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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/
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
numpy
http://prdownloads.sourceforge.net/gnuplot-py/gnuplot-py-1.8.tar.gz?download
BeautifulSoup

0 comments on commit f08f98c

Please sign in to comment.