html2text-rs


Namehtml2text-rs JSON
Version 0.2.1 PyPI version JSON
download
home_pageNone
SummaryConvert HTML to markdown or plain text
upload_time2024-12-26 20:05:39
maintainerNone
docs_urlNone
authordeedy5
requires_python>=3.8
licenseMIT License
keywords python html2text html-to-text html-to-markdown html2md markdown
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Python >= 3.8](https://img.shields.io/badge/python->=3.8-red.svg) [![](https://badgen.net/github/release/deedy5/html2text_rs)](https://github.com/deedy5/html2text_rs/releases) [![](https://badge.fury.io/py/html2text_rs.svg)](https://pypi.org/project/html2text_rs) [![Downloads](https://static.pepy.tech/badge/html2text_rs/week)](https://pepy.tech/project/html2text_rs) [![CI](https://github.com/deedy5/html2text_rs/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/deedy5/html2text_rs/actions/workflows/CI.yml)

# html2text_rs
Convert HTML to markdown or plain text.</br>
Python binding to the rust [rust-html2text](https://github.com/jugglerchris/rust-html2text) library.

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
  - [text_markdown()](#1-text_markdown)
  - [text_plain()](#2-text_plain)
  - [text_rich()](#3-text_rich)

## Installation

```python
pip install -U html2text_rs
```

## Usage
### 1. text_markdown()
```python
def text_markdown(html: str, width: int = 100):
    """Convert HTML to markdown text.

    Args:
        html (str): input html text.
        width (int): wrap text to width columns. Default is 100.

    """
```
example:
```python
import html2text_rs
import requests

resp = requests.get("https://en.wikipedia.org/wiki/AGM-88_HARM")

text_markdown = html2text_rs.text_markdown(resp.text)
print(text_markdown)
```
### 2. text_plain()
```python
def text_plain(html: str, width: int = 100):
    """Convert HTML to plain text.

    Args:
        html (str): input html text.
        width (int): wrap text to width columns. Default is 100.

    """
```
example:
```python
import html2text_rs
import requests

resp = requests.get("https://en.wikipedia.org/wiki/AGM-88_HARM")

text_plain = html2text_rs.text_plain(resp.text)
print(text_plain)
```
### 3. text_rich()
```python
def text_rich(html: str, width: int = 100):
    """Convert HTML to rich text.

    Args:
        html (str): input html text.
        width (int): wrap text to width columns. Default is 100.

    """
```
example:
```python
import html2text_rs
import requests

resp = requests.get("https://en.wikipedia.org/wiki/AGM-88_HARM")

text_rich = html2text_rs.text_rich(resp.text)
print(text_rich)
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "html2text-rs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "python, html2text, html-to-text, html-to-markdown, html2md, markdown",
    "author": "deedy5",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/fb/37/f49f353b8c0bec0de45f417526e04e7dd9c42b2a97e6e8aaf83bba662767/html2text_rs-0.2.1.tar.gz",
    "platform": null,
    "description": "![Python >= 3.8](https://img.shields.io/badge/python->=3.8-red.svg) [![](https://badgen.net/github/release/deedy5/html2text_rs)](https://github.com/deedy5/html2text_rs/releases) [![](https://badge.fury.io/py/html2text_rs.svg)](https://pypi.org/project/html2text_rs) [![Downloads](https://static.pepy.tech/badge/html2text_rs/week)](https://pepy.tech/project/html2text_rs) [![CI](https://github.com/deedy5/html2text_rs/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/deedy5/html2text_rs/actions/workflows/CI.yml)\n\n# html2text_rs\nConvert HTML to markdown or plain text.</br>\nPython binding to the rust [rust-html2text](https://github.com/jugglerchris/rust-html2text) library.\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n  - [text_markdown()](#1-text_markdown)\n  - [text_plain()](#2-text_plain)\n  - [text_rich()](#3-text_rich)\n\n## Installation\n\n```python\npip install -U html2text_rs\n```\n\n## Usage\n### 1. text_markdown()\n```python\ndef text_markdown(html: str, width: int = 100):\n    \"\"\"Convert HTML to markdown text.\n\n    Args:\n        html (str): input html text.\n        width (int): wrap text to width columns. Default is 100.\n\n    \"\"\"\n```\nexample:\n```python\nimport html2text_rs\nimport requests\n\nresp = requests.get(\"https://en.wikipedia.org/wiki/AGM-88_HARM\")\n\ntext_markdown = html2text_rs.text_markdown(resp.text)\nprint(text_markdown)\n```\n### 2. text_plain()\n```python\ndef text_plain(html: str, width: int = 100):\n    \"\"\"Convert HTML to plain text.\n\n    Args:\n        html (str): input html text.\n        width (int): wrap text to width columns. Default is 100.\n\n    \"\"\"\n```\nexample:\n```python\nimport html2text_rs\nimport requests\n\nresp = requests.get(\"https://en.wikipedia.org/wiki/AGM-88_HARM\")\n\ntext_plain = html2text_rs.text_plain(resp.text)\nprint(text_plain)\n```\n### 3. text_rich()\n```python\ndef text_rich(html: str, width: int = 100):\n    \"\"\"Convert HTML to rich text.\n\n    Args:\n        html (str): input html text.\n        width (int): wrap text to width columns. Default is 100.\n\n    \"\"\"\n```\nexample:\n```python\nimport html2text_rs\nimport requests\n\nresp = requests.get(\"https://en.wikipedia.org/wiki/AGM-88_HARM\")\n\ntext_rich = html2text_rs.text_rich(resp.text)\nprint(text_rich)\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Convert HTML to markdown or plain text",
    "version": "0.2.1",
    "project_urls": null,
    "split_keywords": [
        "python",
        " html2text",
        " html-to-text",
        " html-to-markdown",
        " html2md",
        " markdown"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3937d4b35a1b0c88d64b96ca82b20d2e1bcb569e0bcc13d8349c64cc0147ce39",
                "md5": "3ad5655deaef7da886e41d899f32344b",
                "sha256": "6edbf84c0f32c73ce5499fb07e48c3c177cd7d2d7df9d94a7f66b2a85d0ae88e"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ad5655deaef7da886e41d899f32344b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 479092,
            "upload_time": "2024-12-26T20:05:19",
            "upload_time_iso_8601": "2024-12-26T20:05:19.199866Z",
            "url": "https://files.pythonhosted.org/packages/39/37/d4b35a1b0c88d64b96ca82b20d2e1bcb569e0bcc13d8349c64cc0147ce39/html2text_rs-0.2.1-cp313-cp313t-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3509ae7d75a6d146d1a28c483dff6863f13c219293a0c70f1106e1f6fcf33e4b",
                "md5": "7a65e512a5a1ebd5b75ebc1ea038434d",
                "sha256": "52f6fb1874246752359697263a1188fef386df72d7cc2fa920d62a8ca2abb3f9"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7a65e512a5a1ebd5b75ebc1ea038434d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 449437,
            "upload_time": "2024-12-26T20:05:15",
            "upload_time_iso_8601": "2024-12-26T20:05:15.678116Z",
            "url": "https://files.pythonhosted.org/packages/35/09/ae7d75a6d146d1a28c483dff6863f13c219293a0c70f1106e1f6fcf33e4b/html2text_rs-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac4dbe3e7999b4d43c392e15a2d9ae64a67a1b9d9c486f2c87a3c94dcd045bfe",
                "md5": "8fd12ea8f0be839f48f7343b124312cf",
                "sha256": "fbc38b4e370b522c7bf7e605fa05df882de6d191a426ef75bde6cfd87b697955"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8fd12ea8f0be839f48f7343b124312cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 516496,
            "upload_time": "2024-12-26T20:04:44",
            "upload_time_iso_8601": "2024-12-26T20:04:44.518706Z",
            "url": "https://files.pythonhosted.org/packages/ac/4d/be3e7999b4d43c392e15a2d9ae64a67a1b9d9c486f2c87a3c94dcd045bfe/html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2374c6ddea6194b1a585cc8a05c4162f9eb72fefa07727d774478a47cde2512",
                "md5": "288862e1c5225f352566818c6affd82e",
                "sha256": "bec45553a47a5d4a85ce08c2d33e5eb733572de4e8418a0836766c0076b5991c"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "288862e1c5225f352566818c6affd82e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 498430,
            "upload_time": "2024-12-26T20:04:51",
            "upload_time_iso_8601": "2024-12-26T20:04:51.127011Z",
            "url": "https://files.pythonhosted.org/packages/d2/37/4c6ddea6194b1a585cc8a05c4162f9eb72fefa07727d774478a47cde2512/html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ffd309a06c012c064b7a88e1644ac10a1c941e292ccf0339a6dc8be8b050a2c",
                "md5": "fa1ea06401e6d51ce602e80fc5c3d606",
                "sha256": "75d57fa7fb0e1a5d4ceb708b06de41384206aa3aac4d1a6cd32d60d29bbeac78"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fa1ea06401e6d51ce602e80fc5c3d606",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 596549,
            "upload_time": "2024-12-26T20:04:56",
            "upload_time_iso_8601": "2024-12-26T20:04:56.338947Z",
            "url": "https://files.pythonhosted.org/packages/8f/fd/309a06c012c064b7a88e1644ac10a1c941e292ccf0339a6dc8be8b050a2c/html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9d86ba364c5262b1dc14f1afa2b6c0e70c5c081b5feee4c80cfe8d2f4887302",
                "md5": "f0195f9dc029ef6e28724be7be2bbefb",
                "sha256": "df1fd9c3a814372d7f87a6d69a1db3c6cc7f2b159a8a4999ffe26c2f567f771c"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f0195f9dc029ef6e28724be7be2bbefb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 762231,
            "upload_time": "2024-12-26T20:05:00",
            "upload_time_iso_8601": "2024-12-26T20:05:00.622812Z",
            "url": "https://files.pythonhosted.org/packages/f9/d8/6ba364c5262b1dc14f1afa2b6c0e70c5c081b5feee4c80cfe8d2f4887302/html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65ed41951e85a1ee818b56084d3f8a1fa7ee10f2f300faa2168b21d68bb3d830",
                "md5": "0510181f38f2de5146249d45b4a9f8fe",
                "sha256": "05fbacc89b356a184da7b2a4a92c7c6d90d9bb52f50884d1bdd65a652ae68abc"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0510181f38f2de5146249d45b4a9f8fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 547187,
            "upload_time": "2024-12-26T20:05:10",
            "upload_time_iso_8601": "2024-12-26T20:05:10.367947Z",
            "url": "https://files.pythonhosted.org/packages/65/ed/41951e85a1ee818b56084d3f8a1fa7ee10f2f300faa2168b21d68bb3d830/html2text_rs-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6676f70651f48b8683a4fc0096d1c2363ff86d336605c2639357777d8fd852e9",
                "md5": "dd68c03c67ceb30408f7b2b9eb1a33ff",
                "sha256": "2a85501e76390fb40224c606e8354b8aee00b6c87d35c54fa97da5abe0e62038"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "dd68c03c67ceb30408f7b2b9eb1a33ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 531236,
            "upload_time": "2024-12-26T20:05:05",
            "upload_time_iso_8601": "2024-12-26T20:05:05.629617Z",
            "url": "https://files.pythonhosted.org/packages/66/76/f70651f48b8683a4fc0096d1c2363ff86d336605c2639357777d8fd852e9/html2text_rs-0.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ac6cb89dbe588b2d27869b832b54fe540a656c1a0738fefb96e6186b6f38727",
                "md5": "12158ee12094cbadb5afc59a7269e8b5",
                "sha256": "44951d7d30df5922f0b666e5a3cf0fb40547787f1f6fe56ba27bc4fe6b5db080"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "12158ee12094cbadb5afc59a7269e8b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 696879,
            "upload_time": "2024-12-26T20:05:22",
            "upload_time_iso_8601": "2024-12-26T20:05:22.804922Z",
            "url": "https://files.pythonhosted.org/packages/8a/c6/cb89dbe588b2d27869b832b54fe540a656c1a0738fefb96e6186b6f38727/html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88ef911be724d493e60009e6084728c4b5e4549ab64d70cb4b4a7c0b1341a0db",
                "md5": "752cc638d06a4f12e5f270e81f091ad9",
                "sha256": "11ab209569339731fd4141d80b6779566973fb2217ca3caad982a18b63b7aa59"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "752cc638d06a4f12e5f270e81f091ad9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 761490,
            "upload_time": "2024-12-26T20:05:27",
            "upload_time_iso_8601": "2024-12-26T20:05:27.782189Z",
            "url": "https://files.pythonhosted.org/packages/88/ef/911be724d493e60009e6084728c4b5e4549ab64d70cb4b4a7c0b1341a0db/html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2383f7b9dbe8b07cfb18e97595476c4c90286403ea669e6328880f467d6534ce",
                "md5": "27c62c2e1d3a313778ce592a72453c00",
                "sha256": "c1e98b8491c67d73690764ac704af28c89e7c23ce88946d2a88df5e38a4f368a"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "27c62c2e1d3a313778ce592a72453c00",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 707430,
            "upload_time": "2024-12-26T20:05:31",
            "upload_time_iso_8601": "2024-12-26T20:05:31.510027Z",
            "url": "https://files.pythonhosted.org/packages/23/83/f7b9dbe8b07cfb18e97595476c4c90286403ea669e6328880f467d6534ce/html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50cbf289a773b792fb4c410f6425e1a1ea11092f7f9be5ecf9954931cfd20bcb",
                "md5": "520263f6e8bc69fbebd8fad51c3960b8",
                "sha256": "56f5b13d76f2f6ee8ee728b5b58b2c0e9a3e3886ce89296aab5d9d90d2427c6b"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "520263f6e8bc69fbebd8fad51c3960b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 718638,
            "upload_time": "2024-12-26T20:05:36",
            "upload_time_iso_8601": "2024-12-26T20:05:36.277862Z",
            "url": "https://files.pythonhosted.org/packages/50/cb/f289a773b792fb4c410f6425e1a1ea11092f7f9be5ecf9954931cfd20bcb/html2text_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bed24142e4c3ef5242012588a979724d425c50ab962caf7d105f435e3007fa8c",
                "md5": "e78f7e9b0f3316e763019c3ac1fd725e",
                "sha256": "d83fbdcf14f794a41dbf31f85e485a630fd201b824e1c769d96d2368114091b7"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e78f7e9b0f3316e763019c3ac1fd725e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 480589,
            "upload_time": "2024-12-26T20:05:21",
            "upload_time_iso_8601": "2024-12-26T20:05:21.082768Z",
            "url": "https://files.pythonhosted.org/packages/be/d2/4142e4c3ef5242012588a979724d425c50ab962caf7d105f435e3007fa8c/html2text_rs-0.2.1-cp38-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00f5a11cfd947782a6015b67bfcd9fedb0040759709ace3f7c8f9fce27d609bf",
                "md5": "6f40b76232d3c9a9efea8de7c4f50b66",
                "sha256": "093c49863f8c2012d69f177f084c7622846df5c513348f6730f292b0683dac1d"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6f40b76232d3c9a9efea8de7c4f50b66",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 451107,
            "upload_time": "2024-12-26T20:05:17",
            "upload_time_iso_8601": "2024-12-26T20:05:17.617978Z",
            "url": "https://files.pythonhosted.org/packages/00/f5/a11cfd947782a6015b67bfcd9fedb0040759709ace3f7c8f9fce27d609bf/html2text_rs-0.2.1-cp38-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "411a1c7e54ea0e87855269dd8cbd39f90b7de97df84f476b0b754656ee8b022a",
                "md5": "e7f2652a47e5a3953862594b0468ea62",
                "sha256": "494ddd20489f1e6234956fa3b7411bd67afb00ac4f906cf55cf34926d8223a9b"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e7f2652a47e5a3953862594b0468ea62",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 517823,
            "upload_time": "2024-12-26T20:04:48",
            "upload_time_iso_8601": "2024-12-26T20:04:48.407820Z",
            "url": "https://files.pythonhosted.org/packages/41/1a/1c7e54ea0e87855269dd8cbd39f90b7de97df84f476b0b754656ee8b022a/html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12cef1494a768cf358386e95b9052d2ba527435d431cd0235096a72ebeee4f7f",
                "md5": "e026c81288c745468d83a3f89fabef6f",
                "sha256": "de56f07919132173f3b88682f4416fd673d2cb96ad9b6bcbe90bbead2ef4cfdb"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e026c81288c745468d83a3f89fabef6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 499542,
            "upload_time": "2024-12-26T20:04:53",
            "upload_time_iso_8601": "2024-12-26T20:04:53.824420Z",
            "url": "https://files.pythonhosted.org/packages/12/ce/f1494a768cf358386e95b9052d2ba527435d431cd0235096a72ebeee4f7f/html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bf9c74e6509e0a76e2dee8c7007218c37eaf93e9878259b81155683b13cf8e7",
                "md5": "dbbb1626d63e15af50d1d3f021fe110b",
                "sha256": "90c062546b26af0d44039235821c686621b3a4febc3ed5d2ee5f2f395dd87648"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dbbb1626d63e15af50d1d3f021fe110b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 597854,
            "upload_time": "2024-12-26T20:04:58",
            "upload_time_iso_8601": "2024-12-26T20:04:58.937188Z",
            "url": "https://files.pythonhosted.org/packages/3b/f9/c74e6509e0a76e2dee8c7007218c37eaf93e9878259b81155683b13cf8e7/html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5ae45e64d1eadbe6f58ba6e4979efdbaae3ffc50477d4f6b7c9ebd335ccc404",
                "md5": "6b90ddb6b0c4108d706585779546ae2e",
                "sha256": "00a552104a1d7ff2c704874158ff779a2c27f77ef9691590ef13a14abb1da158"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6b90ddb6b0c4108d706585779546ae2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 763715,
            "upload_time": "2024-12-26T20:05:02",
            "upload_time_iso_8601": "2024-12-26T20:05:02.821691Z",
            "url": "https://files.pythonhosted.org/packages/b5/ae/45e64d1eadbe6f58ba6e4979efdbaae3ffc50477d4f6b7c9ebd335ccc404/html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "310f0c896331495f15212a1f8c1ec9765554e1fb360803f5074ef50d553694ad",
                "md5": "ff3eb676c6072ce31fa8434bb1179db3",
                "sha256": "69f1892aa01231e42a0cebbecb731def37033b78ce38ac80c61f0d84465547e9"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff3eb676c6072ce31fa8434bb1179db3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 548466,
            "upload_time": "2024-12-26T20:05:13",
            "upload_time_iso_8601": "2024-12-26T20:05:13.695492Z",
            "url": "https://files.pythonhosted.org/packages/31/0f/0c896331495f15212a1f8c1ec9765554e1fb360803f5074ef50d553694ad/html2text_rs-0.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fdd6fcf8c19f8151452a9a5430a37a88cfcbd8877b1c4fb5a2070762c8425bc",
                "md5": "5b30869ea6dce73656000fcb756799ae",
                "sha256": "9c28e0ecdd7505123bca253a948b99f5b45df7a20f8792f79d5cab50ff61a0a2"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5b30869ea6dce73656000fcb756799ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 532722,
            "upload_time": "2024-12-26T20:05:08",
            "upload_time_iso_8601": "2024-12-26T20:05:08.213129Z",
            "url": "https://files.pythonhosted.org/packages/7f/dd/6fcf8c19f8151452a9a5430a37a88cfcbd8877b1c4fb5a2070762c8425bc/html2text_rs-0.2.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d003971b4cc6614682a385e1b129c87ecc186f982ddb6d204957c363dd0d393",
                "md5": "af83d35f00cb6f585d09a1eb1f70b278",
                "sha256": "ef94b41221bb4f890210da5b897b118a49de93d18c6bf29822a5d8bb893ba39b"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "af83d35f00cb6f585d09a1eb1f70b278",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 698297,
            "upload_time": "2024-12-26T20:05:25",
            "upload_time_iso_8601": "2024-12-26T20:05:25.023337Z",
            "url": "https://files.pythonhosted.org/packages/5d/00/3971b4cc6614682a385e1b129c87ecc186f982ddb6d204957c363dd0d393/html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "909207bf500643893d8b9736f010d35b057c24fe9cfe902479d1f39e8ca74b8a",
                "md5": "75dcf9499c33995fd6d73c73c0cb358a",
                "sha256": "afa13c10da12cd5d0c32616fc61cd7c9b018c216328a194b726dad260e7164a9"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "75dcf9499c33995fd6d73c73c0cb358a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 762836,
            "upload_time": "2024-12-26T20:05:29",
            "upload_time_iso_8601": "2024-12-26T20:05:29.524745Z",
            "url": "https://files.pythonhosted.org/packages/90/92/07bf500643893d8b9736f010d35b057c24fe9cfe902479d1f39e8ca74b8a/html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "132ba1c3f9d6d10b9357aff7ad3f8e6d88a4c3944ca1bb9533697685e0e15b99",
                "md5": "e62ef01c95dfabafede8e7e701d91d67",
                "sha256": "8a3c31982611940be8a84c89d7ba2531361edf5163f91f26ca08c90063df1192"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e62ef01c95dfabafede8e7e701d91d67",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 709125,
            "upload_time": "2024-12-26T20:05:34",
            "upload_time_iso_8601": "2024-12-26T20:05:34.413891Z",
            "url": "https://files.pythonhosted.org/packages/13/2b/a1c3f9d6d10b9357aff7ad3f8e6d88a4c3944ca1bb9533697685e0e15b99/html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3af553788861eb0a0d76e83b7304aa70391d8df2ff3d84e1cdd5b58649700c2",
                "md5": "1be74e5e59addc197b9087fdc0a8794a",
                "sha256": "539139832201a0622de9dc7e33f634fbceec9c65be8c3790b39763bf786ab075"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1be74e5e59addc197b9087fdc0a8794a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 719605,
            "upload_time": "2024-12-26T20:05:38",
            "upload_time_iso_8601": "2024-12-26T20:05:38.165980Z",
            "url": "https://files.pythonhosted.org/packages/c3/af/553788861eb0a0d76e83b7304aa70391d8df2ff3d84e1cdd5b58649700c2/html2text_rs-0.2.1-cp38-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4280ed3a61762fcd9ab20891f5e4d8cea4130f1a15ff233ee4a41d5ab39991f3",
                "md5": "bc1bed8479846afb5db0d2f74d563cf3",
                "sha256": "ed62fda8153acbd5e6c5bb1849d0ad4d7686b6682310a782dbf0acb23e2e189d"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "bc1bed8479846afb5db0d2f74d563cf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 395729,
            "upload_time": "2024-12-26T20:05:43",
            "upload_time_iso_8601": "2024-12-26T20:05:43.505892Z",
            "url": "https://files.pythonhosted.org/packages/42/80/ed3a61762fcd9ab20891f5e4d8cea4130f1a15ff233ee4a41d5ab39991f3/html2text_rs-0.2.1-cp38-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "256e2751b63a63660f618c22ee884b06bf93fd0899e4dc55fe91f1788c51519d",
                "md5": "0bb489d347ae38f43b5641f70bd24d4e",
                "sha256": "1c0448ce7d6f35d9abf9f0c1732e5bcfe499a7b89558983216f14e9eba5b620a"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1-cp38-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0bb489d347ae38f43b5641f70bd24d4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 402022,
            "upload_time": "2024-12-26T20:05:41",
            "upload_time_iso_8601": "2024-12-26T20:05:41.821087Z",
            "url": "https://files.pythonhosted.org/packages/25/6e/2751b63a63660f618c22ee884b06bf93fd0899e4dc55fe91f1788c51519d/html2text_rs-0.2.1-cp38-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb37f49f353b8c0bec0de45f417526e04e7dd9c42b2a97e6e8aaf83bba662767",
                "md5": "104259503d13fb085a3a6b0ee45e217b",
                "sha256": "b9ecf8ae89db679153ec578151892c0f439e7d152ed0548956dead9c4be23363"
            },
            "downloads": -1,
            "filename": "html2text_rs-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "104259503d13fb085a3a6b0ee45e217b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 9480,
            "upload_time": "2024-12-26T20:05:39",
            "upload_time_iso_8601": "2024-12-26T20:05:39.483887Z",
            "url": "https://files.pythonhosted.org/packages/fb/37/f49f353b8c0bec0de45f417526e04e7dd9c42b2a97e6e8aaf83bba662767/html2text_rs-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-26 20:05:39",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "html2text-rs"
}
        
Elapsed time: 0.38729s