How to access a specific annotation

Hi,

I would like to list all the annotations made in prodigy and would like to know if there is any way to generate a URL to access/browse a specific annotation, so I could have a list of URLs to access different annotations. In my case, it is for manual audio annotation.

Thanks!

Once the annotations are stored in the database you cannot use the standard user interface to fetch them. That said, nothing is stopping you from writing your own front end on top of it.

You can access the database via the Python API (docs) using a snippet like below.

from prodigy.components.db import connect

db = connect()
dataset = db.get_dataset("datasetname")

Thank you for the answer

1 Like