├── .gitignore ├── .hgflow ├── .hooks └── precommit.sh ├── CHANGES.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright └── rules ├── setup.cfg ├── setup.py ├── sword2 ├── __init__.py ├── atom_objects.py ├── auto_discovery.py ├── collection.py ├── connection.py ├── deposit_receipt.py ├── error_document.py ├── exceptions.py ├── http_layer.py ├── implementation_info.py ├── server_errors.py ├── service_document.py ├── statement.py ├── sword2_logging.py ├── transaction_history.py └── utils.py ├── tests ├── README ├── databank │ ├── __init__.py │ ├── example.zip │ ├── test_databank.py │ └── test_scale.py ├── functional │ ├── __init__.py │ ├── test_connection.py │ ├── test_deposit_receipt.py │ ├── test_entry.py │ ├── test_error_document.py │ ├── test_service_document.py │ └── test_statement.py ├── http │ ├── __init__.py │ └── test_sss.py ├── pylons │ ├── __init__.py │ └── test_pylons.py ├── spec │ ├── __init__.py │ ├── example.zip │ └── test_spec.py └── urllib2tests │ ├── __init__.py │ ├── example.zip │ └── test_urllib2.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/.hgflow -------------------------------------------------------------------------------- /.hooks/precommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/.hooks/precommit.sh -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/debian/rules -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/setup.py -------------------------------------------------------------------------------- /sword2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/__init__.py -------------------------------------------------------------------------------- /sword2/atom_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/atom_objects.py -------------------------------------------------------------------------------- /sword2/auto_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/auto_discovery.py -------------------------------------------------------------------------------- /sword2/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/collection.py -------------------------------------------------------------------------------- /sword2/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/connection.py -------------------------------------------------------------------------------- /sword2/deposit_receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/deposit_receipt.py -------------------------------------------------------------------------------- /sword2/error_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/error_document.py -------------------------------------------------------------------------------- /sword2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/exceptions.py -------------------------------------------------------------------------------- /sword2/http_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/http_layer.py -------------------------------------------------------------------------------- /sword2/implementation_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/implementation_info.py -------------------------------------------------------------------------------- /sword2/server_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/server_errors.py -------------------------------------------------------------------------------- /sword2/service_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/service_document.py -------------------------------------------------------------------------------- /sword2/statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/statement.py -------------------------------------------------------------------------------- /sword2/sword2_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/sword2_logging.py -------------------------------------------------------------------------------- /sword2/transaction_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/transaction_history.py -------------------------------------------------------------------------------- /sword2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/sword2/utils.py -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/README -------------------------------------------------------------------------------- /tests/databank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/databank/__init__.py -------------------------------------------------------------------------------- /tests/databank/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/databank/example.zip -------------------------------------------------------------------------------- /tests/databank/test_databank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/databank/test_databank.py -------------------------------------------------------------------------------- /tests/databank/test_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/databank/test_scale.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/functional/__init__.py -------------------------------------------------------------------------------- /tests/functional/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/functional/test_connection.py -------------------------------------------------------------------------------- /tests/functional/test_deposit_receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/functional/test_deposit_receipt.py -------------------------------------------------------------------------------- /tests/functional/test_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/functional/test_entry.py -------------------------------------------------------------------------------- /tests/functional/test_error_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/functional/test_error_document.py -------------------------------------------------------------------------------- /tests/functional/test_service_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/functional/test_service_document.py -------------------------------------------------------------------------------- /tests/functional/test_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/functional/test_statement.py -------------------------------------------------------------------------------- /tests/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/http/__init__.py -------------------------------------------------------------------------------- /tests/http/test_sss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/http/test_sss.py -------------------------------------------------------------------------------- /tests/pylons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/pylons/__init__.py -------------------------------------------------------------------------------- /tests/pylons/test_pylons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/pylons/test_pylons.py -------------------------------------------------------------------------------- /tests/spec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/spec/__init__.py -------------------------------------------------------------------------------- /tests/spec/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/spec/example.zip -------------------------------------------------------------------------------- /tests/spec/test_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/spec/test_spec.py -------------------------------------------------------------------------------- /tests/urllib2tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/urllib2tests/__init__.py -------------------------------------------------------------------------------- /tests/urllib2tests/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/urllib2tests/example.zip -------------------------------------------------------------------------------- /tests/urllib2tests/test_urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tests/urllib2tests/test_urllib2.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordapp/python-client-sword2/HEAD/tox.ini --------------------------------------------------------------------------------