Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 511 Bytes

README.rst

File metadata and controls

19 lines (13 loc) · 511 Bytes

Fishbowl API

A Python wrapper for the Fishbowl Inventory API.

Currently supports add inventory request, cycle inventory count:

add_inventory(part_number, quantity, UOM_ID, cost, location_tag_num)
cycle_inventory(part_number, new_qty, location_id)

Example usage:

from fishbowl.api import Fishbowl

fishbowl_api = Fishbowl()
fishbowl_api.connect(username='admin', password='admin', host='10.0.2.2')
fishbowl_api.add_inventory('B500', 5, 1, 50.00, 386)
fishbowl_api.close()