mpxpy
The official Python client for the Mathpix API. Process PDFs and images, and convert math/text content with the Mathpix API.
Setup
Installation
pip install mpxpy
Authentication
You'll need a Mathpix API app_id and app_key to use this client. You can get these from Mathpix Console.
Set your credentials by either:
- Using environment variables
- Passing them directly when initializing the client
MathpixClient will prioritize auth configs in the following order:
- Passed through arguments
- The
~/.mpx/configfile - ENV vars located in
.env - ENV vars located in
local.env
Initialization
Using environment variables
Create a config file at ~/.mpx/config or add ENV variables to .env or local.env files:
MATHPIX_APP_ID=your-app-id
MATHPIX_APP_KEY=your-app-key
MATHPIX_URL=https://api.mathpix.com # optional, defaults to this value
Then initialize the client:
from mpxpy.mathpix_client import MathpixClient
# Will use ~/.mpx/config or environment variables
client = MathpixClient()
Using arguments
You can also pass in your App ID and App Key when initializing the client:
from mpxpy.mathpix_client import MathpixClient
client = MathpixClient(
app_id="your-app-id",
app_key="your-app-key"
# Optional "api_url" argument sets the base URL. This can be useful for development with on-premise deployments
)
Improve Mathpix
You can optionally set improve_mathpix to False to prevent Mathpix from retaining any outputs from a client. This can also be set on a per-request-basis, but if a client has improve_mathpix disabled, all requests made using that client will also be disabled.
from mpxpy.mathpix_client import MathpixClient
client = MathpixClient(
improve_mathpix=False
)
Process PDFs
from mpxpy.mathpix_client import MathpixClient
client = MathpixClient(
app_id="your-app-id",
app_key="your-app-key"
)
# Process a PDF file with multiple conversion formats and options
pdf = client.pdf_new(
file_path='/path/to/pdf/sample.pdf',
convert_to_docx=True,
convert_to_md=True,
convert_to_pptx=True,
convert_to_md_zip=True,
# Optional pdf-level improve_mathpix argument is default True
)
# Wait for processing to complete. Optional timeout argument is 60 seconds by default.
pdf.wait_until_complete(timeout=30)
# Get the Markdown outputs
md_output_path = pdf.to_md_file(path='output/sample.md')
md_text = pdf.to_md_text() # is type str
print(md_text)
# Get the DOCX outputs
docx_output_path = pdf.to_docx_file(path='output/sample.docx')
docx_bytes = pdf.to_docx_bytes() # is type bytes
# Get the PowerPoint outputs
pptx_output_path = pdf.to_pptx_file(path='output/sample.pptx')
pptx_bytes = pdf.to_pptx_bytes() # is type bytes
# Get the Markdown ZIP outputs (includes embedded images)
md_zip_output_path = pdf.to_md_zip_file(path='output/sample.md.zip')
md_zip_bytes = pdf.to_md_zip_bytes() # is type bytes
# Get the JSON outputs
lines_json_output_path = pdf.to_lines_json_file(path='output/sample.lines.json')
lines_json = pdf.to_lines_json() # parses JSON into type Dict
Process Images
from mpxpy.mathpix_client import MathpixClient
client = MathpixClient(
app_id="your-app-id",
app_key="your-app-key"
)
# Process an image file
image = client.image_new(
file_path='/path/to/image/sample.jpg',
# Optional image-level improve_mathpix argument is default True
)
# Process an image file with various options
tagged_image = client.image_new(
file_path='/path/to/image/sample.jpg',
tags=['tag']
)
include_line_data = client.image_new(
file_path='/path/to/image/sample.jpg',
include_line_data=True
)
# Get the full response
result = image.results()
print(result)
# Get the Mathpix Markdown (MMD) representation
mmd = image.mmd()
print(mmd)
# Get line-by-line OCR data
lines = image.lines_json()
print(lines)
# Make an async image request and get its results
async_image = client.image_new(
file_path='/path/to/image/sample.jpg',
is_async=True
)
async_image.wait_until_complete(timeout=5)
result = async_image.results()
Convert Mathpix Markdown (MMD)
from mpxpy.mathpix_client import MathpixClient
client = MathpixClient(
app_id="your-app-id",
app_key="your-app-key"
)
# Similar to Pdf, Conversion class takes separate arguments for each conversion format
conversion = client.conversion_new(
mmd="\\frac{1}{2} + \\sqrt{3}",
convert_to_docx=True,
convert_to_md=True,
convert_to_mmd_zip=True,
convert_to_pptx=True,
)
# Wait for conversion to complete
conversion.wait_until_complete(timeout=30)
# Get the Markdown outputs
md_output_path = conversion.to_md_file(path='output/sample.md')
md_text = conversion.to_md_text() # is of type str
# Get the DOCX outputs
docx_output_path = conversion.to_docx_file(path='output/sample.docx')
docx_bytes = conversion.to_docx_bytes() # is of type bytes
# Get the Mathpix Markdown ZIP outputs (includes embedded images)
mmd_zip_output_path = conversion.to_mmd_zip_file(path='output/sample.mmd.zip')
mmd_zip_bytes = conversion.to_mmd_zip_bytes() # is of type bytes
# Get the PowerPoint outputs
pptx_output_path = conversion.to_pptx_file(path='output/sample.pptx')
pptx_bytes = conversion.to_pptx_bytes() # is of type bytes
API Reference
MathpixClient
The MathpixClient class is used to add authenticate and create requests.
MathpixClient Constructor
MathpixClient Constructor Arguments
app_id: Optional Mathpix application ID. If None, will use environment variable.app_key: Optional Mathpix application key. If None, will use environment variable.api_url: Optional Mathpix API URL. If None, will use environment variable or default to the production API.improve_mathpix: Optional boolean to enable Mathpix to retain user output. Default is true.request_options: Optional dict of keyword arguments to pass to the requests. Default is None.
MathpixClient Properties
auth: An Auth instance managing API credentials and endpoints.improve_mathpix: Boolean to enable/disable Mathpix retaining user output.request_options: Dict of keyword arguments passed to the requests library. Default is None.
MathpixClient Methods
MathpixClient.image_new
Returns a new Image instance
MathpixClient.image_new Arguments
file_path: Path to a local image file.url: URL of a remote image.improve_mathpix: Optional boolean to enable Mathpix to retain user output.metadata: Optional dict to attach metadata to a requesttags: Optional list of strings which can be used to identify results using the /v3/ocr-results endpointis_async: Optional boolean to enable non-interactive requestscallback: Optional Callback Object (see Callback Object)formats: Optional list of formats ('text', 'data', 'html', or 'latex_styled')data_options: Optional DataOptions dict (see DataOptions Object)include_detected_alphabets: Optional boolean to return the detected alphabetsalphabets_allowed: Optional dict to list alphabets allowed in the output (see AlphabetsAllowed Object)region: Optional dict to specify the image area with pixel coordinates 'top_left_x', 'top_left_y', 'width', 'height'enable_blue_hsv_filter: Optional boolean to enable a special mode of image processing where it processes blue hue text exclusivelyconfidence_threshold: Optional number between 0 and 1 to specify a threshold for triggering confidence errors (file level threshold)confidence_rate_threshold: Optional number between 0 and 1 to specify a threshold for triggering confidence errors, default 0.75 (symbol level threshold)include_equation_tags: Optional boolean to specify whether to include equation number tags inside equations LaTeX. When set to True, it sets "idiomatic_eqn_arrays": True because equation numbering works better in those environments compared to the array environmentinclude_line_data: Optional boolean to return information segmented line by lineinclude_word_data: Optional boolean to return information segmented word by wordinclude_smiles: Optional boolean to enable experimental chemistry diagram OCR via RDKIT normalized SMILESinclude_inchi: Optional boolean to include InChI data as XML attributes inside<smiles>elementsinclude_geometry_data: Optional boolean to enable data extraction for geometry diagrams (currently only supports triangle diagrams)include_diagram_text: Optional boolean to enable text extraction from diagrams (for use with "include_line_data": True). The extracted text will be part of line data, and not part of the "text" or any other output format specified. the "parent_id" of these text lines will correspond to the "id" of one of the diagrams in the line data. Diagrams will also have "children_ids" to store references to those text linesauto_rotate_confidence_threshold: Optional number between 0 and 1 to specify threshold for auto rotating images to the correct orientation, default 0.99rm_spaces: Optional boolean to determine whether extra white space is removed from equations in "latex_styled" and "text" formatsrm_fonts: Optional boolean to determine whether font commands such as \mathbf and \mathrm are removed from equations in "latex_styled" and "text" formatsidiomatic_eqn_arrays: Optional boolean to specify whether to use aligned, gathered, or cases instead of an array environment for a list of equationsidiomatic_braces: Optional boolean to specify whether to remove unnecessary braces for LaTeX outputnumbers_default_to_math: Optional boolean to specify whether numbers are always mathmath_fonts_default_to_math: Optional boolean to specify whether math fonts are always mathmath_inline_delimiters: Optional [str, str] tuple to specify begin inline math and end inline math delimiters for "text" outputsmath_display_delimiters: Optional [str, str] tuple to specify begin display math and end display math delimiters for "text" outputsenable_spell_check: Optional boolean to enable a predictive mode for English handwritingenable_tables_fallback: Optional boolean to enable an advanced table processing algorithm that supports very large and complex tablesfullwidth_punctuation: Optional boolean to specify whether punctuation will be fullwidth Unicode
MathpixClient.pdf_new
Returns a new Pdf instance.
MathpixClient.pdf_new Arguments
file_path: Path to a local PDF file.url: URL of a remote PDF file.metadata: Optional dict to attach metadata to a requestalphabets_allowed: Optional dict to list alphabets allowed in the output (see AlphabetsAllowed Object)rm_spaces: Optional boolean to determine whether extra white space is removed from equations in "latex_styled" and "text" formatsrm_fonts: Optional boolean to determine whether font commands such as \mathbf and \mathrm are removed from equations in "latex_styled" and "text" formatsidiomatic_eqn_arrays: Optional boolean to specify whether to use aligned, gathered, or cases instead of an array environment for a list of equationsinclude_equation_tags: Optional boolean to specify whether to include equation number tags inside equations LaTeX. When set to True, it sets "idiomatic_eqn_arrays": True because equation numbering works better in those environments compared to the array environmentinclude_smiles: Optional boolean to enable experimental chemistry diagram OCR via RDKIT normalized SMILESinclude_chemistry_as_image: Optional boolean to return an image crop containing SMILES in the alt-text for chemical diagramsinclude_diagram_text: Optional boolean to enable text extraction from diagrams (for use with "include_line_data": True). The extracted text will be part of line data, and not part of the "text" or any other output format specified. the "parent_id" of these text lines will correspond to the "id" of one of the diagrams in the line data. Diagrams will also have "children_ids" to store references to those text linesnumbers_default_to_math: Optional boolean to specify whether numbers are always mathmath_inline_delimiters: Optional [str, str] tuple to specify begin inline math and end inline math delimiters for "text" outputsmath_display_delimiters: Optional [str, str] tuple to specify begin display math and end display math delimiters for "text" outputspage_ranges: Specifies a page range as a comma-separated string. Examples include 2,4-6 which selects pages [2,4,5,6] and 2 - -2 which selects all pages starting with the second page and ending with the next-to-last pageenable_spell_check: Optional boolean to enable a predictive mode for English handwritingauto_number_sections: Optional[bool] = False,remove_section_numbering: Specifies whether to remove existing numbering for sections and subsections. Defaults to falsepreserve_section_numbering: Specifies whether to keep existing section numbering as is. Defaults to trueenable_tables_fallback: Optional boolean to enable an advanced table processing algorithm that supports very large and complex tablesfullwidth_punctuation: Optional boolean to specify whether punctuation will be fullwidth Unicodeconvert_to_docx: Optional boolean to automatically convert your result to docxconvert_to_md: Optional boolean to automatically convert your result to mdconvert_to_mmd: Optional boolean to automatically convert your result to mmdconvert_to_tex_zip: Optional boolean to automatically convert your result to tex.zipconvert_to_html: Optional boolean to automatically convert your result to htmlconvert_to_pdf: Optional boolean to automatically convert your result to pdfconvert_to_md_zip: Optional boolean to automatically convert your result to md.zipconvert_to_mmd_zip: Optional boolean to automatically convert your result to mmd.zipconvert_to_pptx: Optional boolean to automatically convert your result to pptxconvert_to_html_zip: Optional boolean to automatically convert your result to html.zipimprove_mathpix: Optional boolean to enable Mathpix to retain user output. Default is truefile_batch_id: Optional batch ID to associate this file with.callback_url/callback_headers/callback_events: Webhook callback for this submission (see Webhooks).callback_urlis the HTTPS URL to notify on completion — a submission without one is not notified at all;callback_headersare sent on that delivery (e.g. an auth token your endpoint checks);callback_eventsselects which events to deliver, defaulting to['file.completed', 'file.error']for one document, with[]turning deliveries off for just this submission.
MathpixClient.conversion_new
Returns a new Conversion instance.
MathpixClient.conversion_new Arguments
mmd: Mathpix Markdown content to convert.convert_to_docx: Optional boolean to convert your result to docxconvert_to_md: Optional boolean to convert your result to mdconvert_to_tex_zip: Optional boolean to convert your result to tex.zipconvert_to_html: Optional boolean to convert your result to htmlconvert_to_pdf: Optional boolean to convert your result to pdfconvert_to_latex_pdf: Optional boolean to convert your result to pdf containing LaTeXconvert_to_md_zip: Optional boolean to automatically convert your result to md.zipconvert_to_mmd_zip: Optional boolean to automatically convert your result to mmd.zipconvert_to_pptx: Optional boolean to automatically convert your result to pptxconvert_to_html_zip: Optional boolean to automatically convert your result to html.zip
MathpixClient.batch_new
Submits multiple images for batch processing. Returns a Batch instance.
MathpixClient.batch_new Arguments
urls: Dict mapping keys to image sources. Values can be string URLs, data URLs, or objects with per-item options.ocr_behavior: Processing mode - "latex" (default) or "text".callback: Optional callback configuration for async notification.metadata: Optional metadata dict to attach to the request.formats: Optional list of output formats (applies to all items unless overridden).data_options: Optional DataOptions dict for text mode.include_detected_alphabets: Return detected alphabets in results.alphabets_allowed: Dict specifying allowed alphabets.confidence_threshold: File-level confidence threshold (0-1).confidence_rate_threshold: Symbol-level confidence threshold (0-1).
MathpixClient.strokes_new
Recognizes handwritten strokes. Returns the API response dict with latex, text, and confidence.
MathpixClient.strokes_new Arguments
strokes: Dict with 'x' and 'y' keys, each containing list of strokes. Example:{"x": [[33, 34, 36], [65, 64]], "y": [[188, 190, 194], [192, 194]]}strokes_session_id: Optional session ID for incremental stroke submission.
MathpixClient.pdf_delete
Deletes a PDF and all associated files from S3.
MathpixClient.pdf_delete Arguments
pdf_id: The PDF ID to delete.
MathpixClient.conversion_delete
Deletes a conversion and all associated output files from S3.
MathpixClient.conversion_delete Arguments
conversion_id: The conversion ID to delete.
MathpixClient.app_token_new
Creates a new app token for client-side authentication.
MathpixClient.app_token_new Arguments
expires: Token expiration in seconds (30-43200, default 300). If include_strokes_session_id is True, max is 300.include_strokes_session_id: If True, creates a strokes session and returns strokes_session_id.user_id: Optional user ID to associate with this token.
MathpixClient.app_token_get
Gets information about an app token.
MathpixClient.app_token_get Arguments
app_token: The app token to query.
MathpixClient.app_token_delete
Deletes an app token.
MathpixClient.app_token_delete Arguments
app_token: The app token to delete.
Files API (async document processing)
The Files API processes documents asynchronously — local files, or remote URIs (s3://, gs://, public https://, or Azure Blob HTTPS URLs) one at a time or in bulk batch calls. Non-public sources require a registered data source connecting your Mathpix account to the bucket; register it once via the API following the linked guide.
Submit a single document and download the result:
from mpxpy.mathpix_client import MathpixClient
client = MathpixClient()
file = client.file_new(
source_uri="https://cdn.mathpix.com/examples/cs229-notes1.pdf",
conversion_formats={"docx": True, "md": True},
)
file.wait_until_complete(timeout=120)
markdown = file.to_md_text()
file.to_docx_file("output.docx")
Submit a batch as a job, then collect results and failures:
job = client.file_job_new(
files=[
{"source_uri": "s3://your-bucket/docs/contract-1.pdf", "custom_id": "contract-1"},
{"source_uri": "https://example.com/manual.pdf", "custom_id": "manual"},
],
job_id="contracts-2026-07",
conversion_formats={"docx": True, "md": True},
)
job.wait_until_complete(timeout=3600, interval=15.0)
for errored in job.files_iter(status="error"):
print("failed:", errored["custom_id"])
file = job.file_by_custom_id("contract-1")
Batch submission is accept-and-defer: the call returns immediately and per-item failures (bad URIs, missing data sources) surface as per-file error statuses when you poll the job, not as request errors.
MathpixClient.file_new
Submit a single document for async processing, from a remote URI (POST /files/v1/uri) or a local file (multipart upload). Returns a File instance.
MathpixClient.file_new Arguments
source_uri: Remote location of the source document (s3://,gs://, publichttps://, or Azure Blob HTTPS URL). Exactly one ofsource_uriorfile_pathis required.file_path: Path to a local file to upload.job_id: Optional job to associate this file with. Required whenevercustom_idis supplied.custom_id: Optional case-sensitive customer-supplied identifier.(job_id, custom_id)is the idempotency key: re-submitting the same pair returns the original file.idempotency_key: Optional client-generated key sent as theIdempotency-Keyheader; makes a standalone submission safe to retry.filename: Optional display name for the file.conversion_formats: Dict of format names to enable (e.g.,{'docx': True, 'md': True}). Mathpix Markdown (mmd) is always produced.extra_options: Additional request options dict merged into the request body — an escape hatch for API options this SDK version does not model yet (validated server-side). May not override the validated request fields.destination_uri: Optional destination for results; must be backed by a registered data source. When omitted, results stay in Mathpix storage and are fetched via the download helpers.destination_basename: Optional basename for output objects (defaults to the file_id).s3_region: Optional region of thedestination_uriS3 bucket.image_output_mode: Set to'local'to write cropped images intodestination_uristorage instead of the Mathpix CDN.include_page_info: Include per-page information in the output.metadata: Optional dict to attach metadata to the request.callback_url/callback_headers/callback_events: Webhook callback for this submission (see Webhooks).callback_urlis the HTTPS URL to notify on completion — a submission without one is not notified at all;callback_headersare sent on that delivery (e.g. an auth token your endpoint checks);callback_eventsselects which events to deliver. The default follows the submission's shape, whichjob_iddecides: without ajob_idthe document defaults to['file.completed', 'file.error'], while a document submitted into a job is batch-shaped and defaults to['job.completed']only, delivered after the job is finalized — passcallback_eventsexplicitly to get per-document events on a job member.[]turns deliveries off for just this submission.- Plus the same OCR options as
pdf_new(alphabets_allowed,rm_spaces,include_smiles,math_inline_delimiters,page_ranges, etc.).
MathpixClient.file_job_new
Submit a batch of documents in one call (the server enforces an items-per-call ceiling). Returns a FileJob instance.
MathpixClient.file_job_new Arguments
files: List ofFileSubmissioninstances or dicts. Each item takessource_uri(required) plus optionalcustom_id,filename,destination_uri,s3_region,destination_basename, andpage_ranges.job_id: Optional caller-supplied job id (server-generated when omitted). Required whenever any item carries acustom_id.idempotency_key: Optional key making the whole batch safe to retry; honored only when nojob_idis supplied.conversion_formats: Job-wide conversion formats, applied to every file.image_output_mode: Job-wide;'local'writes cropped images to each file'sdestination_uri.metadata: Optional dict to attach metadata to the request.extra_options: Additional request options dict merged into the request body — an escape hatch for API options this SDK version does not model yet (validated server-side). May not override the validated request fields.callback_url/callback_headers/callback_events: Per-request webhook settings for the job. Withcallback_eventsomitted, a job defaults tojob.completedonly (delivered once after the job is finalized and every file has finished); request the per-filefile.completed/file.errorevents explicitly if you want them, or pass[]to turn deliveries off for this batch (see Webhooks for the event names).- Plus the same OCR options as
pdf_new, applied to every file in the request.
MathpixClient.file_job_list
List submitted jobs, newest first. Returns a dict with jobs and next_page_token.
MathpixClient.file_job_list Arguments
start: Earliest submission date to include,yyyy-MM-dd(UTC).end: Latest submission date to include,yyyy-MM-dd(UTC).limit: Maximum jobs per page (default 100).paging_state: Pagination cursor from the previous response'snext_page_token.
MathpixClient.file_get / MathpixClient.file_delete / MathpixClient.file_job_get
file_get(file_id): Fetches an existing file and returns aFileinstance seeded with its status; raisesFilesApiErrorfor unknown ids.file_delete(file_id): Permanently removes a file and its results from Mathpix-owned storage. Only files in a terminal state can be deleted; repeat deletes are idempotent.file_job_get(job_id): Fetches an existing job and returns aFileJobinstance seeded with itsfile_count; raisesFilesApiErrorfor unknown ids.
File
Returned by file_new, file_get, and FileJob.file_by_custom_id. Methods:
status(): Current status (pending|split|completed|error), progress, and per-format conversion statuses. When the status iserror, theerroranderror_infoattributes carry the failure details.wait_until_complete(timeout): Poll until processing finishes.wait_for_format(format, timeout): Poll until a specific conversion finishes. Conversions complete independently of the file status and can lag behind it; download a format only after it is ready.text_result/bytes_result/json_result/save_file, plus theto_*convenience methods (to_md_text,to_docx_bytes,to_docx_file, ...).delete(): Permanently remove the file and its results from Mathpix-owned storage.
FileJob
Returned by file_job_new and file_job_get. Methods:
status(): Job status and counters (file_count,files_completed,files_errored).wait_until_complete(timeout, interval=5.0): Poll until every file reaches a terminal state. Per-file failures don't fail the job.files(status=None, limit=None, paging_state=None): One page of the job's file listing, optionally filtered topending,completed, orerror.files_iter(status=None, limit=None): Iterate over all files, following pagination.file_by_custom_id(custom_id): Fetch one file by the(job_id, custom_id)you supplied at submission.finalize(): Mark the job as finalized so no more files can be added; required to arm thejob.completedwebhook, which is delivered once after finalize and after every file reaches a terminal state — a job that is never finalized never sends it (see Webhooks). Finalize whenever you are done submitting, before or after the files finish. Idempotent; returns the finalize response (job_id,finalized_at,message).
Data sources (cloud storage setup)
Non-public source_uri/destination_uri buckets (s3://, gs://, Azure Blob) require a registered data source: a pointer from your Mathpix account to a bucket you own, with an access grant. The grant model is keyless — no secrets are uploaded to Mathpix (AWS supports a legacy access_key fallback). Set up the cloud-side grant following the per-provider guides, then register and verify:
identities = client.onboarding_identities() # fetch BEFORE creating grants
external_id = identities["aws"]["external_id"] # goes in your IAM trust policy
data_source = client.data_source_new(
provider="aws",
bucket="your-bucket",
auth_method="iam_role",
provider_specific_details={
"iam_role_arn": "arn:aws:iam::123456789012:role/MathpixReader",
"aws_external_id": external_id,
},
region="us-east-1",
)
probe = data_source.test() # {'result': 'ok', 'checks': {'read': True, 'write': True}, ...}
MathpixClient.onboarding_identities
Returns the Mathpix identities you grant access to (AWS trust account, Azure app/tenant, and — when available — the GCS impersonator service account) plus your per-group external_id, a stable value used in the AWS IAM trust policy and GCS bucket-control verification. Call it before setting up cloud-side grants.
MathpixClient.data_source_new
Register a bucket as a data source. Returns a DataSource instance.
MathpixClient.data_source_new Arguments
provider: Storage provider, e.g.'aws','azure','gcp'— see the per-provider guides for the supported set.bucket: Bucket / container name.auth_method: Grant type for the provider, e.g.'iam_role'or'access_key'(aws),'azure_ad'(azure),'service_account'(gcp). Invalid combinations are rejected server-side.provider_specific_details: Provider-shaped metadata (e.g.iam_role_arn+aws_external_idfor aws/iam_role,aws_access_key_idfor aws/access_key).name: Optional human-readable label.region: Bucket region (required for awsaccess_keyonly).secret: Only for awsaccess_key(legacy); keyless grant types reject it server-side.
A registration that conflicts with an existing data source raises FilesApiError ('conflict'); the server message identifies the conflict.
For AWS and Azure, call DataSource.test() afterward to verify the grant end-to-end. GCS registration verifies bucket control up front, so a successful return already confirms the grant.
MathpixClient.data_source_list / data_source_test / data_source_delete
data_source_list(): List the group's registered data sources (secrets are never returned).data_source_test(data_source_id): Runs the read/write probe; returns{'result', 'checks', 'message'}and does not raise on a failed probe — use it to diagnose grant issues after customer-side IAM changes.data_source_delete(data_source_id): Removes the registration; already-started work is not interrupted, and the bucket can be registered again later. Deleting the registration does not revoke access on the cloud side — remove the grant separately to revoke access.
Webhooks
The Files API can call a webhook when processing finishes, instead of you polling. Pass the callback on each submission and verify the signature on every delivery. Polling keeps working and stays the authoritative record: a missed delivery never loses a result.
The event names are file.completed and file.error for a single document (success and failure), and job.completed for a finalized batch (delivered once). This is the canonical event list that the per-request callback_events on the submission methods above draw from. Without callback_events, the submission's shape decides, and job_id is what decides the shape: a document submitted without a job_id gets file.completed and file.error, while anything carrying a job_id — a batch, or a single file_new submitted into a job — gets job.completed only. An explicit callback_events decides alone, including [] as the off switch for that one submission.
file.completed fires only once the document's OCR result and every conversion format the submission requested have settled, so a requested docx or md is downloadable the moment the delivery arrives; when the submission requested conversions the body carries a formats map with each format's own status. A conversion that fails does not turn the event into file.error — the OCR result is there, and the failed format shows up in formats.
Set the callback per submission. Pass callback_headers if your endpoint needs auth (e.g. a bearer token you check on receipt), and callback_events to select which events to deliver:
file = client.file_new(
source_uri="https://cdn.mathpix.com/examples/cs229-notes1.pdf",
conversion_formats={"docx": True},
callback_url="https://your-app.example.com/mathpix-webhook",
callback_headers={"Authorization": "Bearer your-token"},
callback_events=["file.completed", "file.error"],
)
For a batch job, the terminal job.completed event fires only after you finalize the job (once every file has been submitted):
job = client.file_job_new(
files=[...],
job_id="contracts-2026-08",
callback_url="https://your-app.example.com/mathpix-webhook",
callback_events=["job.completed"],
)
job.finalize() # or client.file_job_get("contracts-2026-08").finalize()
Verify each delivery in your handler with the signing secret. Pass the exact raw request body (bytes), not the parsed JSON:
from flask import Flask, request, abort
from mpxpy.mathpix_client import MathpixClient
from mpxpy.webhooks import verify_signature
app = Flask(__name__)
client = MathpixClient()
signing_secret = client.webhook_config_get().signing_secret
@app.route("/mathpix-webhook", methods=["POST"])
def mathpix_webhook():
signature = request.headers.get("Mathpix-Signature", "")
if not verify_signature(signature, request.get_data(), signing_secret):
abort(400)
event = request.get_json()
# handle event...
return "", 200
verify_signature recomputes the HMAC-SHA256 over "{t}.{raw_body}" keyed by the signing secret and rejects deliveries whose timestamp is outside a replay window (300 seconds by default, configurable via tolerance_seconds). The window is measured against your own machine's clock, so a handler whose clock is more than five minutes out rejects every delivery — keep it synchronized. A delivery header carries a single v1 value today; verify_signature also accepts a header bearing multiple v1 values (a match on any one verifies), so it keeps working if signature rotation is added later. verify_signature returns False for any invalid or malformed input (including an empty secret) and never raises.
Delivery is at least once, so the same notification can arrive twice: deduplicate on event plus file_id (event plus job_id for job.completed), acknowledge with a 2xx as soon as you have durably accepted the delivery, and process afterward. A slow answer (over 10 seconds) counts as no answer and is retried; a client-error answer tells Mathpix the endpoint is misconfigured for that notification and stops its retries, so poll for anything missed.
MathpixClient.webhook_config_get
Returns a WebhookConfig carrying your .signing_secret; the first call mints it. It is the only stored webhook setting — the destination, headers, and events are per-submission arguments.
MathpixClient.webhook_config_test
Sends one signed test delivery to a URL you name and returns the outcome synchronously, so you can verify a handler before any real document is involved:
outcome = client.webhook_config_test(
callback_url="https://your-app.example.com/mathpix-webhook",
callback_headers={"Authorization": "Bearer your-token"}, # optional
)
# {'status': 'delivered', 'response_code': 200, 'detail': None}
- The sample is a
file.completedbody carrying the reserved diagnosticfile_id00000000-0000-0000-0000-000000000000, which is never a real document, so your handler can recognize test deliveries structurally. - One attempt, no retries; up to 10 test deliveries per minute for your app.
- An endpoint that refuses the test is not an error in this call:
statusis'failed'with theresponse_codeyour endpoint answered (Nonewhen no answer arrived) and adetailsentence. Only the request itself failing raises (e.g. a rejectedcallback_urlor the rate limit).
MathpixClient.query_usage
Query API usage statistics.
MathpixClient.query_usage Arguments
from_date: Start date for usage query (ISO 8601 format).to_date: End date for usage query (ISO 8601 format).app_id: Filter by application ID.usage_type: Filter by usage type (e.g., 'image', 'pdf-page', 'strokes-session').request_args_hash: Filter by request args hash.timespan: Aggregation period ('hour', 'day', 'month', 'year').group_by: Fields to group by (['app_id', 'usage_type', 'request_args_hash']).page: Page number (1-100, default 1).per_page: Results per page (1-1000, default 100).
Returns a dict with 'ocr_usage' list containing usage records.
MathpixClient.query_ocr_results
Query historical OCR results.
MathpixClient.query_ocr_results Arguments
from_date: Start date for results query (ISO 8601 format).to_date: End date for results query (ISO 8601 format).app_id: Filter by application ID.request_id: Filter by image request ID.pdf_id: Filter by PDF ID.tags: Filter by tags (JSONB containment filter).include_null_results: Include results where result is null (default False).page: Page number (1-100, default 1).per_page: Results per page (1-1000, default 100).contains_chemistry: Filter by chemistry content detection.contains_diagram: Filter by diagram content detection.is_handwritten: Filter by handwritten content detection.is_printed: Filter by printed content detection.contains_table: Filter by table content detection.contains_triangle: Filter by triangle content detection.contains_algorithm: Filter by algorithm content detection.
Returns a dict with 'ocr_results' list.
MathpixClient.query_pdf_results
Query historical PDF results.
MathpixClient.query_pdf_results Arguments
from_date: Start date for results query (ISO 8601 format).to_date: End date for results query (ISO 8601 format).app_id: Filter by application ID.pdf_id: Filter by PDF ID.page: Page number (1-1000, default 1).per_page: Results per page (1-100, default 100).
Returns a dict with 'pdfs' list.
MathpixClient.query_converter_results
Query historical converter results.
MathpixClient.query_converter_results Arguments
from_date: Start date for results query (ISO 8601 format).to_date: End date for results query (ISO 8601 format).app_id: Filter by application ID.page: Page number (1-1000, default 1).per_page: Results per page (1-100, default 100).
Returns a dict with 'documents' list containing conversion results. Each document has: id, input_file, status, created_at, modified_at, request_args.
Pdf
Pdf Properties
auth: An Auth instance with Mathpix credentials.pdf_id: The unique identifier for this PDF.file_path: Path to a local PDF file.url: URL of a remote PDF file.convert_to_docx: Optional boolean to automatically convert your result to docxconvert_to_md: Optional boolean to automatically convert your result to mdconvert_to_mmd: Optional boolean to automatically convert your result to mmdconvert_to_tex_zip: Optional boolean to automatically convert your result to tex.zipconvert_to_html: Optional boolean to automatically convert your result to htmlconvert_to_pdf: Optional boolean to automatically convert your result to pdfconvert_to_md_zip: Optional boolean to automatically convert your result to md.zip (markdown with local images folder)convert_to_mmd_zip: Optional boolean to automatically convert your result to mmd.zip (Mathpix markdown with local images folder)convert_to_pptx: Optional boolean to automatically convert your result to pptx (PowerPoint)convert_to_html_zip: Optional boolean to automatically convert your result to html.zip (HTML with local images folder)improve_mathpix: Optional boolean to enable Mathpix to retain user output. Default is true
Pdf Methods
wait_until_complete: Wait for the PDF processing and optional conversions to completepdf_status: Get the current status of the PDF processingpdf_conversion_status: Get the current status of the PDF conversionsto_docx_file: Save the processed PDF result to a DOCX file at a local pathto_docx_bytes: Get the processed PDF result as DOCX bytesto_md_file: Save the processed PDF result to a Markdown file at a local pathto_md_text: Get the processed PDF result as a Markdown stringto_mmd_file: Save the processed PDF result to a Mathpix Markdown file at a local pathto_mmd_text: Get the processed PDF result as a Mathpix Markdown stringto_tex_zip_file: Save the processed PDF result to a tex.zip file at a local pathto_tex_zip_bytes: Get the processed PDF result in tex.zip format as bytesto_html_file: Save the processed PDF result to a HTML file at a local pathto_html_bytes: Get the processed PDF result in HTML format as bytesto_pdf_file: Save the processed PDF result to a PDF file at a local pathto_pdf_bytes: Get the processed PDF result in PDF format as bytesto_lines_json_file: Save the processed PDF line-by-line result to a JSON file at a local pathto_lines_json: Get the processed PDF result in JSON formatto_lines_mmd_json_file: Save the processed PDF line-by-line result, including Mathpix Markdown, to a JSON file at a local pathto_lines_mmd_json: Get the processed PDF result in JSON format with text in Mathpix Markdownto_md_zip_file: Save the processed PDF result to a ZIP file containing markdown output and any embedded imagesto_md_zip_bytes: Get the processed PDF result in ZIPPED markdown format as bytesto_mmd_zip_file: Save the processed PDF result to a ZIP file containing Mathpix Markdown output and any embedded imagesto_mmd_zip_bytes: Get the processed PDF result in ZIPPED Mathpix Markdown format as bytesto_pptx_file: Save the processed PDF result to a PPTX fileto_pptx_bytes: Get the processed PDF result in PPTX format as bytesto_html_zip_file: Save the processed PDF result to a ZIP file containing HTML output and any embedded imagesto_html_zip_bytes: Get the processed PDF result in ZIPPED HTML format as bytes
Image
Image Properties
auth: An Auth instance with Mathpix credentialsrequest_id: A string storing the request_id of the imagefile_path: Path to a local image file, if using a local fileurl: URL of a remote image, if using a remote fileimprove_mathpix: Optional boolean to enable Mathpix to retain user output. Default is trueinclude_line_data: Optional boolean to include line by line OCR datametadata: Optional dict to attach metadata to a requestis_async: Optional boolean to enable non-interactive requestsresult: A Dict to containing a request's result as initially configured
Image Methods
results: Get the full JSON response for the imagewait_until_complete: Wait for async image processing to completelines_json: Get line-by-line OCR data for the imagemmd: Get the Mathpix Markdown (MMD) representation of the imagelatex_styled: Get the latex_styled representation of the image.html: Get the html representation of the image.
Conversion
Conversion Properties
auth: An Auth instance with Mathpix credentials.conversion_id: The unique identifier for this conversion.convert_to_docx: Optional boolean to automatically convert your result to docxconvert_to_md: Optional boolean to automatically convert your result to mdconvert_to_tex_zip: Optional boolean to automatically convert your result to tex.zipconvert_to_html: Optional boolean to automatically convert your result to htmlconvert_to_pdf: Optional boolean to automatically convert your result to pdfconvert_to_latex_pdf: Optional boolean to automatically convert your result to pdf containing LaTeXconvert_to_md_zip: Optional boolean to automatically convert your result to md.zip (markdown with local images folder)convert_to_mmd_zip: Optional boolean to automatically convert your result to mmd.zip (Mathpix markdown with local images folder)convert_to_pptx: Optional boolean to automatically convert your result to pptx (PowerPoint)convert_to_html_zip: Optional boolean to automatically convert your result to html.zip (HTML with local images folder)
Conversion Methods
wait_until_complete: Wait for the conversion to completeconversion_status: Get the current status of the conversionto_docx_file: Save the processed conversion result to a DOCX file at a local pathto_docx_bytes: Get the processed conversion result as DOCX bytesto_md_file: Save the processed conversion result to a Markdown file at a local pathto_md_text: Get the processed conversion result as a Markdown stringto_mmd_file: Save the processed conversion result to a Mathpix Markdown file at a local pathto_mmd_text: Get the processed conversion result as a Mathpix Markdown stringto_tex_zip_file: Save the processed conversion result to a tex.zip file at a local pathto_tex_zip_bytes: Get the processed conversion result in tex.zip format as bytesto_html_file: Save the processed conversion result to a HTML file at a local pathto_html_bytes: Get the processed conversion result in HTML format as bytesto_pdf_file: Save the processed conversion result to a PDF file at a local pathto_pdf_bytes: Get the processed conversion result in PDF format as bytesto_latex_pdf_file: Save the processed conversion result to a PDF file containing LaTeX at a local pathto_latex_pdf_bytes: Get the processed conversion result in PDF format as bytes (with LaTeX)to_md_zip_file: Save the processed conversion result to a ZIP file containing markdown output and any embedded imagesto_md_zip_bytes: Get the processed conversion result in ZIPPED markdown format as bytesto_mmd_zip_file: Save the processed conversion result to a ZIP file containing Mathpix Markdown output and any embedded imagesto_mmd_zip_bytes: Get the processed conversion result in ZIPPED Mathpix Markdown format as bytesto_pptx_file: Save the processed conversion result to a PPTX fileto_pptx_bytes: Get the processed conversion result in PPTX format as bytesto_html_zip_file: Save the processed PDF result to a ZIP file containing HTML output and any embedded imagesto_html_zip_bytes: Get the processed PDF result in ZIPPED HTML format as bytes
Batch
Batch Properties
auth: An Auth instance with Mathpix credentials.batch_id: The unique identifier for this batch.
Batch Methods
status: Get the current status of the batch, including keys and results.wait_until_complete: Wait for all items in the batch to complete processing.results: Get the results dict mapping url_key to OCR result for each processed item.keys: Get the list of URL keys in this batch.
File
File Properties
auth: An Auth instance with Mathpix credentials.file_id: The unique identifier for this file.
File Methods
status: Get the current status of the file processing (file_id, status, num_pages, num_pages_completed, percent_done, formats).delete: Permanently remove the file and its results from Mathpix-owned storage.wait_until_complete: Wait for the file processing to complete.wait_for_format: Wait for a specific format conversion to complete.to_mmd_text: Get the processed file result as Mathpix Markdown string.to_md_text: Get the processed file result as Markdown string.to_tex_text: Get the processed file result as LaTeX string.to_docx_bytes: Get the processed file result as DOCX bytes.to_xlsx_bytes: Get the processed file result as XLSX bytes.to_pptx_bytes: Get the processed file result as PPTX bytes.to_pdf_bytes: Get the processed file result as PDF bytes.to_latex_pdf_bytes: Get the processed file result as LaTeX-rendered PDF bytes.to_html_bytes: Get the processed file result as HTML bytes.to_tex_zip_bytes: Get the processed file result as tex.zip bytes.to_md_zip_bytes: Get the processed file result as md.zip bytes.to_mmd_zip_bytes: Get the processed file result as mmd.zip bytes.to_html_zip_bytes: Get the processed file result as html.zip bytes.to_jpg_bytes: Get the processed file result as JPG bytes.to_png_bytes: Get the processed file result as PNG bytes.to_lines_json: Get the processed file result as lines.json.to_lines_mmd_json: Get the processed file result as lines.mmd.json.to_mmd_file: Save the processed file result to a MMD file at a local path.to_md_file: Save the processed file result to a Markdown file at a local path.to_docx_file: Save the processed file result to a DOCX file at a local path.to_xlsx_file: Save the processed file result to an XLSX file at a local path.to_pptx_file: Save the processed file result to a PPTX file at a local path.to_pdf_file: Save the processed file result to a PDF file at a local path.to_html_file: Save the processed file result to an HTML file at a local path.to_tex_zip_file: Save the processed file result to a tex.zip file at a local path.
Error Handling
The client provides detailed error information in the following classes:
- MathpixClientError
- AuthenticationError
- ValidationError
- FilesystemError
- ConversionIncompleteError
from mpxpy.mathpix_client import MathpixClient
from mpxpy.errors import MathpixClientError, ConversionIncompleteError
client = MathpixClient(app_id="your-app-id", app_key="your-app-key")
try:
pdf = client.pdf_new(file_path="example.pdf", convert_to_docx=True)
except FileNotFoundError as e:
print(f"File not found: {e}")
except MathpixClientError as e:
print(f"File upload error: {e}")
try:
pdf.to_docx_file('output/path/example.pdf')
except ConversionIncompleteError as e:
print(f'Conversions are not complete')
Development
# Clone the repository
git clone git@github.com:Mathpix/mpxpy.git
cd mpxpy
# Install in development mode
pip install -e .
# Or install using the requirements.txt file
pip install -r requirements.txt
Running Tests
To run tests you will need to add authentication.
# Install test dependencies
pip install -e ".[dev]"
# Or install using the requirements.txt file
pip install -r requirements.txt
# Run tests
pytest
Logging
To configure the logger level, which is set at INFO by default, set the MATHPIX_LOG_LEVEL env variable to the desired logger level.
DEBUG: logs all events, including polling eventsINFO: logs all events except for polling events
MATHPIX_LOG_LEVEL=DEBUG
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mpxpy-0.0.22.tar.gz.
File metadata
- Download URL: mpxpy-0.0.22.tar.gz
- Upload date:
- Size: 104.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed2422b840cc2fa6820e1e4b1d2d23a18c7bbeb9a0e291658ec5a7a1ecba3890
|
|
| MD5 |
a00b38726521fcb1927a49582c17c85d
|
|
| BLAKE2b-256 |
258503f98243062e9673afb8f4d5682820cfec8516ede5bc92e893c306d77880
|
File details
Details for the file mpxpy-0.0.22-py3-none-any.whl.
File metadata
- Download URL: mpxpy-0.0.22-py3-none-any.whl
- Upload date:
- Size: 67.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9076ff8f6bb9b75e05ea5caa9f9a7c616bd2218447451149f88abf6112af203d
|
|
| MD5 |
4f312717b1f4daf76fa054a427cb6142
|
|
| BLAKE2b-256 |
ca8ffa7a4f841f9a322ae5be00cfcf0d47f8fdc9fcaecd0d46eeb145d5a2ac2c
|