├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── create_default_db └── run.py ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── posh ├── __init__.py ├── account.py ├── cli.py ├── posh.py ├── product.py └── product_search.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── test_account.py ├── test_db.py ├── test_product.py └── test_search.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/README.rst -------------------------------------------------------------------------------- /create_default_db/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/create_default_db/run.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /posh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/posh/__init__.py -------------------------------------------------------------------------------- /posh/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/posh/account.py -------------------------------------------------------------------------------- /posh/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/posh/cli.py -------------------------------------------------------------------------------- /posh/posh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/posh/posh.py -------------------------------------------------------------------------------- /posh/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/posh/product.py -------------------------------------------------------------------------------- /posh/product_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/posh/product_search.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/tests/test_account.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/tests/test_product.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/tests/test_search.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcinnick/posh/HEAD/tox.ini --------------------------------------------------------------------------------