Welcome to pocdb-py¶
A Python 3 client for the POCdb Platform.
Installation¶
pip install pocdb-py
Note: Requires Python 3.5.2 or higher due to reliance on Python’s typing module.
Getting Started¶
Start by creating an API object. This API represents the POCdb API endpoint.
from pocdb.models.api import API
api = API(email=email, password=password)
regions = ['region1', 'region2']
products = ['product1', 'product2']
pocs = api.pocs_by_product(products, regions) #pocs by product and regions
pocs = api.pocs(regions) #poc by regions