from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Upload a file
with open("document.pdf", "rb") as f:
result = client.documents.parse(file=f, filename="document.pdf")
print(result){
"job_id": "<string>",
"status": "<string>"
}Upload a document for asynchronous parsing. Returns a job ID to track progress.
from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Upload a file
with open("document.pdf", "rb") as f:
result = client.documents.parse(file=f, filename="document.pdf")
print(result){
"job_id": "<string>",
"status": "<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?