villa members and wallet database interaction code
Project description
villaInventorySdk
Install
pip install villaInventorySdk
How to use
Uploading a large amount of data
sample input
sampleInput = [
{'ib_brcode': '1023', 'ib_cf_qty': '835', 'ib_prcode': '84621', 'new_ib_vs_stock_cv': '839'},
{'ib_brcode': '1022', 'ib_cf_qty': '24', 'ib_prcode': '12424', 'new_ib_vs_stock_cv': '21'}
]
Upload data
init sdk
%%time
sdk = InventorySdk(user=USER, pw=PW, branchName = branch)
CPU times: user 36.6 ms, sys: 4.73 ms, total: 41.3 ms
Wall time: 1.05 s
Update inventory
%%time
sdk.updateWithS3( sampleInput )
CPU times: user 53.4 ms, sys: 2.56 ms, total: 55.9 ms
Wall time: 322 ms
{'body': 'true', 'statusCode': 200, 'header': {}}
Query single product
%%time
sdk.querySingleProduct('0000002')
CPU times: user 6.71 ms, sys: 7.73 ms, total: 14.4 ms
Wall time: 83.5 ms
{'ib_prcode': '0000002',
'1000': {'ib_cf_qty': 35,
'new_ib_bs_stock_cv': 33,
'lastUpdate': 1600567810.529301,
'ib_prcode': '0000002',
'ib_brcode': '1000'},
'1001': {'ib_cf_qty': 32,
'new_ib_bs_stock_cv': 30,
'lastUpdate': 1600567810.529316,
'ib_prcode': '0000002',
'ib_brcode': '1001'},
'1002': {'ib_cf_qty': 34,
'new_ib_bs_stock_cv': 30,
'lastUpdate': 1600567810.529318,
'ib_prcode': '0000002',
'ib_brcode': '1002'},
'lastUpdate': 1600567810.529318}
Query Branch
%%time
result = sdk.queryBranch('1000')
#showing the first 2 result
list(iter(result.items()))[:2]
CPU times: user 360 ms, sys: 28.1 ms, total: 388 ms
Wall time: 600 ms
[('0000009',
{'ib_cf_qty': 50,
'new_ib_bs_stock_cv': 27,
'lastUpdate': 1602338504.869655,
'ib_prcode': '0000009',
'ib_brcode': '1000'}),
('0000002',
{'ib_cf_qty': 35,
'new_ib_bs_stock_cv': 33,
'lastUpdate': 1600567810.529301,
'ib_prcode': '0000002',
'ib_brcode': '1000'})]
Query All
%%time
result = sdk.queryAll()
list(iter(result.items()))[:2]
CPU times: user 2.34 s, sys: 90.4 ms, total: 2.43 s
Wall time: 2.77 s
[('0000009',
{'ib_prcode': '0000009',
'1000': {'ib_cf_qty': 50,
'new_ib_bs_stock_cv': 27,
'lastUpdate': 1602338504.869655,
'ib_prcode': '0000009',
'ib_brcode': '1000'},
'lastUpdate': 1602338504.869655}),
('0000002',
{'ib_prcode': '0000002',
'1000': {'ib_cf_qty': 35,
'new_ib_bs_stock_cv': 33,
'lastUpdate': 1600567810.529301,
'ib_prcode': '0000002',
'ib_brcode': '1000'},
'1001': {'ib_cf_qty': 32,
'new_ib_bs_stock_cv': 30,
'lastUpdate': 1600567810.529316,
'ib_prcode': '0000002',
'ib_brcode': '1001'},
'1002': {'ib_cf_qty': 34,
'new_ib_bs_stock_cv': 30,
'lastUpdate': 1600567810.529318,
'ib_prcode': '0000002',
'ib_brcode': '1002'},
'lastUpdate': 1600567810.529318})]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
villaWalletDatabase-0.0.2.tar.gz
(14.5 kB
view details)
Built Distribution
File details
Details for the file villaWalletDatabase-0.0.2.tar.gz
.
File metadata
- Download URL: villaWalletDatabase-0.0.2.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | daa2a126ecca996e868c89c386277458855dfb8bf054ea43087e9d4553b60145 |
|
MD5 | 4c07241df0d94d19968f3fa53791b7c7 |
|
BLAKE2b-256 | 70339486204828409acf9a46549c0ccd1e1f4fa6f78cd1a09e5f9eb3413d47e2 |
File details
Details for the file villaWalletDatabase-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: villaWalletDatabase-0.0.2-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9651d234a2d01f9deaccb517735ee012d35a96c570cb949888757a3dbbceec3 |
|
MD5 | 9d4a22712f60aa2148a704942bc7dc5a |
|
BLAKE2b-256 | 2b72808cc4df6c65233c03ac4a93e10b268a50706153d9054b6ec2c6179bc8bc |