Basic API Call complete with exceptions/tests

This commit is contained in:
2022-05-16 10:46:34 +12:00
parent eaf59856d3
commit 631241bafb
14 changed files with 628 additions and 2 deletions

7
scratch.py Normal file
View File

@@ -0,0 +1,7 @@
def MergeDict(dict1, dict2):
dict2.update(dict1)
return dict2
dict1 = {'company_id': 1}
dict2 = {'page':1, 'limit': 25}