Skip to content

Commit

Permalink
Adjust the sdk in apiv4 to replace the text description at apikey
Browse files Browse the repository at this point in the history
  • Loading branch information
liaohanfei committed Feb 4, 2024
1 parent 10d2a17 commit 2818507
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ $ pip install trackingmore-sdk-python.zip
```python
import trackingmore

trackingmore.api_key = 'you api key'
trackingmore.api_key = 'your api key'

try:
couriers = trackingmore.courier.get_all_couriers()
Expand Down Expand Up @@ -89,7 +89,7 @@ except trackingmore.exception.TrackingMoreException as ce:
```python
import trackingmore

trackingmore.api_key = 'you api key'
trackingmore.api_key = 'your api key'

try:
params = {'tracking_number': ''}
Expand Down
2 changes: 1 addition & 1 deletion example/air_waybill_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import trackingmore

trackingmore.api_key = 'you api key'
trackingmore.api_key = 'your api key'

def create_an_air_waybill(params):
try:
Expand Down
2 changes: 1 addition & 1 deletion example/courier_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import trackingmore

trackingmore.api_key = 'you api key'
trackingmore.api_key = 'your api key'

def get_all_couriers():
try:
Expand Down
2 changes: 1 addition & 1 deletion example/tracking_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import trackingmore

trackingmore.api_key = 'you api key'
trackingmore.api_key = 'your api key'

def create_tracking(params):
try:
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import trackingmore

trackingmore.api_key = 'you api key'
trackingmore.api_key = 'your api key'

0 comments on commit 2818507

Please sign in to comment.