Expand description
Parser registry — extensible format detection and parsing.
Invention 2: Format Omniscience. Give AgenticData ANY file and it identifies the format, selects the right parser, and produces Universal Schema records.
Modules§
- calendar_
parser - iCalendar (.ics) parser — extracts events, todos, and calendar data.
- csv_
parser - CSV/TSV parser — handles comma and tab-delimited data with schema inference.
- detect
- Format auto-detection — identifies data format from content and extension.
- email_
parser - Email (.eml) parser — extracts headers, body, and attachments.
- geo_
parser - Geospatial format parsers — GeoJSON, KML, GPX.
- html_
parser - HTML and Markdown parser — extracts structure from documents.
- json_
parser - JSON / JSON Lines parser — handles objects, arrays, and NDJSON.
- log_
parser - Log format parser — handles timestamped log entries.
- media_
parser - Media metadata parser — extracts properties from image, audio, video files.
- sql_
parser - SQL dump parser — extracts schema and records from SQL statements.
- xml_
parser - XML parser — extracts structure from XML documents.
- yaml_
parser - YAML and TOML parser — structured configuration and data formats.
Structs§
- Format
Detection - Detected format with confidence.
- Parse
Result - Result of parsing a data source.
Enums§
- Data
Format - All supported data formats.
Functions§
- parse_
as - Parse data as a specific format.
- parse_
auto - Parse data from a string, auto-detecting format.
- supported_
formats - List all supported formats.