├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── bumpversion.sh ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── rinse.client.rst ├── rinse.message.rst ├── rinse.response.rst ├── rinse.rst ├── rinse.util.rst ├── rinse.wsa.rst ├── rinse.wsdl.rst ├── rinse.wsse.rst └── rinse.xsd.rst ├── requirements.txt ├── rinse ├── __init__.py ├── client.py ├── message.py ├── res │ ├── soap-1.1.xsd │ ├── soap-1.1_envelope.xsd │ └── soap-1.2.xsd ├── response.py ├── tests │ ├── __init__.py │ ├── test_client.py │ └── utils.py ├── util.py ├── wsa.py ├── wsdl.py ├── wsse.py └── xsd.py ├── setup.cfg ├── setup.py ├── test-requirements.txt └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/README.rst -------------------------------------------------------------------------------- /bumpversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/bumpversion.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/rinse.client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.client.rst -------------------------------------------------------------------------------- /docs/rinse.message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.message.rst -------------------------------------------------------------------------------- /docs/rinse.response.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.response.rst -------------------------------------------------------------------------------- /docs/rinse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.rst -------------------------------------------------------------------------------- /docs/rinse.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.util.rst -------------------------------------------------------------------------------- /docs/rinse.wsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.wsa.rst -------------------------------------------------------------------------------- /docs/rinse.wsdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.wsdl.rst -------------------------------------------------------------------------------- /docs/rinse.wsse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.wsse.rst -------------------------------------------------------------------------------- /docs/rinse.xsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/docs/rinse.xsd.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/requirements.txt -------------------------------------------------------------------------------- /rinse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/__init__.py -------------------------------------------------------------------------------- /rinse/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/client.py -------------------------------------------------------------------------------- /rinse/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/message.py -------------------------------------------------------------------------------- /rinse/res/soap-1.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/res/soap-1.1.xsd -------------------------------------------------------------------------------- /rinse/res/soap-1.1_envelope.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/res/soap-1.1_envelope.xsd -------------------------------------------------------------------------------- /rinse/res/soap-1.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/res/soap-1.2.xsd -------------------------------------------------------------------------------- /rinse/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/response.py -------------------------------------------------------------------------------- /rinse/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/tests/__init__.py -------------------------------------------------------------------------------- /rinse/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/tests/test_client.py -------------------------------------------------------------------------------- /rinse/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/tests/utils.py -------------------------------------------------------------------------------- /rinse/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/util.py -------------------------------------------------------------------------------- /rinse/wsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/wsa.py -------------------------------------------------------------------------------- /rinse/wsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/wsdl.py -------------------------------------------------------------------------------- /rinse/wsse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/wsse.py -------------------------------------------------------------------------------- /rinse/xsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/rinse/xsd.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | mock 3 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonclugg/rinse/HEAD/tox.ini --------------------------------------------------------------------------------