├── .gitignore ├── .tool-versions ├── .travis.yml ├── LICENCE.txt ├── README.md ├── __init__.py ├── coverage.svg ├── pyshipstationlogo.svg ├── setup.cfg ├── setup.py ├── shipstation ├── __init__.py ├── api.py ├── constants.py └── models.py ├── tests ├── test_customs_item.py ├── test_international_options.py └── test_order_fetch.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | python 3.7.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/coverage.svg -------------------------------------------------------------------------------- /pyshipstationlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/pyshipstationlogo.svg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/setup.py -------------------------------------------------------------------------------- /shipstation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shipstation/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/shipstation/api.py -------------------------------------------------------------------------------- /shipstation/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/shipstation/constants.py -------------------------------------------------------------------------------- /shipstation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/shipstation/models.py -------------------------------------------------------------------------------- /tests/test_customs_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/tests/test_customs_item.py -------------------------------------------------------------------------------- /tests/test_international_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/tests/test_international_options.py -------------------------------------------------------------------------------- /tests/test_order_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/tests/test_order_fetch.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natecox/pyshipstation/HEAD/tox.ini --------------------------------------------------------------------------------