Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 033eacf

Browse files
Create README.md
1 parent c17dd8e commit 033eacf

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Labelbox Connector for Pandas
2+
3+
Access the Labelbox Connector for Pandas, an open-source Python API that handles CSVs and Dataframes very well
4+
- `labelpandas.client.create_data_rows_from_table` : Creates Labelbox data rows (and metadata) given a Pandas table
5+
- `labelpandas.client.create_table_from_dataset` : Creates a Pandas table given a Labelbox dataset (coming soon)
6+
- `labelpandas.client.upsert_table_metadata` : Updates Pandas table metadata columns given a Labelbox dataset (coming soon)
7+
- `labelpandas.client.upsert_labelbox_metadata` : Updates Labelbox metadata given a Pandas table (coming soon)
8+
9+
The Demo code supplied in this Github is designed to run in a Google Colab, but the code can be adapted to any notebook environment.
10+
11+
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 [Labelbox](http://labelbox.com/) for more information.
12+
13+
This library is currently in beta. It may contain errors or inaccuracies and may not function as well as commercially released software. Please report any issues/bugs via [Github Issues](https://github.com/Labelbox/labelpandas/issues).
14+
15+
16+
## Table of Contents
17+
18+
* [Requirements](#requirements)
19+
* [Configuration](#configuration)
20+
* [Use](#Use)
21+
22+
## Requirements
23+
24+
* [Labelbox account](http://app.labelbox.com/)
25+
* [Generate a Labelbox API key](https://labelbox.com/docs/api/getting-started#create_api_key)
26+
27+
## Configuration
28+
29+
Install labelpandas to your Python environment. The installation will also add the Labelbox SDK.
30+
31+
```
32+
pip install labelpandas
33+
import labelpandas
34+
```
35+
36+
## Use
37+
38+
The `client` class requires the following arguments:
39+
- `lb_api_key` = Labelbox API Key

0 commit comments

Comments
 (0)