A command line tool for Slickdeals
- requests
- beautifulsoup
pip install slickdeals
python setup.py install
slickdeals [option]
-f --free
: show items free or ship free on frontpage-F --FREE
: show items which are free on frontpage-n NUM
: limit the number of results-s 'search string'
: search item, quotation marks are required especially when your search string contains space
- show first 10 free items on frontpage:
slickdeals -F -n 10
- search amazon xbox deals:
slickdeals -s 'amazon xbox'
- search free amazon deals, show 10 results:
slickdeals.py -s 'amazon' -f -n 10