Skip to main content

Lite email parser (Python)

Simple library to remove signature and replies and extract attachments and inline attachments from an email. Built using a C++ lib Core for maximum performance. There's also bindings for Node.js

If you stumble upon an email that is not parsed correctly, please create an issue and attach the raw .eml file.

Installation

pip install lite-email-parser

Python usage

Import

from lite_email_parser import parse_email

Usage

No file upload

from lite_email_parser import parse_email

# Load your email (bytes or str accepted here)
with open('email.eml', 'rb') as f:
    email = f.read()

result = parse_email(email)

print(result)

See sample

File upload

from lite_email_parser import parse_email, replace_src

# Load your email (bytes or str accepted here)
with open('email.eml', 'rb') as f:
    email = f.read()

result = parse_email(email)

uploaded_inline = []

for file in result['inline_attachments']:
    url = upload_to_s3('my-bucket', file['name'], file['buffer'])
    uploaded_inline.append({ 'original_src': file['original_src'], 'src': url })

final_html = replace_src(result['last_message'], uploaded_inline)

See sample

Methods and Interfaces

parse_email(email: Union[bytes, str]) -> dict

Parses the raw .eml file content and extracts the clean HTML message along with attachments.

Returns: A dictionary with the following keys:

  • last_message (str): The pure HTML content with replies and signatures stripped.
  • attachments (list of dict): A list of standard attachments.
  • inline_attachments (list of dict): A list of inline attachments embedded in the email.

Each file dictionary contains:

  • name (str): File name.
  • type (str): MIME type.
  • size (int): File size in bytes.
  • buffer (bytes): File binary data.
  • src (str, optional): Replaced source URL (if modified).
  • original_src (str, optional): The original cid: or source URL found in the HTML.

replace_src(html: str, files: list[dict]) -> str

Replaces the original_src of inline attachments in the HTML with a new src URL.

Other Methods

The following utilities are also exposed for individual operations on HTML:

  • clean_html(html: str) -> str
  • remove_signature(html: str) -> str
  • remove_replies(html: str) -> str
  • remove_dividers(html: str) -> str

License

This project is licensed under the MIT License

Release files for lite-email-parser 2.2.5

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

Source distribution (sdist)

Source distribution for lite-email-parser 2.2.5
File Size Uploaded
lite_email_parser-2.2.5.tar.gz 143.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for lite-email-parser 2.2.5
File
lite_email_parser-2.2.5-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
lite_email_parser-2.2.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
lite_email_parser-2.2.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
lite_email_parser-2.2.5-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
lite_email_parser-2.2.5-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
lite_email_parser-2.2.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
lite_email_parser-2.2.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
lite_email_parser-2.2.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
lite_email_parser-2.2.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
lite_email_parser-2.2.5-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
lite_email_parser-2.2.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
lite_email_parser-2.2.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
lite_email_parser-2.2.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
lite_email_parser-2.2.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
lite_email_parser-2.2.5-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
lite_email_parser-2.2.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
lite_email_parser-2.2.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
lite_email_parser-2.2.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
lite_email_parser-2.2.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
lite_email_parser-2.2.5-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
lite_email_parser-2.2.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
lite_email_parser-2.2.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
lite_email_parser-2.2.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
lite_email_parser-2.2.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
lite_email_parser-2.2.5-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
lite_email_parser-2.2.5-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
lite_email_parser-2.2.5-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
lite_email_parser-2.2.5-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
lite_email_parser-2.2.5-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
lite_email_parser-2.2.5-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 9.4 MB

Release files / lite_email_parser-2.2.5.tar.gz

Download URL lite_email_parser-2.2.5.tar.gz
Size 143.6 kB
Tags Source
SHA-256 checksum
How to use checksums
e3da65a58b478b18d6cb60e057ea5a370868dc901c155d7e44d1c958ded82152
BLAKE2b-256 checksum
How to use checksums
d401742bf0fc0aa4cc00ddfb22262a1be3c8a6de907bd9a7d0ddb3fd4b44cd24
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp314-cp314-win_amd64.whl

Download URL lite_email_parser-2.2.5-cp314-cp314-win_amd64.whl
Size 364.6 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c922d610fac4647836a3f523bf6ef772d9e573d14b9e11bcc579d9e8dced14dc
BLAKE2b-256 checksum
How to use checksums
06007485dae1e12bf62eec3b60fafe243761e7221f1acf98710a96a70fa19b97
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL lite_email_parser-2.2.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 419.3 kB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6200358ec95ec7c70eedb824dba7fea7f553cd110d30c1a07b864974a70223b8
BLAKE2b-256 checksum
How to use checksums
99c29f628efdc5d30795de8013d13e1d10e4c9561036f8398529d33c42f04391
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL lite_email_parser-2.2.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 410.2 kB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
87fff42a7b51583f750dfd675f6f04077a7e0bee314844d0e072fcd1035353a6
BLAKE2b-256 checksum
How to use checksums
ce21fcad4ecf2967a0906a8bc3f39c16fef9ee3a539822888170c157d21fdefb
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp314-cp314-macosx_11_0_arm64.whl

Download URL lite_email_parser-2.2.5-cp314-cp314-macosx_11_0_arm64.whl
Size 182.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
94a8ce9c8112e9b44c0d6edb6db45d198c0452acc5d724ad9d97a332bd90f0a4
BLAKE2b-256 checksum
How to use checksums
d2b96e33798374477b9699722fa3281d182464f53080c593e30ba5bd56facbbe
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp314-cp314-macosx_10_15_x86_64.whl

Download URL lite_email_parser-2.2.5-cp314-cp314-macosx_10_15_x86_64.whl
Size 185.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0e94b5706dcb586526ad6f2f1fa47ead32f8ca0113538e26f1224f5d89fca92a
BLAKE2b-256 checksum
How to use checksums
1e726605398aa544909e674bee66315649bec9e2d226e0750493eb88317cfc87
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp313-cp313-win_amd64.whl

Download URL lite_email_parser-2.2.5-cp313-cp313-win_amd64.whl
Size 353.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c86d2aafabebb7d3d690328f8980c79788b0cd4a752a0ab19a9c07656c6dce32
BLAKE2b-256 checksum
How to use checksums
0ca4137a0a3a9ee4e968d25fa4d67c7529ea7dcffd5308d10eea4d3249ea92bd
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL lite_email_parser-2.2.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 419.3 kB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f13687583a94c5a8102b405f7ba29620d6cc25e4912f3675ddf61a546a02aa67
BLAKE2b-256 checksum
How to use checksums
39503a696bdd71d8d261c67ff8f0a71fd018a7b311694f86374f6c205f49a5f3
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL lite_email_parser-2.2.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 409.9 kB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ba4afe78fbfde478b42cabdb355be0e53edfb64468c3096b934cc39b320ffcaf
BLAKE2b-256 checksum
How to use checksums
abc515015418b26e9a6fa4d7f64e117e721e2d39b17bb86d32f716bd0efe4bcf
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL lite_email_parser-2.2.5-cp313-cp313-macosx_11_0_arm64.whl
Size 182.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
03f25ab357d0230207cc37ff4f23e34034a0640883665a2ef2e1a6575ca52d53
BLAKE2b-256 checksum
How to use checksums
55ba5cdf1b681a484744be64ec916d0a74264233b68a001a2b8dee196b20c85f
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp313-cp313-macosx_10_13_x86_64.whl

Download URL lite_email_parser-2.2.5-cp313-cp313-macosx_10_13_x86_64.whl
Size 185.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2c4815cc4e927580eb43066c59dd6fc1e780d9170ec45e5243bb1ee24058d18c
BLAKE2b-256 checksum
How to use checksums
1aae900712a5faec66a6e1842850c32a7f4cf2aca6dde4c16b6bbc091a3cc3af
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp312-cp312-win_amd64.whl

Download URL lite_email_parser-2.2.5-cp312-cp312-win_amd64.whl
Size 353.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6ce5953fd1d4747b596d2f6e37a1a72fe164f2c9785b1d77e56729a31c8c7306
BLAKE2b-256 checksum
How to use checksums
4740446894ccb0f4d7f2ee3dbfb233891b66347d1bd7cc7d8a5a416c97edb51b
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL lite_email_parser-2.2.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 419.2 kB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
04ff1d98091f6948e56e1975c2d4cc4f76973d87cfd7b04ae8aed85fde434256
BLAKE2b-256 checksum
How to use checksums
59e5b45a0a15e61a9f428b5fc3abbbf38d84cb598328dbbce147112e87c1f188
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL lite_email_parser-2.2.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 409.9 kB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
024b6b31b72bf69981b8c1cd3146b8f92afaeba5acb28aa69ad02faf3f7b39cd
BLAKE2b-256 checksum
How to use checksums
97ff16e5e13875ce49a93dfa77e6c2d8cad8485fb0e2921ba7eff7ec50b032db
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL lite_email_parser-2.2.5-cp312-cp312-macosx_11_0_arm64.whl
Size 182.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
123db0043c0f13d6decde9f8b07a9c848f72af19ff16a7aab7f59cba6fd49247
BLAKE2b-256 checksum
How to use checksums
dc476bf1e101bb9953c788886365303690464ca104ef64c9078f8e7d90864a81
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp312-cp312-macosx_10_13_x86_64.whl

Download URL lite_email_parser-2.2.5-cp312-cp312-macosx_10_13_x86_64.whl
Size 185.7 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5417aaffeeb833e737666c51da369cc88f1b92d53329c965c7f183703dd86eff
BLAKE2b-256 checksum
How to use checksums
2d4f666cddc1961014c353b147b1b6ab9ad01b8dc2739bcae8c6512de5e5bc71
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp311-cp311-win_amd64.whl

Download URL lite_email_parser-2.2.5-cp311-cp311-win_amd64.whl
Size 352.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
aa4ddadef635017cd0407edb6a4cdfa1c9e64ee73a60ae832ee4c554f33d655a
BLAKE2b-256 checksum
How to use checksums
0cea4cd645c0c8dc068b7a92dbedf02aff564d5bbcf408832a17170f78299c53
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL lite_email_parser-2.2.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 417.0 kB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
dd87c21558c477076ae179c4e917b111edbfcbea80f49ce25120bc0eed449f50
BLAKE2b-256 checksum
How to use checksums
4ad1c1befec3b6e27e4aed71c2d85bed9232bf0a3d2a61948bbe6efdd03ad285
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL lite_email_parser-2.2.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 408.5 kB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
98b01289622d0972670326ed7fd64cbdf1e0a7553e8f52bae1cd80849e7a96c7
BLAKE2b-256 checksum
How to use checksums
4e8671b8a228c9730606ee28a56d65135c1a6d9493b986bb8136a18dd18282b3
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL lite_email_parser-2.2.5-cp311-cp311-macosx_11_0_arm64.whl
Size 181.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8239e56c375f20c3befcdf1a2b40436ebd341d8c613a8545fc37134140d1a34e
BLAKE2b-256 checksum
How to use checksums
ff7108bb62a9bb17772e70a740abf576fc558e0538fc5a3e992b8f697098f49f
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp311-cp311-macosx_10_9_x86_64.whl

Download URL lite_email_parser-2.2.5-cp311-cp311-macosx_10_9_x86_64.whl
Size 184.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
873c284943375e3aa964744536e003e0d9461fa50728a47df34d30b78b2ff199
BLAKE2b-256 checksum
How to use checksums
b0da7fe11e32236403d179fd68a0584e5d35c4960d7e3d1b020115b3ca010ffe
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp310-cp310-win_amd64.whl

Download URL lite_email_parser-2.2.5-cp310-cp310-win_amd64.whl
Size 351.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
96a154d7c3d342fef67aea3d37bc8a5594aaedb7a16ad041b745f58316f3e461
BLAKE2b-256 checksum
How to use checksums
d00326a558df41e283b9f5b5f92077841773a4cc9e4e738eb30e1fa06efa01fa
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL lite_email_parser-2.2.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 415.9 kB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2bca43fe90c14641579a4fd41f3f1ac0ac61c4acdad7bba222e676af38694a02
BLAKE2b-256 checksum
How to use checksums
8c9f83e899404880687dc5a2fab8ed457ca27b933121449aa94cc99974edc19b
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL lite_email_parser-2.2.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 407.8 kB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d2ce0dae42e45c420a07851078a0ede5185530b904b5bba38970a4d1cd4ef366
BLAKE2b-256 checksum
How to use checksums
313e90f3fffc6f8126e9bf79a37a4bb38e78e977bc24143002d172f42789f0bb
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL lite_email_parser-2.2.5-cp310-cp310-macosx_11_0_arm64.whl
Size 180.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fc757ed3071cc42244c21145dd3d59cf70334b12a29d9ffa83f7ecda1499c6b4
BLAKE2b-256 checksum
How to use checksums
cb14cb0c447d17b400f2227b0497f9c24f447baeb19674c2f39fb7b69aec8083
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp310-cp310-macosx_10_9_x86_64.whl

Download URL lite_email_parser-2.2.5-cp310-cp310-macosx_10_9_x86_64.whl
Size 183.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
84a89c3d7e953cd363aa19899fa1ce550c8a1a7156dd3207a03c582927b7aac5
BLAKE2b-256 checksum
How to use checksums
091b560d6ce854326f49637e97217a52184568f1523419e4630300a1e100ce96
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp39-cp39-win_amd64.whl

Download URL lite_email_parser-2.2.5-cp39-cp39-win_amd64.whl
Size 353.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
1f011b3c9d55dbbbf6a70cb1227b42ddcc76930eae17c286a27a1ebc4c7217f0
BLAKE2b-256 checksum
How to use checksums
4c3d09009aac451866b5860c49c9add9e9dfea11eb714f04d05df8be3ddd6a95
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL lite_email_parser-2.2.5-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 416.1 kB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8bebf77e871bc04fafbea34596d4b754ec6201f433921f132d7433c7abf695fd
BLAKE2b-256 checksum
How to use checksums
f06c9fa95658f4be08fdafad3adf61389128042770f352a067fd4ad418220a7a
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL lite_email_parser-2.2.5-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 407.8 kB
Tags CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2a52e2e6ec8a9d3a573dda953f886461e724ad1a26e85b99f2f9b52a7ba040e5
BLAKE2b-256 checksum
How to use checksums
4508f4ccd34cc54141f3a0d39d52a4554e518d9a8111e5988f2b6fd4fac30176
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp39-cp39-macosx_11_0_arm64.whl

Download URL lite_email_parser-2.2.5-cp39-cp39-macosx_11_0_arm64.whl
Size 180.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7fb227e11d9f8ceb087ac66076c815f33792a6261c80d2e5133374a18a9aa61e
BLAKE2b-256 checksum
How to use checksums
465f4d97457ccb1c67d931e5d038036fc35231b2cde020bb1aa614c3597f713f
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 Aug 12, 2026.

Transparency log

Release files / lite_email_parser-2.2.5-cp39-cp39-macosx_10_9_x86_64.whl

Download URL lite_email_parser-2.2.5-cp39-cp39-macosx_10_9_x86_64.whl
Size 183.4 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
898f5dc451fe20795198949e0d0bd5dbbcbbb0a7de2369e67e8274862bb30329
BLAKE2b-256 checksum
How to use checksums
9230f2921eee3ae32ce9dbc6ba0284eab5a92cd133c472008926b17151a654e2
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 Aug 12, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.2.5 This release

31 release files

2.2.3

31 release files

2.2.2

26 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