├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── content └── featured.gif ├── lazboy ├── __init__.py ├── __init__.pyc └── __main__.py ├── requirements.txt └── setup.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madan96/La-Z-Boy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madan96/La-Z-Boy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madan96/La-Z-Boy/HEAD/README.md -------------------------------------------------------------------------------- /content/featured.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madan96/La-Z-Boy/HEAD/content/featured.gif -------------------------------------------------------------------------------- /lazboy/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lazboy/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madan96/La-Z-Boy/HEAD/lazboy/__init__.pyc -------------------------------------------------------------------------------- /lazboy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madan96/La-Z-Boy/HEAD/lazboy/__main__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | BeautifulSoup4 2 | mechanize 3 | tabulate 4 | fpdf 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madan96/La-Z-Boy/HEAD/setup.py --------------------------------------------------------------------------------