from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Streaming - process events as they arrive
for event in client.documents.stream_trace("job_id_value"):
print(event){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Subscribe to real-time parsing progress via Server-Sent Events.
from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Streaming - process events as they arrive
for event in client.documents.stream_trace("job_id_value"):
print(event){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?