Skip to main content

uniprotptmpy

CI PyPI version Python License: MIT DOI

uniprotptmpy wraps the UniProt post-translational modification (PTM) controlled vocabulary in a typed Python API, so proteomics tooling can look up PTMs by accession, name, or free text without writing a parser for UniProt's ptmlist.txt flat file. It ships with the full vocabulary bundled in, so it works fully offline.

Highlights

  • Bundled, offline data — 750 PTM entries shipped with the package; no network calls needed
  • Zero core dependencies — pure Python, pip install and go
  • Typed, immutable models with py.typed (PEP 561) for IDE autocomplete and static checking
  • Rich lookups — by accession (PTM-0450), exact name, free-text search across name/target/keywords, subscript access, and iteration
  • Formula helpers computed for you (elemental composition dicts, ProForma-style formula strings)
  • Round-trip export to TSV/CSV and back to the original ptmlist.txt format
  • Online browser — search, sort, and inspect every term, no install required
  • Hosted REST API + MCP server at uniprot.tacular.dev (API docs, MCP endpoint https://uniprot.tacular.dev/mcp), no install required
  • Optional local FastAPI + MCP server (pip install uniprotptmpy[server]) to expose the database over HTTP or to LLM tools

Install

pip install uniprotptmpy

Or with uv:

uv add uniprotptmpy

Requires Python 3.12+. No third-party dependencies for the core package.

Quick Example

from uniprotptmpy import load

db = load()                   # bundled PTM database, no download needed
print(len(db))                # 750

# Lookup by accession
entry = db.get_by_id("PTM-0450")
print(entry.name)             # (2-aminosuccinimidyl)acetic acid (Asn-Gly)

# Lookup by exact name (case-insensitive)
entry = db.get_by_name("phosphoserine")
print(entry.id)               # PTM-0253

# Free-text search across name, ID, target, and keywords
results = db.search("acetylation")
print(len(results))           # 17

# Dict-style access, iteration, and formula helpers
entry = db["PTM-0450"]
hydroxy = db.get_by_id("PTM-0476")
print(hydroxy.correction_formula)  # O1
print(hydroxy.dict_composition)    # {'O': 1}
print(hydroxy.proforma_formula)    # O

More

Downloading the latest data, TSV/CSV export, ptmlist.txt round-trip
from uniprotptmpy import download, load, write_tsv, write_ptmlist, parse_ptm_list

# Download the latest list from UniProt's FTP site
path = download()   # ~/.cache/uniprotptmpy/ptmlist.txt
db = load(path)

# Write every entry to TSV (or CSV)
db.write_tsv("ptms.tsv")
db.write_tsv("ptms.csv", delimiter=",")

# Round-trip back to the original UniProt flat-file format
db.write_ptmlist("out/ptmlist.txt")
db2 = parse_ptm_list("out/ptmlist.txt")  # identical entry count and fields
Local HTTP API and MCP server (pip install uniprotptmpy[server])
pip install uniprotptmpy[server]
uvicorn uniprotptmpy.server.app:app --reload

This starts a FastAPI app exposing the database as both a JSON REST API (GET /api/entries/{id}, /api/search, /api/entries/by-name/{name}, …) and an MCP endpoint at POST /mcp with get_by_id, get_by_name, and search tools, for pointing LLM clients directly at the UniProt PTM vocabulary:

claude mcp add uniprot-ptm http://localhost:8000/mcp --transport http

The same app is hosted at https://uniprot.tacular.dev (REST under /api/..., interactive docs at /docs), so you can skip the local install and point a client straight at the public MCP endpoint:

claude mcp add uniprot-ptm https://uniprot.tacular.dev/mcp --transport http
Full API reference
Symbol Description
load(source=None, *, refresh=False) Load the PTM database. Uses bundled data by default; refresh=True downloads the current release first.
download(dest=None, *, force=False) Download the latest ptmlist.txt from UniProt FTP (reuses an existing file unless force=True).
parse_ptm_list(path) Parse a ptmlist.txt file into a PtmDatabase.
write_tsv(entries, path, *, delimiter) Write entries to a TSV (or CSV) file.
write_ptmlist(entries, path) Write entries back to UniProt ptmlist.txt flat-file format.
PtmDatabase Indexed collection with get_by_id(), get_by_name(), search(), write_tsv(), write_ptmlist(), iteration, and len().
PtmEntry Frozen dataclass with all PTM fields, plus accession, dict_composition and proforma_formula ("HO3P") properties.
UniprotPtmError, UniprotPtmParseError Package exceptions; the parse error is also a ValueError.
FeatureType StrEnum: CROSSLNK, MOD_RES, LIPID, CARBOHYD, DISULFID.
CrossReference Frozen dataclass with database and accession fields.
TaxonomicRange Frozen dataclass with taxon_name, tax_id, description, and raw fields.

See CHANGELOG.md for release history.

Data Source

Term data comes from UniProt's PTM controlled vocabulary list, maintained by the UniProt Consortium. See uniprot.org for the vocabulary's own license and citation guidance.

Part of the tacular-omics family of proteomics PTM-vocabulary packages:

Package Description
unimodpy Parse and query the UNIMOD mass spectrometry modifications database
psimodpy Parse and query the PSI-MOD protein modification ontology
tacular Broader MS-proteomics lookup library (amino acids, elements, fragment-ion masses) that bundles its own copies of UniProt-PTM alongside UNIMOD, PSI-MOD, RESID, XLMOD, and GNOme; the base library for peptacular and paftacular

Citation

If uniprotptmpy is useful in your research, please cite it — see CITATION.cff or use the "Cite this repository" button on GitHub. Releases are archived on Zenodo (DOI badge above).

License

MIT

Release files for uniprotptmpy 1.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for uniprotptmpy 1.0.0
File Size Uploaded
uniprotptmpy-1.0.0.tar.gz 156.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for uniprotptmpy 1.0.0
File Interpreter ABI Platform
uniprotptmpy-1.0.0-py3-none-any.whl Python 3 none any Details

Total release size: 232.7 kB

Release files / uniprotptmpy-1.0.0.tar.gz

Download URL uniprotptmpy-1.0.0.tar.gz
Size 156.9 kB
Tags Source
SHA-256 checksum
How to use checksums
abe8a84c8625406a388964a0338e38a1d6a0466c3f0295bf116c27bfef1b8688
BLAKE2b-256 checksum
How to use checksums
faa7136e3dae95dfc62fde4a218c63102e8d7e24a20504d42090a7d20e557e6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / uniprotptmpy-1.0.0-py3-none-any.whl

Download URL uniprotptmpy-1.0.0-py3-none-any.whl
Size 75.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
897365b02d4c368649869d0d105678476ad55c18dbfb38195e114593e5c6de45
BLAKE2b-256 checksum
How to use checksums
211c6afd49e809aabf5e2b7135df7621154c707ab3ba7abd95b2c6ac57c02fa2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

1.1.0

2 release files

This release

1.0.0 This release

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.2

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page