Python SDK to SuperAnnotate platform
Project description
Welcome to the SuperAnnotate Python Software Development Kit (SDK), which enables Python programmers to create software that incorporates services of the platform and effortlessly integrates SuperAnnotate into their AI process.
Resources
API Reference and User Guide available on Read the Docs
Authentication
from superannotate import SAClient
# by environment variable SA_TOKEN
sa_client = SAClient()
# by token
sa_client = SAClient(token='<team token>')
# by config file
# default path is ~/.superannotate/config.ini
sa_client = SAClient(config_path='~/.superannotate/dev_config.ini')
config.ini example
[DEFAULT]
SA_TOKEN = <Token>
LOGGING_LEVEL = INFO
Using superannotate
from superannotate import SAClient
sa_client =SAClient()
project = 'Dogs'
sa_client.create_project(
project_name=project,
project_description='Test project generated via SDK',
project_type='Vector'
)
sa_client.create_annotation_class(
project=project,
name='dog',
color='#F9E0FA',
class_type='tag'
)
sa_client.attach_items(
project=project,
attachments=[
{
'url': 'https://drive.google.com/uc?export=download&id=1ipOrZNSTlPUkI_hnrW9aUD5yULqqq5Vl',
'name': 'dog.jpeg'
}
]
)
sa_client.upload_annotations(
project=project,
annotations=[
{
'metadata': {'name': 'dog.jpeg'},
'instances': [
{'type': 'tag', 'className': 'dog'}
]
}
]
)
sa_client.get_annotations(project=project, items=['dog.jpeg'])
Installation
SuperAnnotate python SDK is available on PyPI:
pip install superannotate
The package officially supports Python 3.7+ and was tested under Linux and Windows (Anaconda ) platforms.
For more detailed installation steps and package usage please have a look at the tutorial
Supported Features
search/get/create/clone/update/delete projects
search/get/create/delete folders
assign folders to project contributors
upload items to a project from a local or AWS S3 folder
attach items by URL or from an integrated storage, meanwhile keeping them secure in your cloud provider
get integrated cloud storages
upload annotations (also from local or AWS S3 folder)
delete annotations
set items annotations statuses
get/download/export annotations from a project (also to a local or AWS S3 folder)
invite/search team contributors or add contributors to a specific project
search/get/copy/move items in a project
query items using SA Query Language
define custom metadata for items and upload custom values (query based on your custom metadata)
upload priority scores
get available subsets (sets of segregated items), query items in a subset or add items to a subset
assign or anassign items to project contributors
download an image that has been uploaded to project
search/create/download/delete project annotation classes
search/download models
run predictions
convert annotations from/to COCO format
convert annotation from VOC, SuperVisely, LabelBox, DataLoop, VGG, VoTT, SageMaker, GoogleCloud, YOLO formats
CLI commands for simple tasks
Questions and Issues
For questions and issues please use this repo’s issue tracker on GitHub or contact support@superannotate.com.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file superannotate-4.4.26.tar.gz
.
File metadata
- Download URL: superannotate-4.4.26.tar.gz
- Upload date:
- Size: 160.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35672d7c4a087c0fc01c751b2ec620d57f95506bb4893f70a6434de10e5b6c80 |
|
MD5 | 8f33c4e4fdcf1e901d5820df76eecc51 |
|
BLAKE2b-256 | d366133f64a9a0d0a9a01b796387de64095eb6ecc0effcc074e425fa5c72c27e |
File details
Details for the file superannotate-4.4.26-py3-none-any.whl
.
File metadata
- Download URL: superannotate-4.4.26-py3-none-any.whl
- Upload date:
- Size: 213.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f12033690f983f48726d54433c16c79c554fcb0a9138caa0579ebb067417714 |
|
MD5 | 59d1953e14641016d5674a1cff6d7cc6 |
|
BLAKE2b-256 | 5bba17668c667a683c268631a313ce05926a01bc07791696d7871dba6eef9502 |