Skip to main content

A description of your project

Project description

villaInventorySdk

read and write inventory in real time

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 5.63 ms, sys: 103 µs, total: 5.73 ms
Wall time: 5.38 ms

Update inventory

%%time
sdk.updateWithS3( sampleInput )
CPU times: user 13 ms, sys: 8.05 ms, total: 21.1 ms
Wall time: 130 ms





{'body': 'true', 'statusCode': 200, 'header': {}}

Query single product

%%time
sdk.querySingleProduct('0000002')
CPU times: user 13.7 ms, sys: 0 ns, total: 13.7 ms
Wall time: 64.3 ms





{'body': '{"ib_prcode":"0000002","1000":{"ib_cf_qty":35,"new_ib_bs_stock_cv":33,"lastUpdate":1600567810.529301},"1001":{"ib_cf_qty":32,"new_ib_bs_stock_cv":30,"lastUpdate":1600567810.529316},"1002":{"ib_cf_qty":34,"new_ib_bs_stock_cv":30,"lastUpdate":1600567810.529318},"lastUpdate":1600567810.529318}',
 'statusCode': 200,
 'header': {}}

Query Branch

result = sdk.queryBranch('1000')
#showing the first 2 result
list(iter(result.items()))[:2]
---------------------------------------------------------------------------

AttributeError                            Traceback (most recent call last)

<ipython-input-30-c8acf849e3da> in <module>
----> 1 result = sdk.queryBranch('1000')
      2 #showing the first 2 result
      3 list(iter(result.items()))[:2]


AttributeError: 'InventorySdk' object has no attribute 'queryBranch'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

villaInventorySdk-0.0.11.tar.gz (12.8 kB view hashes)

Uploaded Source

Built Distribution

villaInventorySdk-0.0.11-py3-none-any.whl (10.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page