Name | plutoprint JSON |
Version |
0.3.0
JSON |
| download |
home_page | None |
Summary | Paged HTML rendering library |
upload_time | 2025-08-14 12:52:45 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | MIT License
Copyright (c) 2024-2025 Samuel Ugochukwu <sammycageagle@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
html
css
svg
pdf
png
html2pdf
html2png
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
|build| |docs| |license| |downloads| |pypi| |pyver|
PlutoPrint
==========
PlutoPrint is a lightweight and easy-to-use Python library for generating high-quality PDFs and images directly from HTML or XML content. It is based on `PlutoBookâs <https://github.com/plutoprint/plutobook>`_ robust rendering engine and provides a simple API to convert your HTML into crisp PDF documents or vibrant image files. This makes it ideal for reports, invoices, or visual snapshots.
Samples
-------
.. list-table::
:header-rows: 1
* - Invoices
- Tickets
* - |invoices|
- |tickets|
Installation
------------
.. code-block:: bash
pip install plutoprint
PlutoPrint depends on `PlutoBook <https://github.com/plutoprint/plutobook>`_. For faster installation, it is highly recommended to `install PlutoBook and its dependencies manually <https://plutoprint.readthedocs.io/en/latest/getting_started.html>`_ beforehand. Otherwise, Meson will build them from source during installation, which can take significantly longer.
For Windows and Linux 64-bit users, PlutoPrint provides **prebuilt binaries**, so no additional setup is required.
Quick Usage
-----------
Generate a PDF from the command line with the installed ``plutoprint`` script:
.. code-block:: bash
plutoprint input.html output.pdf --size=A4
**Generate PDF with Python**
.. code-block:: python
import plutoprint
book = plutoprint.Book(plutoprint.PAGE_SIZE_A4)
book.load_url("input.html")
book.write_to_pdf("output.pdf")
**Generate PNG with Python**
.. code-block:: python
import plutoprint
import math
book = plutoprint.Book(media=plutoprint.MEDIA_TYPE_SCREEN)
book.load_html("<b>Hello World</b>", user_style="body { text-align: center }")
width = math.ceil(book.get_document_width())
height = math.ceil(book.get_document_height())
with plutoprint.ImageCanvas(width, height) as canvas:
canvas.clear_surface(1, 1, 1)
book.render_document(canvas)
canvas.write_to_png("hello.png")
**Generate Charts with Matplotlib**
.. code-block:: python
import plutoprint
import matplotlib.pyplot as plt
import urllib.parse
import io
class CustomResourceFetcher(plutoprint.ResourceFetcher):
def fetch_url(self, url):
if not url.startswith('chart:'):
return super().fetch_url(url)
values = [float(v) for v in urllib.parse.unquote(url[6:]).split(',')]
labels = [chr(65 + i) for i in range(len(values))]
plt.bar(labels, values)
plt.title('Bar Chart')
plt.xlabel('Labels')
plt.ylabel('Values')
buffer = io.BytesIO()
plt.savefig(buffer, format='svg', transparent=True)
return plutoprint.ResourceData(buffer.getvalue(), "image/svg+xml", "utf-8")
book = plutoprint.Book(plutoprint.PAGE_SIZE_A4.landscape(), plutoprint.PAGE_MARGINS_NONE)
book.custom_resource_fetcher = CustomResourceFetcher()
HTML_CONTENT = """
<div>
<img src='chart:23,45,12,36,28,50'>
<img src='chart:5,15,25,35,45'>
<img src='chart:50,40,30,20,10'>
<img src='chart:10,20,30,40,50,60,70'>
</div>
"""
USER_STYLE = """
div { display: flex; flex-wrap: wrap; justify-content: center; height: 98vh }
img { flex: 0 0 45%; height: 50%; background: #fff; border: 1px solid #ccc; }
body { background: #f7f7f7 }
"""
book.load_html(HTML_CONTENT, USER_STYLE)
book.write_to_png("charts.png")
book.write_to_pdf("charts.pdf")
Expected output:
.. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/charts.png
:alt: Charts
Links & Resources
=================
- Documentation: https://plutoprint.readthedocs.io
- Samples: https://github.com/plutoprint/plutoprint-samples
- Code: https://github.com/plutoprint/plutoprint
- Issues: https://github.com/plutoprint/plutoprint/issues
- Donation: https://github.com/sponsors/plutoprint
License
=======
PlutoPrint is licensed under the `MIT License <https://github.com/plutoprint/plutoprint/blob/main/LICENSE>`_, allowing for both personal and commercial use.
.. |build| image:: https://img.shields.io/github/actions/workflow/status/plutoprint/plutoprint/main.yml
:target: https://github.com/plutoprint/plutoprint/actions
.. |docs| image:: https://img.shields.io/readthedocs/plutoprint
:target: https://plutoprint.readthedocs.io
.. |license| image:: https://img.shields.io/pypi/l/plutoprint
:target: https://github.com/plutoprint/plutoprint/blob/main/LICENSE
.. |downloads| image:: https://img.shields.io/pypi/dm/plutoprint
.. |pypi| image:: https://img.shields.io/pypi/v/plutoprint
:target: https://pypi.org/project/plutoprint
.. |pyver| image:: https://img.shields.io/pypi/pyversions/plutoprint
.. |invoices| image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoices.png
:alt: Invoices
.. |tickets| image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/tickets.jpg
:alt: Tickets
Raw data
{
"_id": null,
"home_page": null,
"name": "plutoprint",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "html, css, svg, pdf, png, html2pdf, html2png",
"author": null,
"author_email": "Samuel Ugochukwu <sammycageagle@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/4e/a4/147fd8d379507c118b5766c55b2aff1096904c798c2a6743e49cc3bef765/plutoprint-0.3.0.tar.gz",
"platform": null,
"description": "|build| |docs| |license| |downloads| |pypi| |pyver|\n\nPlutoPrint\n==========\n\nPlutoPrint is a lightweight and easy-to-use Python library for generating high-quality PDFs and images directly from HTML or XML content. It is based on `PlutoBook\u2019s <https://github.com/plutoprint/plutobook>`_ robust rendering engine and provides a simple API to convert your HTML into crisp PDF documents or vibrant image files. This makes it ideal for reports, invoices, or visual snapshots.\n\nSamples\n-------\n\n.. list-table::\n :header-rows: 1\n\n * - Invoices\n - Tickets\n * - |invoices|\n - |tickets|\n\nInstallation\n------------\n\n.. code-block:: bash\n\n pip install plutoprint\n\nPlutoPrint depends on `PlutoBook <https://github.com/plutoprint/plutobook>`_. For faster installation, it is highly recommended to `install PlutoBook and its dependencies manually <https://plutoprint.readthedocs.io/en/latest/getting_started.html>`_ beforehand. Otherwise, Meson will build them from source during installation, which can take significantly longer.\n\nFor Windows and Linux 64-bit users, PlutoPrint provides **prebuilt binaries**, so no additional setup is required.\n\nQuick Usage\n-----------\n\nGenerate a PDF from the command line with the installed ``plutoprint`` script:\n\n.. code-block:: bash\n\n plutoprint input.html output.pdf --size=A4\n\n**Generate PDF with Python**\n\n.. code-block:: python\n\n import plutoprint\n\n book = plutoprint.Book(plutoprint.PAGE_SIZE_A4)\n book.load_url(\"input.html\")\n book.write_to_pdf(\"output.pdf\")\n\n**Generate PNG with Python**\n\n.. code-block:: python\n\n import plutoprint\n import math\n\n book = plutoprint.Book(media=plutoprint.MEDIA_TYPE_SCREEN)\n book.load_html(\"<b>Hello World</b>\", user_style=\"body { text-align: center }\")\n\n width = math.ceil(book.get_document_width())\n height = math.ceil(book.get_document_height())\n\n with plutoprint.ImageCanvas(width, height) as canvas:\n canvas.clear_surface(1, 1, 1)\n book.render_document(canvas)\n canvas.write_to_png(\"hello.png\")\n\n**Generate Charts with Matplotlib**\n\n.. code-block:: python\n\n import plutoprint\n\n import matplotlib.pyplot as plt\n import urllib.parse\n import io\n\n class CustomResourceFetcher(plutoprint.ResourceFetcher):\n def fetch_url(self, url):\n if not url.startswith('chart:'):\n return super().fetch_url(url)\n values = [float(v) for v in urllib.parse.unquote(url[6:]).split(',')]\n labels = [chr(65 + i) for i in range(len(values))]\n\n plt.bar(labels, values)\n plt.title('Bar Chart')\n plt.xlabel('Labels')\n plt.ylabel('Values')\n\n buffer = io.BytesIO()\n plt.savefig(buffer, format='svg', transparent=True)\n\n return plutoprint.ResourceData(buffer.getvalue(), \"image/svg+xml\", \"utf-8\")\n\n book = plutoprint.Book(plutoprint.PAGE_SIZE_A4.landscape(), plutoprint.PAGE_MARGINS_NONE)\n\n book.custom_resource_fetcher = CustomResourceFetcher()\n\n HTML_CONTENT = \"\"\"\n <div>\n <img src='chart:23,45,12,36,28,50'>\n <img src='chart:5,15,25,35,45'>\n <img src='chart:50,40,30,20,10'>\n <img src='chart:10,20,30,40,50,60,70'>\n </div>\n \"\"\"\n\n USER_STYLE = \"\"\"\n div { display: flex; flex-wrap: wrap; justify-content: center; height: 98vh }\n img { flex: 0 0 45%; height: 50%; background: #fff; border: 1px solid #ccc; }\n body { background: #f7f7f7 }\n \"\"\"\n\n book.load_html(HTML_CONTENT, USER_STYLE)\n book.write_to_png(\"charts.png\")\n book.write_to_pdf(\"charts.pdf\")\n\nExpected output:\n\n.. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/charts.png\n :alt: Charts\n\nLinks & Resources\n=================\n\n- Documentation: https://plutoprint.readthedocs.io\n- Samples: https://github.com/plutoprint/plutoprint-samples\n- Code: https://github.com/plutoprint/plutoprint\n- Issues: https://github.com/plutoprint/plutoprint/issues\n- Donation: https://github.com/sponsors/plutoprint\n\nLicense\n=======\n\nPlutoPrint is licensed under the `MIT License <https://github.com/plutoprint/plutoprint/blob/main/LICENSE>`_, allowing for both personal and commercial use.\n\n.. |build| image:: https://img.shields.io/github/actions/workflow/status/plutoprint/plutoprint/main.yml\n :target: https://github.com/plutoprint/plutoprint/actions\n.. |docs| image:: https://img.shields.io/readthedocs/plutoprint\n :target: https://plutoprint.readthedocs.io\n.. |license| image:: https://img.shields.io/pypi/l/plutoprint\n :target: https://github.com/plutoprint/plutoprint/blob/main/LICENSE\n.. |downloads| image:: https://img.shields.io/pypi/dm/plutoprint\n.. |pypi| image:: https://img.shields.io/pypi/v/plutoprint\n :target: https://pypi.org/project/plutoprint\n.. |pyver| image:: https://img.shields.io/pypi/pyversions/plutoprint\n.. |invoices| image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoices.png\n :alt: Invoices\n.. |tickets| image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/tickets.jpg\n :alt: Tickets\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2024-2025 Samuel Ugochukwu <sammycageagle@gmail.com>\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "Paged HTML rendering library",
"version": "0.3.0",
"project_urls": {
"Code": "https://github.com/plutoprint/plutoprint",
"Documentation": "https://plutoprint.readthedocs.io",
"Donation": "https://github.com/sponsors/plutoprint",
"Homepage": "https://github.com/plutoprint",
"Issues": "https://github.com/plutoprint/plutoprint/issues"
},
"split_keywords": [
"html",
" css",
" svg",
" pdf",
" png",
" html2pdf",
" html2png"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "6abf99c2ceb319a62c7c440d6fe3aee6d53904714e8221595e1a1fd3c8ddae42",
"md5": "0d044b452fa355f396c62dcba6fb0528",
"sha256": "c6dace2d956b055b13e9e0319639918552fc393c3d8423b259956e9b9742616a"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0d044b452fa355f396c62dcba6fb0528",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 20672264,
"upload_time": "2025-08-14T12:52:14",
"upload_time_iso_8601": "2025-08-14T12:52:14.893798Z",
"url": "https://files.pythonhosted.org/packages/6a/bf/99c2ceb319a62c7c440d6fe3aee6d53904714e8221595e1a1fd3c8ddae42/plutoprint-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3bd221d3e28c47a9c773d7432092c75863472d5ad7ea23274d8671634619066b",
"md5": "f6cdbd05f80454b4e65a1380a28fa531",
"sha256": "c6b408784f7de2b098dcede9e54633a54adfa164e18e85adbee70111182dcc99"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "f6cdbd05f80454b4e65a1380a28fa531",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 19137254,
"upload_time": "2025-08-14T12:52:18",
"upload_time_iso_8601": "2025-08-14T12:52:18.033763Z",
"url": "https://files.pythonhosted.org/packages/3b/d2/21d3e28c47a9c773d7432092c75863472d5ad7ea23274d8671634619066b/plutoprint-0.3.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b8495c8a7acafcc763eeb723db935bdf1a0d2686e705a8cbedc1e37453235980",
"md5": "12e61735ca5323461ac33d299db12576",
"sha256": "5409ae7e92a8548207d0156e9caea8eab9fc356512b42918deb5dabc3a53fd3b"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "12e61735ca5323461ac33d299db12576",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 20672264,
"upload_time": "2025-08-14T12:52:22",
"upload_time_iso_8601": "2025-08-14T12:52:22.368183Z",
"url": "https://files.pythonhosted.org/packages/b8/49/5c8a7acafcc763eeb723db935bdf1a0d2686e705a8cbedc1e37453235980/plutoprint-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76b3c49b5c44a0463b6b9c5bc5ad23e5379c0ecc456998132e559ba055feabb2",
"md5": "6d46c0f8f45c2fbfe1885ddc796480a5",
"sha256": "7df726982a8c08410d6392bd0ce1f396b3ca467f842f3c31801a65baef9c0003"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "6d46c0f8f45c2fbfe1885ddc796480a5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 19137263,
"upload_time": "2025-08-14T12:52:25",
"upload_time_iso_8601": "2025-08-14T12:52:25.359880Z",
"url": "https://files.pythonhosted.org/packages/76/b3/c49b5c44a0463b6b9c5bc5ad23e5379c0ecc456998132e559ba055feabb2/plutoprint-0.3.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fec030d2f230ad187830893f97086d6378703a58742a9467e560336fab3d0fd8",
"md5": "63f8acb2ac3b6b68c6a949620aab8251",
"sha256": "45c652ba854aa038a58f58a1dbff25cb4d8fdea0e8d3133a1f447df6e23381d4"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "63f8acb2ac3b6b68c6a949620aab8251",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 20672382,
"upload_time": "2025-08-14T12:52:28",
"upload_time_iso_8601": "2025-08-14T12:52:28.804214Z",
"url": "https://files.pythonhosted.org/packages/fe/c0/30d2f230ad187830893f97086d6378703a58742a9467e560336fab3d0fd8/plutoprint-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "979bbcde6823a43ce6497c62ce214c24b4a3cadfe484c05221d9f7ca13ee3303",
"md5": "38ad5ac1a0e55456cc675958bafeaa83",
"sha256": "f3319cc690ec3cebb400c94ccbb23dbee3e0559cf859c30280572dadac9aa276"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "38ad5ac1a0e55456cc675958bafeaa83",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 19137360,
"upload_time": "2025-08-14T12:52:31",
"upload_time_iso_8601": "2025-08-14T12:52:31.677439Z",
"url": "https://files.pythonhosted.org/packages/97/9b/bcde6823a43ce6497c62ce214c24b4a3cadfe484c05221d9f7ca13ee3303/plutoprint-0.3.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb9bf3555e53f56482131aae9acd0f45dbedda0cbd77e636ca6ae69a910fa6a5",
"md5": "eb363fcf8b6c2bd1f37c015aad6f3a2a",
"sha256": "1772d8d8ec0470654b13f5e8c935595cc78ebd07b33fba3852ddfe56d20c236b"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "eb363fcf8b6c2bd1f37c015aad6f3a2a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 20672356,
"upload_time": "2025-08-14T12:52:34",
"upload_time_iso_8601": "2025-08-14T12:52:34.555178Z",
"url": "https://files.pythonhosted.org/packages/cb/9b/f3555e53f56482131aae9acd0f45dbedda0cbd77e636ca6ae69a910fa6a5/plutoprint-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "927817d0252a5dfa7bf1034eaf157e7f5616fa7633501afecdf26d2ec6769fe7",
"md5": "779b7933442785fc620bdaeddb6c241f",
"sha256": "d93dc0a5e0ac102757c9e2f01aba957ac9c08b56f5d2434d78ae21f95fa6aa80"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "779b7933442785fc620bdaeddb6c241f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 19137363,
"upload_time": "2025-08-14T12:52:37",
"upload_time_iso_8601": "2025-08-14T12:52:37.689175Z",
"url": "https://files.pythonhosted.org/packages/92/78/17d0252a5dfa7bf1034eaf157e7f5616fa7633501afecdf26d2ec6769fe7/plutoprint-0.3.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bebb75d44c90e927c9faec4f7464c0a03b31a5ab26ea94f4ac22d4010f2e92ab",
"md5": "905bd791aeeb453da15a1376c834a9bf",
"sha256": "a77f1c0c47daa73add346d680ef4486e9e30ce0eb50acceb0cb925fbbbf3f4ea"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "905bd791aeeb453da15a1376c834a9bf",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.10",
"size": 20672375,
"upload_time": "2025-08-14T12:52:40",
"upload_time_iso_8601": "2025-08-14T12:52:40.329734Z",
"url": "https://files.pythonhosted.org/packages/be/bb/75d44c90e927c9faec4f7464c0a03b31a5ab26ea94f4ac22d4010f2e92ab/plutoprint-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b22f0175c89b423e81072625ce4910e8e1b93b41c4f5dadec2acac3d1f92c2f",
"md5": "f60fa4ce99d48ce2c5309b25c42296f1",
"sha256": "a97a63745c9cf87e8a0927e5dc4ea9148cd3d4409c8ae482b72c29eeac562f45"
},
"downloads": -1,
"filename": "plutoprint-0.3.0-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "f60fa4ce99d48ce2c5309b25c42296f1",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.10",
"size": 19893274,
"upload_time": "2025-08-14T12:52:42",
"upload_time_iso_8601": "2025-08-14T12:52:42.766023Z",
"url": "https://files.pythonhosted.org/packages/8b/22/f0175c89b423e81072625ce4910e8e1b93b41c4f5dadec2acac3d1f92c2f/plutoprint-0.3.0-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ea4147fd8d379507c118b5766c55b2aff1096904c798c2a6743e49cc3bef765",
"md5": "4ccd62a912844f6b95861eba78cc4d6a",
"sha256": "aeb1545c9d6564491de1b22d8c6e2d38f21140012b261648c63805c084deb979"
},
"downloads": -1,
"filename": "plutoprint-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "4ccd62a912844f6b95861eba78cc4d6a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 32225,
"upload_time": "2025-08-14T12:52:45",
"upload_time_iso_8601": "2025-08-14T12:52:45.056027Z",
"url": "https://files.pythonhosted.org/packages/4e/a4/147fd8d379507c118b5766c55b2aff1096904c798c2a6743e49cc3bef765/plutoprint-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-14 12:52:45",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "plutoprint",
"github_project": "plutoprint",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "plutoprint"
}