Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b8b3b1b
Inital commit - basics of shipping api
scottkeenantsg Apr 5, 2019
dc4ddaf
Basic all calls for shipping API
scottkeenantsg Apr 5, 2019
7db85c0
Shipping entities easier to update, implemented account functions
scottkeenantsg Apr 8, 2019
e4c3039
Addressing api
scottkeenantsg Apr 8, 2019
39e5168
Tracking API
scottkeenantsg Apr 8, 2019
5fff810
Shipment date type
scottkeenantsg Apr 9, 2019
f5c4103
Labels api
scottkeenantsg Apr 9, 2019
d081e34
Import tidy
scottkeenantsg Apr 9, 2019
f91950f
Return sdk objects from accounts and addressing calls
scottkeenantsg Apr 10, 2019
c5dd1a3
WIP on shipment return objects
scottkeenantsg Apr 10, 2019
5ec9e33
non-pdf return objects
scottkeenantsg Apr 11, 2019
109d852
PDF client refactor wip
scottkeenantsg Apr 12, 2019
d07022d
Saved some lines, moved pdf client, added exceptions
scottkeenantsg Apr 15, 2019
657ed84
Added GetServices to account
scottkeenantsg Apr 15, 2019
b1346e7
Documentation
scottkeenantsg Apr 16, 2019
1ac9779
PaymentMethods
Apr 18, 2019
1d7f282
Auto topup
Apr 18, 2019
891ea3a
Docstrings, directories renamed
Apr 18, 2019
7b2394c
DRY refactor for to_soap_object(), renamed pdf client to documents, w…
Apr 24, 2019
3b4e04d
Restructure
Apr 25, 2019
ee1c961
Moved entities into single file
Apr 25, 2019
e50718a
Fixed sdk imports
Apr 26, 2019
57f8c78
More entity refactors
Apr 26, 2019
d27c06e
.gitignore
Apr 26, 2019
2fcff60
Removed dev tests
Apr 26, 2019
1cc9510
Handling of address id in a sender
Apr 26, 2019
3e9d909
Pylint changes
Apr 29, 2019
68d9eb6
Pylint changes
Apr 29, 2019
5febbda
Pylint changes
Apr 29, 2019
d6cc4e9
Pylint changes
Apr 29, 2019
9c27b52
Example usage files
Apr 30, 2019
eee78f2
Fixes from testing
May 2, 2019
a7bf567
setup chnages
May 2, 2019
96e8059
Removed empty __init__.py
Jul 3, 2019
892b815
Minimum version number
Jul 3, 2019
5075577
Book/print shipments, print collection labels and manifests
Jul 3, 2019
80dbaee
License
Jul 4, 2019
4355fc7
setup.py using implicit package names
Jul 4, 2019
11a1e1a
Document printing from collections and shipments
Jul 8, 2019
3567da3
renamed labels and documentsmethods.
Jul 8, 2019
c4d2a3b
Demo credentials in example
Jul 8, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# Add any directories, files, or patterns you don't want to be tracked by version control
# Compiled python modules.
*.pyc
.idea

# Setuptools distribution folder.
/dist/

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info

.idea
*.ipynb*
*.pdf
venv/
/tests/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 The SaleGroup Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Despatch Bay Python SDK
Loading