Labelbox is the enterprise-grade training data solution with fast AI enabled labeling tools, labeling automation, human workforce, data management, a powerful API for integration & SDK for extensibility. Visit http://labelbox.com/ for more information.
The Labelbox Python API offers a simple, user-friendly way to interact with the Labelbox back-end.
- Use Python 3.6 or 3.7.
- Create an account by visiting http://app.labelbox.com/.
- Generate an API key.
- Install using Python's Pip manager.
pip install labelbox - Pass your API key as an environment variable. Then, import and initialize the API Client.
user@machine:~$ export LABELBOX_API_KEY="<your api key here>" user@machine:~$ python3 from labelbox import Client client = Client() Visit our docs to learn how to create a project, read through some helpful user guides, and view our API reference.