This is the source code for the Savanna Python Software Development Kit (SDK).
The core of this SDK is a basic API connection call to the Zebra Savanna Data Services in the SavannaAPI class. Currently the API has public methods for the three public APIs that are part of the Barcode Intelligence product. These APIs are:
- Barcode Generate
- UPC Lookup
- FDA Recall
This SDK also has models for all the data sent and received by these APIs in order to make it easier to work with them.
To get an API key to work with these APIs, use the Getting Started Guide and select the Barcode Intelligence product.
For more information on these APIs, go to developer.zebra.com/apis or visit the Forums
Set Zebra Savanna API key
SavannaAPI.APIKey = "..."
Create Barcode
fileBytes = CreateBarcode.create_symbology_text(symbology, barcodeText.Text)
UPC Lookup
upcLookupJson = UPCLookup.lookup(barcode)
FDA Food Recall
foodUpcJson = FDARecall.foodUpc(barcode)
FDA Drug Recall
drugUpcJson = FDARecall.drugUpc(barcode)
FDA Device Recall Search
deviceSearchJson = FDARecall.deviceSearch(searchText.Text)
FDA Drug Recall Search
drugSearchJson = FDARecall.drugSearch(searchText.Text)