TrustRadius: an HG Insights company

What is dataTap?

dataTap is a user friendly visual data management platform from Zensors.

The dataTap Python library is the primary interface for using dataTap's data management tools. Users can create datasets, stream annotations, and analyze model performance all with one library.

Read more details.

Media

Screenshot of Install the client library.

`pip install datatap`

Register at [app.datatap.dev](https://app.datatap.dev/). Then, go to `Settings > Api Keys` to find your personal API key.

`export DATATAP_API_KEY="XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXX"`

To begin with, select a dataset from the dataTap repository
Screenshot of Copy the starter code based on your library preference
Screenshot of Paste the starter code and start training.

from datatap import Api

api = Api()
coco = api.get_default_database().get_repository("_/coco")
dataset = coco.get_dataset("latest")
print("COCO: ", dataset)

1 / 3

Screenshot of Install the client library. `pip install datatap` Register at [app.datatap.dev](https://app.datatap.dev/). Then, go to `Settings > Api Keys` to find your personal API key. `export DATATAP_API_KEY="XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXX"` To begin with, select a dataset from the dataTap repository