Metadata-Version: 2.1
Name: LBExporters
Version: 0.1.2.dev2
Summary: Converters from Labelbox exports to other common foramts
Home-page: UNKNOWN
License: Apache 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: jinja2
Requires-Dist: pillow
Requires-Dist: requests
Requires-Dist: shapely
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: xmltodict; extra == 'dev'

# Labelbox Scripts

## Usage 

### Setup

Tested against Python 3.6.4. To install to `site-packages` for use:

```sh
pip install LBExporters
```

### Labelbox JSON to COCO

Convert a Labelbox JSON export file to COCO format.

```python
# import labelbox2coco library
import labelbox2coco as lb2co

# set labeled_data to the file path of the Labelbox JSON export
labeled_data = 'test-fixtures/labelbox_1.json'

# set coco_output to the file name you want the COCO data to be written to
coco_output = 'lb2co_1.json'

# call the Labelbox to COCO conversion
lb2co.from_json(labeled_data=labeled_data, coco_output=coco_output)
```

### Labelbox JSON to Pascal VOC

Convert a Labelbox JSON export file to Pascal VOC format.

```python
# import labelbox2pascal library
import labelbox2pascal as lb2pa

# set labeled_data to the file path of the Labelbox JSON export
labeled_data = 'test-fixtures/labelbox_1.json'

# set ann_output_dir to the file path of the directory to write Pascal VOC
# annotation files. The directory must exist.
ann_output_dir = './Annotations'

# set images_output_dir to the file path of the directory to write images.
# The directory must exist.
images_output_dir = './Images'

# call the Labelbox to Pascal conversion
# NOTE: make sure to specify the correct label_format based on the export
#  format chosen on Labelbox; 'WKT' or 'XY'.
lb2pa.from_json(labeled_data=labeled_data, ann_output_dir=ann_output_dir,
                images_output_dir=images_output_dir, label_format='WKT')
```

## Development

`pipenv` is used to manage virtualenvs and dependencies.

To get set up:

```sh
pipenv install --dev -e '.[dev]'
```

To run tests:

```sh
pipenv run pytest
```

To generate a `requirements.txt` for backwards compatibility:

```sh
pipenv lock -r --dev
```

### Releasing

```sh
pipenv run python setup.py sdist bdist_wheel
twine upload --repository-url 'https://test.pypi.org/legacy/' 'dist/*' # stage in test pypi
twine upload 'dist/*'
```


