plutoprint


Nameplutoprint JSON
Version 0.9.0 PyPI version JSON
download
home_pageNone
SummaryPaged HTML rendering library
upload_time2025-08-30 11:26:03
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT 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.

.. list-table::
   :header-rows: 1

   * - Invoices
     - Tickets
   * - |invoices|
     - |tickets|

Installation
------------

.. code-block:: bash

   pip install plutoprint

PlutoPrint requires `PlutoBook <https://github.com/plutoprint/plutobook>`_. On Windows (``win_amd64``), Linux (``manylinux_2_28_x86_64``) and macOS (``macosx_14_0_arm64``), prebuilt binaries are bundled with the package and no further steps are necessary. On other architectures or when building from source, see the `Getting Started guide <https://plutoprint.readthedocs.io/en/latest/getting_started.html>`_ for dependency setup and build instructions.

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("hello.html")

   # Export the entire document to PDF
   book.write_to_pdf("hello.pdf")

   # Export pages 2 to 15 (inclusive) in order
   book.write_to_pdf("hello-range.pdf", 2, 15, 1)

   # Export pages 15 to 2 (inclusive) in reverse order
   book.write_to_pdf("hello-reverse.pdf", 15, 2, -1)

   # Render pages manually with PDFCanvas (in reverse order)
   with plutoprint.PDFCanvas("hello-canvas.pdf", book.get_page_size()) as canvas:
      canvas.scale(plutoprint.UNITS_PX, plutoprint.UNITS_PX)
      for page_index in range(book.get_page_count() - 1, -1, -1):
         canvas.set_size(book.get_page_size_at(page_index))
         book.render_page(canvas, page_index)
         canvas.show_page()

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 }")

   # Outputs an image at the document’s natural size
   book.write_to_png("hello.png")

   # Outputs a 320px wide image with auto-scaled height
   book.write_to_png("hello-width.png", width=320)

   # Outputs a 240px tall image with auto-scaled width
   book.write_to_png("hello-height.png", height=240)

   # Outputs an 800×200 pixels image (may stretch/squish content)
   book.write_to_png("hello-fixed.png", 800, 200)

   # Get the natural document size
   width = math.ceil(book.get_document_width())
   height = math.ceil(book.get_document_height())

   # Outputs a high-resolution 5x scaled image
   book.write_to_png("hello-scaled.png", width * 5, height * 5)

   # Render manually on a canvas with white background
   with plutoprint.ImageCanvas(width, height) as canvas:
      canvas.clear_surface(1, 1, 1)
      book.render_document(canvas)
      canvas.write_to_png("hello-canvas.png")

Generate QR Codes
^^^^^^^^^^^^^^^^^

Quick example of using ``-pluto-qrcode(<string>[, <color>])`` to create QR codes with optional colors.

.. code-block:: python

   import plutoprint

   HTML_CONTENT = """
   <table>
     <tr>
       <th class="email">Email</th>
       <th class="tel">Tel</th>
     </tr>
     <tr>
       <th class="website">Website</th>
       <th class="github">GitHub</th>
     </tr>
   </table>
   """

   USER_STYLE = """
   body {
     margin: 0;
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     background: #f7f7f7;
     font: 16px Arial;
   }

   table {
     border-spacing: 2rem;
     background: #fff;
     padding: 2rem;
     border: 1px solid #ccc;
     border-radius: 16px;
   }

   th::before {
     display: block;
     width: 130px;
     height: 130px;
     margin: 0 auto 0.8rem;
   }

   .email::before   { content: -pluto-qrcode('mailto:contact@example.com', #16a34a); }
   .tel::before     { content: -pluto-qrcode('tel:+1234567890', #2563eb); }
   .website::before { content: -pluto-qrcode('https://example.com', #ef4444); }
   .github::before  { content: -pluto-qrcode('https://github.com/plutoprint', #f59e0b); }
   """

   book = plutoprint.Book(plutoprint.PAGE_SIZE_LETTER.landscape())
   book.load_html(HTML_CONTENT, USER_STYLE)
   book.write_to_png("qrcard.png")
   book.write_to_pdf("qrcard.pdf")

Expected output:

.. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/qrcard.png
   :alt: QR card

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 = """
   <body>
     <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'>
   </body>
   """

   USER_STYLE = """
   body {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     background: #f7f7f7;
     height: 100vh;
     margin: 0;
   }

   img {
     background: #fff;
     border: 1px solid #ccc;
     margin: auto;
     max-height: 45vh;
   }
   """

   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

Samples
=======

.. list-table:: Invoices

   * - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoice-1.png
          :alt: Invoice 1
     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoice-2.png
          :alt: Invoice 2
     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoice-3.png
          :alt: Invoice 3

.. list-table:: Tickets

   * - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-1.png
          :alt: Ticket 1
     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-2.png
          :alt: Ticket 2
   * - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-3.png
          :alt: Ticket 3
     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-4.png
          :alt: Ticket 4

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/c0/35/aca0b163ae7a201b8b9c27f1c5bc5020b0badc93c7019020288f2099ca21/plutoprint-0.9.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\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 requires `PlutoBook <https://github.com/plutoprint/plutobook>`_. On Windows (``win_amd64``), Linux (``manylinux_2_28_x86_64``) and macOS (``macosx_14_0_arm64``), prebuilt binaries are bundled with the package and no further steps are necessary. On other architectures or when building from source, see the `Getting Started guide <https://plutoprint.readthedocs.io/en/latest/getting_started.html>`_ for dependency setup and build instructions.\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\nGenerate PDF with Python\n^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: python\n\n   import plutoprint\n\n   book = plutoprint.Book(plutoprint.PAGE_SIZE_A4)\n   book.load_url(\"hello.html\")\n\n   # Export the entire document to PDF\n   book.write_to_pdf(\"hello.pdf\")\n\n   # Export pages 2 to 15 (inclusive) in order\n   book.write_to_pdf(\"hello-range.pdf\", 2, 15, 1)\n\n   # Export pages 15 to 2 (inclusive) in reverse order\n   book.write_to_pdf(\"hello-reverse.pdf\", 15, 2, -1)\n\n   # Render pages manually with PDFCanvas (in reverse order)\n   with plutoprint.PDFCanvas(\"hello-canvas.pdf\", book.get_page_size()) as canvas:\n      canvas.scale(plutoprint.UNITS_PX, plutoprint.UNITS_PX)\n      for page_index in range(book.get_page_count() - 1, -1, -1):\n         canvas.set_size(book.get_page_size_at(page_index))\n         book.render_page(canvas, page_index)\n         canvas.show_page()\n\nGenerate PNG with Python\n^^^^^^^^^^^^^^^^^^^^^^^^\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   # Outputs an image at the document\u2019s natural size\n   book.write_to_png(\"hello.png\")\n\n   # Outputs a 320px wide image with auto-scaled height\n   book.write_to_png(\"hello-width.png\", width=320)\n\n   # Outputs a 240px tall image with auto-scaled width\n   book.write_to_png(\"hello-height.png\", height=240)\n\n   # Outputs an 800\u00d7200 pixels image (may stretch/squish content)\n   book.write_to_png(\"hello-fixed.png\", 800, 200)\n\n   # Get the natural document size\n   width = math.ceil(book.get_document_width())\n   height = math.ceil(book.get_document_height())\n\n   # Outputs a high-resolution 5x scaled image\n   book.write_to_png(\"hello-scaled.png\", width * 5, height * 5)\n\n   # Render manually on a canvas with white background\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-canvas.png\")\n\nGenerate QR Codes\n^^^^^^^^^^^^^^^^^\n\nQuick example of using ``-pluto-qrcode(<string>[, <color>])`` to create QR codes with optional colors.\n\n.. code-block:: python\n\n   import plutoprint\n\n   HTML_CONTENT = \"\"\"\n   <table>\n     <tr>\n       <th class=\"email\">Email</th>\n       <th class=\"tel\">Tel</th>\n     </tr>\n     <tr>\n       <th class=\"website\">Website</th>\n       <th class=\"github\">GitHub</th>\n     </tr>\n   </table>\n   \"\"\"\n\n   USER_STYLE = \"\"\"\n   body {\n     margin: 0;\n     height: 100vh;\n     display: flex;\n     justify-content: center;\n     align-items: center;\n     background: #f7f7f7;\n     font: 16px Arial;\n   }\n\n   table {\n     border-spacing: 2rem;\n     background: #fff;\n     padding: 2rem;\n     border: 1px solid #ccc;\n     border-radius: 16px;\n   }\n\n   th::before {\n     display: block;\n     width: 130px;\n     height: 130px;\n     margin: 0 auto 0.8rem;\n   }\n\n   .email::before   { content: -pluto-qrcode('mailto:contact@example.com', #16a34a); }\n   .tel::before     { content: -pluto-qrcode('tel:+1234567890', #2563eb); }\n   .website::before { content: -pluto-qrcode('https://example.com', #ef4444); }\n   .github::before  { content: -pluto-qrcode('https://github.com/plutoprint', #f59e0b); }\n   \"\"\"\n\n   book = plutoprint.Book(plutoprint.PAGE_SIZE_LETTER.landscape())\n   book.load_html(HTML_CONTENT, USER_STYLE)\n   book.write_to_png(\"qrcard.png\")\n   book.write_to_pdf(\"qrcard.pdf\")\n\nExpected output:\n\n.. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/qrcard.png\n   :alt: QR card\n\nGenerate Charts with Matplotlib\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\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   <body>\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   </body>\n   \"\"\"\n\n   USER_STYLE = \"\"\"\n   body {\n     display: flex;\n     flex-wrap: wrap;\n     justify-content: center;\n     align-items: center;\n     background: #f7f7f7;\n     height: 100vh;\n     margin: 0;\n   }\n\n   img {\n     background: #fff;\n     border: 1px solid #ccc;\n     margin: auto;\n     max-height: 45vh;\n   }\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\nSamples\n=======\n\n.. list-table:: Invoices\n\n   * - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoice-1.png\n          :alt: Invoice 1\n     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoice-2.png\n          :alt: Invoice 2\n     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/invoice-3.png\n          :alt: Invoice 3\n\n.. list-table:: Tickets\n\n   * - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-1.png\n          :alt: Ticket 1\n     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-2.png\n          :alt: Ticket 2\n   * - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-3.png\n          :alt: Ticket 3\n     - .. image:: https://raw.githubusercontent.com/plutoprint/plutoprint-samples/main/images/ticket-4.png\n          :alt: Ticket 4\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.9.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": "b24da6279fa3090ec2393fb08866e211c4d30580ce4eac912d91e9508976ce26",
                "md5": "1222ba59a556593ab7a59b9234e5654b",
                "sha256": "f864a3cdaf1e2f1f3fb55847c013023f32f42f95f1c0f745f8b7cb925e422929"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1222ba59a556593ab7a59b9234e5654b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 17460527,
            "upload_time": "2025-08-30T11:25:17",
            "upload_time_iso_8601": "2025-08-30T11:25:17.590219Z",
            "url": "https://files.pythonhosted.org/packages/b2/4d/a6279fa3090ec2393fb08866e211c4d30580ce4eac912d91e9508976ce26/plutoprint-0.9.0-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2625a71739c2ef74dfaecd1b8da1cf18eb1e6bea50e680773b1ae5d433c66dfa",
                "md5": "05e92b503c91daf4a06ecffbaa43852e",
                "sha256": "28d1c5a2d001bee1e2788e853ba872c33a3ef919292179b21d538a96eff9c025"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05e92b503c91daf4a06ecffbaa43852e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 20038604,
            "upload_time": "2025-08-30T11:25:21",
            "upload_time_iso_8601": "2025-08-30T11:25:21.271683Z",
            "url": "https://files.pythonhosted.org/packages/26/25/a71739c2ef74dfaecd1b8da1cf18eb1e6bea50e680773b1ae5d433c66dfa/plutoprint-0.9.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34e915d5c59ad733a9c4ec9f19319d19ee546e251ff49f8bae5c8993ac940db1",
                "md5": "830dd987d4745fa68f651982267cf18f",
                "sha256": "44f8d1d4d697038bc47dcd83936b35e6530f57443a1819057f958a9ae1ea7be0"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "830dd987d4745fa68f651982267cf18f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 19164383,
            "upload_time": "2025-08-30T11:25:24",
            "upload_time_iso_8601": "2025-08-30T11:25:24.469971Z",
            "url": "https://files.pythonhosted.org/packages/34/e9/15d5c59ad733a9c4ec9f19319d19ee546e251ff49f8bae5c8993ac940db1/plutoprint-0.9.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5825dc017bc3d82ebfe2cd84aaa4a7aa7331f68cc269f90e9290293df8728ec1",
                "md5": "6751523588bef1c6e5facf8c0847fed0",
                "sha256": "f9097a93200881ef57d920a74c3de784658dba44048138cf8affe09e2ec98620"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6751523588bef1c6e5facf8c0847fed0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 17460523,
            "upload_time": "2025-08-30T11:25:27",
            "upload_time_iso_8601": "2025-08-30T11:25:27.886938Z",
            "url": "https://files.pythonhosted.org/packages/58/25/dc017bc3d82ebfe2cd84aaa4a7aa7331f68cc269f90e9290293df8728ec1/plutoprint-0.9.0-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14359ae8a59d80619b4a5510d9ba5829d2199d7b6a1b94084af134076afd0072",
                "md5": "ca66ec9485fe001afecea765d4b00f49",
                "sha256": "d4c4d3221efe4b1650cbb3af2dcb3afdd8be7dd24be04931ac19d2d34f59ced4"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca66ec9485fe001afecea765d4b00f49",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 20038607,
            "upload_time": "2025-08-30T11:25:30",
            "upload_time_iso_8601": "2025-08-30T11:25:30.945614Z",
            "url": "https://files.pythonhosted.org/packages/14/35/9ae8a59d80619b4a5510d9ba5829d2199d7b6a1b94084af134076afd0072/plutoprint-0.9.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "323bb06f01515b0af72a6cfbc1a8f0aa985046d3346a1c003dbcfe3bac6b45f3",
                "md5": "01f51e244230ff161d08b6d9735cefbc",
                "sha256": "d56f70d6e6d1b759cf31f9cb15b60bd2617d3ff8cdca40b69acc5b11ffb2c136"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "01f51e244230ff161d08b6d9735cefbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 19164390,
            "upload_time": "2025-08-30T11:25:33",
            "upload_time_iso_8601": "2025-08-30T11:25:33.635455Z",
            "url": "https://files.pythonhosted.org/packages/32/3b/b06f01515b0af72a6cfbc1a8f0aa985046d3346a1c003dbcfe3bac6b45f3/plutoprint-0.9.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1a29bc40bae0399108ddfa97bba895d73c62d8b1ff64e14f78314725c39477d",
                "md5": "856a9074c8891019b86cbb8ade9e4d52",
                "sha256": "792b7bde75889b8bf1119ea2138a8694a3dcdb7f92d8d99c31738fa684121cbf"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "856a9074c8891019b86cbb8ade9e4d52",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 17460472,
            "upload_time": "2025-08-30T11:25:36",
            "upload_time_iso_8601": "2025-08-30T11:25:36.684592Z",
            "url": "https://files.pythonhosted.org/packages/b1/a2/9bc40bae0399108ddfa97bba895d73c62d8b1ff64e14f78314725c39477d/plutoprint-0.9.0-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c47dacb70c44f287019393df47b6cf01802ed91d153348d4299c61ad54873664",
                "md5": "8e1fffe93410bee401ae8189066f7608",
                "sha256": "c6d2016aa01fe55c0f7b5ec1695b0ec3b70517c693762dd52e369112d4c588a0"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e1fffe93410bee401ae8189066f7608",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 20038625,
            "upload_time": "2025-08-30T11:25:39",
            "upload_time_iso_8601": "2025-08-30T11:25:39.439982Z",
            "url": "https://files.pythonhosted.org/packages/c4/7d/acb70c44f287019393df47b6cf01802ed91d153348d4299c61ad54873664/plutoprint-0.9.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "173ce695106fedd0949af7bbe54108f530b2ceee226bd5550bd54ae8345faba3",
                "md5": "2f5cd0daa83cf7189d6d3efe1e6b1faf",
                "sha256": "33170463c0e9a5a196fd3c2369a97e50c42c94bdc44579bdbb45806840865d36"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f5cd0daa83cf7189d6d3efe1e6b1faf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 19164475,
            "upload_time": "2025-08-30T11:25:42",
            "upload_time_iso_8601": "2025-08-30T11:25:42.642781Z",
            "url": "https://files.pythonhosted.org/packages/17/3c/e695106fedd0949af7bbe54108f530b2ceee226bd5550bd54ae8345faba3/plutoprint-0.9.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f6a9ece22e12e5f4b615b79ae526a69b07b81f00621cbeaad82cb77c78be7fa",
                "md5": "100b2e8ca15be866c519619578a3b5fe",
                "sha256": "a6846fae7be37fb2b94ac0423ba4539d4e5c86338b58cf87c8353bccd7e61c69"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp313-cp313-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "100b2e8ca15be866c519619578a3b5fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 17460506,
            "upload_time": "2025-08-30T11:25:45",
            "upload_time_iso_8601": "2025-08-30T11:25:45.881038Z",
            "url": "https://files.pythonhosted.org/packages/6f/6a/9ece22e12e5f4b615b79ae526a69b07b81f00621cbeaad82cb77c78be7fa/plutoprint-0.9.0-cp313-cp313-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e5e74ed313e99a75e377d915e282ef97f6a22f84d6e73d9e0bf8765a3d14edb",
                "md5": "038c96bc818048430335e4dd24020e5c",
                "sha256": "f123d74daf2f0846deb0235375bcc7d78ce7082c63f1e63464b62ec664c63083"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "038c96bc818048430335e4dd24020e5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 20038622,
            "upload_time": "2025-08-30T11:25:49",
            "upload_time_iso_8601": "2025-08-30T11:25:49.141914Z",
            "url": "https://files.pythonhosted.org/packages/1e/5e/74ed313e99a75e377d915e282ef97f6a22f84d6e73d9e0bf8765a3d14edb/plutoprint-0.9.0-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9dc70562fb550884195d71846df42d51993bf6346f8eef568e6a5a6e7d59836",
                "md5": "6db2646f5266f02696edd24cab98b941",
                "sha256": "bef93d85207d937b49f43141199561d466ba4ebbe3d9315a8d0f5c0c29d7d50e"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6db2646f5266f02696edd24cab98b941",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 19164468,
            "upload_time": "2025-08-30T11:25:51",
            "upload_time_iso_8601": "2025-08-30T11:25:51.895927Z",
            "url": "https://files.pythonhosted.org/packages/d9/dc/70562fb550884195d71846df42d51993bf6346f8eef568e6a5a6e7d59836/plutoprint-0.9.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e89a6f8504076220522385791199f2ab09b6e7521117cda63e0d40c7e1e3d313",
                "md5": "afe811e757cbaa1ecbb2d4625c47ee24",
                "sha256": "c225bf089fee3a49c01727a7cec3bf4ea80d8f81ae50c75780e9fee1f585df7d"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp314-cp314-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "afe811e757cbaa1ecbb2d4625c47ee24",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 17460533,
            "upload_time": "2025-08-30T11:25:55",
            "upload_time_iso_8601": "2025-08-30T11:25:55.093897Z",
            "url": "https://files.pythonhosted.org/packages/e8/9a/6f8504076220522385791199f2ab09b6e7521117cda63e0d40c7e1e3d313/plutoprint-0.9.0-cp314-cp314-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97484a586a5dd619f96a5ed98731fc24044df9b8a35c966293a197e4acdc8a14",
                "md5": "5bfc8b18c63d3636fce9c00fb81bff15",
                "sha256": "c3a262d7353a8b243cb4a8cb11ed6e86f14cc3ca51f12ffe93fd11704ad270c4"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp314-cp314-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bfc8b18c63d3636fce9c00fb81bff15",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 20038687,
            "upload_time": "2025-08-30T11:25:57",
            "upload_time_iso_8601": "2025-08-30T11:25:57.789054Z",
            "url": "https://files.pythonhosted.org/packages/97/48/4a586a5dd619f96a5ed98731fc24044df9b8a35c966293a197e4acdc8a14/plutoprint-0.9.0-cp314-cp314-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a0ba4771705517bb17df2e1696c62886e1df0d06ab215647aee15ecc148fca4",
                "md5": "3b4af48f8bc1b1cbbab503b019bc4b2a",
                "sha256": "fa3ed497bd59f8aa66cabdf6c6f873dcbe5911d539a7b8060704100d5cf3ad82"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b4af48f8bc1b1cbbab503b019bc4b2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 19925835,
            "upload_time": "2025-08-30T11:26:01",
            "upload_time_iso_8601": "2025-08-30T11:26:01.245977Z",
            "url": "https://files.pythonhosted.org/packages/6a/0b/a4771705517bb17df2e1696c62886e1df0d06ab215647aee15ecc148fca4/plutoprint-0.9.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c035aca0b163ae7a201b8b9c27f1c5bc5020b0badc93c7019020288f2099ca21",
                "md5": "082eafb1336867ec4fb2ddc09798b983",
                "sha256": "05c3c425dd57dbd5db0c26449e17e9e8cbc4eb041320697fa7c3f042dd3c1960"
            },
            "downloads": -1,
            "filename": "plutoprint-0.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "082eafb1336867ec4fb2ddc09798b983",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 36374,
            "upload_time": "2025-08-30T11:26:03",
            "upload_time_iso_8601": "2025-08-30T11:26:03.693500Z",
            "url": "https://files.pythonhosted.org/packages/c0/35/aca0b163ae7a201b8b9c27f1c5bc5020b0badc93c7019020288f2099ca21/plutoprint-0.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-30 11:26:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "plutoprint",
    "github_project": "plutoprint",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "plutoprint"
}
        
Elapsed time: 1.12290s