PyJWT
A Python implementation of RFC 7519 for encoding, decoding, and verifying JSON Web Tokens.
Repository Health
Technical Analysis
PyJWT is the de facto standard library for working with JSON Web Tokens in Python. It provides simple encode()/decode() functions covering the full RFC 7519 surface — issuer, audience, expiration, and not-before claim validation — plus pluggable signing algorithms for HMAC, RSA, ECDSA, and Ed25519/Ed448 keys.
Beyond the core encode/decode API, PyJWT ships a JWKS client (PyJWKClient) for fetching and caching signing keys from an identity provider’s JSON Web Key Set endpoint, making it a common building block for verifying tokens issued by OAuth/OIDC providers such as Auth0, Okta, and Firebase.
What You Get
encode()/decode()functions supporting HS256/384/512, RS256/384/512, ES256/384/512/256K, PS256/384/512, and EdDSA algorithms- Built-in validation of standard claims:
exp,nbf,iat,aud, andiss, with configurable leeway for clock skew PyJWKClientfor fetching, caching, and rotating signing keys from a remote JWKS endpointPyJWK/PyJWKSetclasses implementing RFC 7517 JSON Web Key parsing- Custom exception hierarchy (
ExpiredSignatureError,InvalidAudienceError, etc.) for precise error handling - Optional
cryptographyintegration for asymmetric algorithms, kept as an extra so HMAC-only users avoid the dependency
Common Use Cases
- Issuing and verifying stateless session/auth tokens for a Python API backend
- Validating tokens issued by an external OAuth/OIDC identity provider using its published JWKS endpoint
- Signing short-lived, single-purpose tokens (password reset links, email verification, webhook signing)
- Service-to-service authentication between internal microservices using shared HMAC secrets
Under The Hood
Architecture The library centers on api_jwt.py (the high-level encode/decode functions and claim validation) which delegates cryptographic signing/verification to api_jws.py, itself backed by an algorithms.py registry mapping algorithm names (HS256, RS256, ES256, EdDSA, …) to key-handling implementations. api_jwk.py implements RFC 7517 JWK parsing, and jwks_client.py layers an HTTP-fetching, TTL-caching client (PyJWKClient, jwk_set_cache.py) on top of it for remote key resolution — a common need when verifying third-party-issued tokens.
Tech Stack Pure Python core with the cryptography package as an optional dependency (declared as an extra) for RSA/EC/EdDSA algorithms, so HMAC-only consumers don’t have to install a C-extension-backed cryptography library. Built with setuptools, targets Python 3.9+, and uses ruff for linting per ruff.toml.
Code Quality Comprehensive test suite (tests/test_api_jwt.py, test_algorithms.py, test_jwks_client.py, etc.) with fixture keys for every supported algorithm family under tests/keys/, plus a dedicated test_advisory.py covering historical CVEs (e.g. the none algorithm confusion attack) as regression tests — notable given JWT libraries’ history of signature-verification bypass vulnerabilities. Uses coverage with a checked-in codecov.yml for CI coverage gating.
API Design The functional encode(payload, key, algorithm) / decode(token, key, algorithms=[...]) signature keeps the common path minimal, while an explicit exception hierarchy (ExpiredSignatureError, InvalidSignatureError, InvalidAudienceError) lets callers distinguish failure modes precisely instead of parsing string messages. Requiring algorithms=[...] explicitly on decode (rather than trusting the token’s own header) is a deliberate API safety choice that prevents algorithm-confusion attacks.
Used by 23 apps in this directory
Agno
Devops · AI Development · Automation
Build, run, and manage agent platforms with a full production stack — SDK, runtime, and control plane included.
Airbyte
Developer Tools · Data Engineering
Open-source ELT platform with 600+ connectors for moving data from any source to warehouses, lakes, and AI agents.
Apache Airflow
Data Engineering
Define, schedule, and monitor complex data workflows as Python code — with a powerful UI, 80+ provider integrations, and battle-tested scalability across thousands of production deployments.
authentik
Authentication · Security
The self-hosted Identity Provider that replaces Okta, Auth0, and Entra ID with a unified SSO platform supporting SAML, OAuth2/OIDC, LDAP, RADIUS, and WebAuthn.
AutoGPT
Automation · Productivity · AI Assistants
Build, deploy, and run autonomous AI agents that automate complex multi-step workflows using a visual block-based graph editor.
ClearML
Devops · Automation
Auto-magical MLOps platform that tracks experiments, versions data, orchestrates pipelines, and serves models with just two lines of code.
/dev/push
Developer Tools · Devops
Self-hosted, open-source Vercel alternative that deploys Python, Node.js, PHP, and any Docker-compatible app from a Git push, with zero-downtime rollouts and real-time logs.
Flagsmith
Developer Tools · Devops · Ab Testing Experimentation
Open-source feature flagging, remote config, and A/B/multivariate testing platform for web, mobile, and server-side apps — self-host or use the hosted SaaS.
Foxel
File Storage
Self-hosted private cloud storage with AI semantic search and a pluggable multi-backend file management system.