List of formats
Documents, annotations and exports can be downloaded/created in different formats.
INCEpTION doesn't specify in their documentation which formats are supported, but the following have been found and included in pycaprio:
bin: Binary.conll2000: CONLL 2000conll2006: CONLL 2006conll2009: CONLL 2009conllcorenlp: CONLL Core NLPconllu: CONLLuctsv: CTSVctsv3: CTSV3dkpro-core-tei: Dkpro Core TEIhtml: HTMLlif: LIFnif: NIFpdf: PDFperseus_2.1: Perseus 2.1pubannotation-sections: Pubannotation sectionstcf: TCFtext: Plain text (DEFAULT)textlines: Text linestsv: TSV - Webanno format
You can find a class with all the formats in pycaprio.core.mappings.InceptionFormat:
from pycaprio.core.mappings import InceptionFormat
InceptionFormat.DEFAULT # Defaults to `text`
InceptionFormat.TEI
...