{
"info": {
"author": "jarrekk",
"author_email": "me@jarrekk.com",
"bugtrack_url": null,
"classifiers": [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: XML",
"Topic :: Utilities"
],
"description": "IMGKit: Python library of HTML to IMG wrapper\n=============================================\n\n|Build Status| |Code Coverage| |Codacy Badge| |PyPI version|\n\n::\n\n _____ __ __ _____ _ __ _ _\n |_ _| | \\/ | / ____| | |/ / (_) | |\n | | | \\ / | | | __ | ' / _ | |_\n | | | |\\/| | | | |_ | | < | | | __|\n _| |_ | | | | | |__| | | . \\ | | | |_\n |_____| |_| |_| \\_____| |_|\\_\\ |_| \\__|\n\nPython 2 and 3 wrapper for wkhtmltoimage utility to convert HTML to IMG\nusing Webkit.\n\nInstallation\n------------\n\n1. Install imgkit:\n\n .. code:: python\n\n pip install imgkit\n\n2. Install wkhtmltopdf:\n\n- Debian/Ubuntu:\n\n .. code:: bash\n\n sudo apt-get install wkhtmltopdf\n\n **Warning!** Version in debian/ubuntu repos have reduced\n functionality (because it compiled without the wkhtmltopdf QT\n patches), such as adding outlines, headers, footers, TOC etc. To use\n this options you should install static binary from\n `wkhtmltopdf `__ site or you can use this\n `script `__.\n\n- MacOSX\n\n .. code:: bash\n\n brew install wkhtmltopdf\n\n- Windows and other options: check `wkhtmltopdf\n homepage `__ for binary installers or `wiki\n page `__.\n\nUsage\n-----\n\nSimple example:\n\n.. code:: python\n\n import imgkit\n\n imgkit.from_url('http://google.com', 'out.jpg')\n imgkit.from_file('test.html', 'out.jpg')\n imgkit.from_string('Hello!', 'out.jpg')\n\nYou can pass a list with multiple URLs or files:\n\n.. code:: python\n\n imgkit.from_url(['google.com', 'yandex.ru', 'engadget.com'], 'out.jpg')\n imgkit.from_file(['file1.html', 'file2.html'], 'out.jpg')\n\nAlso you can pass an opened file:\n\n.. code:: python\n\n with open('file.html') as f:\n imgkit.from_file(f, 'out.jpg')\n\nIf you wish to further process generated IMG, you can read it to a\nvariable:\n\n.. code:: python\n\n # Use False instead of output path to save pdf to a variable\n img = imgkit.from_url('http://google.com', False)\n\nYou can find all wkhtmltoimage options by type ``wkhtmltoimage`` command\nor visit this\n`Manual `__.\nYou can drop '--' in option name. If option without value, use *None,\nFalse* or *''* for dict value:. For repeatable options (incl. allow,\ncookie, custom-header, post, postfile, run-script, replace) you may use\na list or a tuple. With option that need multiple values (e.g.\n--custom-header Authorization secret) we may use a 2-tuple (see example\nbelow).\n\n.. code:: python\n\n options = {\n 'format': 'png',\n 'crop-h': '3',\n 'crop-w': '3',\n 'crop-x': '3',\n 'crop-y': '3',\n 'encoding': \"UTF-8\",\n 'custom-header' : [\n ('Accept-Encoding', 'gzip')\n ]\n 'cookie': [\n ('cookie-name1', 'cookie-value1'),\n ('cookie-name2', 'cookie-value2'),\n ],\n 'no-outline': None\n }\n\n imgkit.from_url('http://google.com', 'out.png', options=options)\n\nAt some headless servers, perhaps you need to install **xvfb**:\n\n.. code:: bash\n\n # at ubuntu server, etc.\n sudo apt-get install xvfb\n # at centos server, etc.\n yum install xorg-x11-server-Xvfb\n\nThen use **IMGKit** with option **xvfb**: ``{\"xvfb\": \"\"}``.\n\nBy default, IMGKit will show all ``wkhtmltoimage`` output. If you don't\nwant it, you need to pass ``quiet`` option:\n\n.. code:: python\n\n options = {\n 'quiet': ''\n }\n\n imgkit.from_url('google.com', 'out.jpg', options=options)\n\nDue to wkhtmltoimage command syntax, **TOC** and **Cover** options must\nbe specified separately. If you need cover before TOC, use\n``cover_first`` option:\n\n.. code:: python\n\n toc = {\n 'xsl-style-sheet': 'toc.xsl'\n }\n\n cover = 'cover.html'\n\n imgkit.from_file('file.html', options=options, toc=toc, cover=cover)\n imgkit.from_file('file.html', options=options, toc=toc, cover=cover, cover_first=True)\n\nYou can specify external CSS files when converting files or strings\nusing *css* option.\n\n.. code:: python\n\n # Single CSS file\n css = 'example.css'\n imgkit.from_file('file.html', options=options, css=css)\n\n # Multiple CSS files\n css = ['example.css', 'example2.css']\n imgkit.from_file('file.html', options=options, css=css)\n\nYou can also pass any options through meta tags in your HTML:\n\n.. code:: python\n\n body = \"\"\"\n \n \n \n \n \n Hello World!\n \n \"\"\"\n\n imgkit.from_string(body, 'out.png')\n\nConfiguration\n-------------\n\nEach API call takes an optional config paramater. This should be an\ninstance of ``imgkit.config()`` API call. It takes the config options as\ninitial paramaters. The available options are:\n\n- ``wkhtmltoimage`` - the location of the ``wkhtmltoimage`` binary. By\n default ``imgkit`` will attempt to locate this using\n which\\ ``(on UNIX type systems) or where`` (on Windows).\n- ``meta_tag_prefix`` - the prefix for ``imgkit`` specific meta tags -\n by default this is ``imgkit-``\n\nExample - for when ``wkhtmltopdf`` is not in ``$PATH``:\n\n.. code:: python\n\n config = imgkit.config(wkhtmltoimage='/opt/bin/wkhtmltoimage')\n imgkit.from_string(html_string, output_file, config=config)\n\nTroubleshooting\n---------------\n\n- ``IOError: 'No wkhtmltopdf executable found'``:\n\nMake sure that you have wkhtmltoimage in your ``$PATH`` or set via\ncustom configuration (see preceding section). *where wkhtmltoimage* in\nWindows or *which wkhtmltoimage* on Linux should return actual path to\nbinary.\n\n- ``IOError: 'Command Failed'``:\n\nThis error means that IMGKit was unable to process an input. You can try\nto directly run a command from error message and see what error caused\nfailure (on some wkhtmltoimage versions this can be cause by\nsegmentation faults)\n\nCredit\n------\n\n`python PDFKit `__\n\n.. |Build Status| image:: https://travis-ci.org/jarrekk/imgkit.svg?branch=master\n :target: https://travis-ci.org/jarrekk/imgkit\n.. |Code Coverage| image:: https://codecov.io/github/jarrekk/imgkit/branch/master/graph/badge.svg\n :target: https://codecov.io/github/jarrekk/imgkit/\n.. |Codacy Badge| image:: https://api.codacy.com/project/badge/Grade/aa1f67f04ff24bb080b7f8c8a9b7b8b1\n :target: https://www.codacy.com/app/jarrekk/imgkit?utm_source=github.com&utm_medium=referral&utm_content=jarrekk/imgkit&utm_campaign=Badge_Grade\n.. |PyPI version| image:: https://badge.fury.io/py/imgkit.svg\n :target: https://badge.fury.io/py/imgkit\n\nIMGKit author\n-------------\n\n- **jarrekk** https://github.com/jarrekk\n\nContributors\n~~~~~~~~~~~~\n\n- **v-hunt** https://github.com/v-hunt\n- **pprmint** https://github.com/pprmint\n- **v-hunt** https://github.com/v-hunt\n- **arayate** https://github.com/arayate\n- **berkerboy** https://github.com/berkerboy",
"description_content_type": "",
"docs_url": null,
"download_url": "https://github.com/jarrekk/imgkit",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/jarrekk/imgkit",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "imgkit",
"package_url": "https://pypi.org/project/imgkit/",
"platform": "",
"project_url": "https://pypi.org/project/imgkit/",
"project_urls": {
"Download": "https://github.com/jarrekk/imgkit",
"Homepage": "https://github.com/jarrekk/imgkit"
},
"release_url": "https://pypi.org/project/imgkit/1.0.2/",
"requires_dist": null,
"requires_python": "",
"summary": "Wkhtmltopdf python wrapper to convert html to image using the webkit rendering engine and qt",
"version": "1.0.2"
},
"last_serial": 5297241,
"releases": {
"0.0.1": [],
"0.0.10": [
{
"comment_text": "",
"digests": {
"md5": "1a3ffea4de9437be5969c995036ec565",
"sha256": "a347ad442fa65dd33e85c0e000bb8000676f35a920b8060b05aec8d9ef84ddc2"
},
"downloads": -1,
"filename": "imgkit-0.0.10.tar.gz",
"has_sig": false,
"md5_digest": "1a3ffea4de9437be5969c995036ec565",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5015,
"upload_time": "2017-05-14T05:58:07",
"url": "https://files.pythonhosted.org/packages/71/36/4c0381fcd60e28e8a6131a74a54a51546275bb1b14cdcb1c59254cade3b8/imgkit-0.0.10.tar.gz"
}
],
"0.0.11": [
{
"comment_text": "",
"digests": {
"md5": "0f5b6a36bc260104a211429fe7e386c7",
"sha256": "1a12d28f0798c8a8f48a6b1334e0b016f314f48d23e2ac397463be7e59604dda"
},
"downloads": -1,
"filename": "imgkit-0.0.11.tar.gz",
"has_sig": false,
"md5_digest": "0f5b6a36bc260104a211429fe7e386c7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5015,
"upload_time": "2017-05-14T06:07:56",
"url": "https://files.pythonhosted.org/packages/38/df/a2d50dad19d944ced834b2218683f1935c9795d0d4659acfe07cfacd79ff/imgkit-0.0.11.tar.gz"
}
],
"0.0.12": [
{
"comment_text": "",
"digests": {
"md5": "32da3849a88d93341ab0526b098d853f",
"sha256": "324141749299ebe051ced7e20fab1e4d9d84a7e08aa26ce06244a2d66a903ca9"
},
"downloads": -1,
"filename": "imgkit-0.0.12.tar.gz",
"has_sig": false,
"md5_digest": "32da3849a88d93341ab0526b098d853f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7517,
"upload_time": "2017-05-14T06:17:00",
"url": "https://files.pythonhosted.org/packages/67/7e/90143f7f914a8195aa16194a3e2881fa1b67f86182420e9f325b8fc19fd3/imgkit-0.0.12.tar.gz"
}
],
"0.0.2": [
{
"comment_text": "",
"digests": {
"md5": "b75f0b8fdbe604673f2128d89788d84a",
"sha256": "211511e711625a47ad5795777a0d508f9331cb8490297cc7b1d2de4c2cb4238b"
},
"downloads": -1,
"filename": "imgkit-0.0.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "b75f0b8fdbe604673f2128d89788d84a",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 11234,
"upload_time": "2017-01-30T06:14:14",
"url": "https://files.pythonhosted.org/packages/3b/7a/a274e9cf2eb7afa7d167c9420505be83d8b511645951534bf9b5466b376e/imgkit-0.0.2-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "05cf80aacece73331749a3aa4216eaa5",
"sha256": "b67f705d8513ef111fa1ee3d71e0e2b93b935934737aedf7463836f323542979"
},
"downloads": -1,
"filename": "imgkit-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "05cf80aacece73331749a3aa4216eaa5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7118,
"upload_time": "2017-01-30T06:14:17",
"url": "https://files.pythonhosted.org/packages/29/3c/b3c618441d0efc3038b7e60ffd7a70425e3c82d2d397a2f2f05f7367c988/imgkit-0.0.2.tar.gz"
}
],
"0.0.3": [],
"0.0.4": [
{
"comment_text": "",
"digests": {
"md5": "ff1cd15edf0b2383f0a3ab714f468316",
"sha256": "c057de651758b18967edfc59e62b3359a580e212a7bcd694269ac90ea6aa733c"
},
"downloads": -1,
"filename": "imgkit-0.0.4.tar.gz",
"has_sig": false,
"md5_digest": "ff1cd15edf0b2383f0a3ab714f468316",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5039,
"upload_time": "2017-01-30T15:58:38",
"url": "https://files.pythonhosted.org/packages/21/be/e9edd6fc78d6d848b4b824098b085e59f00b13de8e929b506fdaed31f9ef/imgkit-0.0.4.tar.gz"
}
],
"0.0.5": [
{
"comment_text": "",
"digests": {
"md5": "52faa9e45158494673d92c11fe078151",
"sha256": "169440329326883bda1c3459fccfdca09999ce0a492c654edf76c78bc1525427"
},
"downloads": -1,
"filename": "imgkit-0.0.5.tar.gz",
"has_sig": false,
"md5_digest": "52faa9e45158494673d92c11fe078151",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5065,
"upload_time": "2017-03-22T09:09:36",
"url": "https://files.pythonhosted.org/packages/c3/38/4f3ddcab66cce29a2295c401034245db3f7b6fb96c9ca523dd670ffd056f/imgkit-0.0.5.tar.gz"
}
],
"0.0.6": [
{
"comment_text": "",
"digests": {
"md5": "24bb194b2719325cf81c7bba4a0286bd",
"sha256": "87efbf0a9f8d7664c2ffa933ad6772837e5fbdd7e398fc15a9e361dad2b37bdb"
},
"downloads": -1,
"filename": "imgkit-0.0.6.tar.gz",
"has_sig": false,
"md5_digest": "24bb194b2719325cf81c7bba4a0286bd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7569,
"upload_time": "2017-03-29T05:43:21",
"url": "https://files.pythonhosted.org/packages/7b/7f/f9a5bed39ec466983c6c7f0f6d67e3d10b39f2e08e13d409c2e4305c7444/imgkit-0.0.6.tar.gz"
}
],
"0.0.7": [
{
"comment_text": "",
"digests": {
"md5": "d155b51cda3ac367daf6c3382af578ab",
"sha256": "7af87ac1b53f0a44f04708f63d83677cda08c05a2dcb61e38d9be4fb754c0293"
},
"downloads": -1,
"filename": "imgkit-0.0.7.tar.gz",
"has_sig": false,
"md5_digest": "d155b51cda3ac367daf6c3382af578ab",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5086,
"upload_time": "2017-04-10T05:50:46",
"url": "https://files.pythonhosted.org/packages/8f/95/989ff59f8a67ef93b4aa568dd79e412ff946152ecf653f31765287b1bfd3/imgkit-0.0.7.tar.gz"
}
],
"0.0.8": [
{
"comment_text": "",
"digests": {
"md5": "74779c724a3c447d0b1fe3d7b884766e",
"sha256": "a2f83c1c9a33fa8fdcecd31ee3a53a9d723e6f24cec22120860eee9c53f63cb2"
},
"downloads": -1,
"filename": "imgkit-0.0.8.tar.gz",
"has_sig": false,
"md5_digest": "74779c724a3c447d0b1fe3d7b884766e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7440,
"upload_time": "2017-05-04T07:13:04",
"url": "https://files.pythonhosted.org/packages/52/04/2dc6cb9bba646f28eed5dfdc9ff60ac03356af85655060020e5ed8694d85/imgkit-0.0.8.tar.gz"
}
],
"0.0.9": [
{
"comment_text": "",
"digests": {
"md5": "6550ab920829addc59aa98049971c6c0",
"sha256": "11c3af2b4dbb2f3799f90f83eee4fa6f0907c3257eac838359a8e08ecbd8a078"
},
"downloads": -1,
"filename": "imgkit-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "6550ab920829addc59aa98049971c6c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7531,
"upload_time": "2017-05-14T05:48:19",
"url": "https://files.pythonhosted.org/packages/8f/18/662551e7eff104d1861a6350acf8462b32bcfed72f4442f37274fea0c8df/imgkit-0.0.9.tar.gz"
}
],
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "d07d68a3a036ddf3fcc2248e9c09be67",
"sha256": "ef34e75954b3601d131d422ae165bda65cb9ea9eeb57fb35ba061918ba04f625"
},
"downloads": -1,
"filename": "imgkit-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "d07d68a3a036ddf3fcc2248e9c09be67",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7552,
"upload_time": "2017-05-15T03:14:25",
"url": "https://files.pythonhosted.org/packages/9c/64/c5e9d0cd0b43b74e2721d8a2d7062bf115f1b907a2c6ff86c2d9e04b5531/imgkit-0.1.0.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "67c97f5d96fb98021fdc05472c0a7f61",
"sha256": "24451172df4acdf2c31339b84448b86e34ef18cd2a7d9d6bf7bddcced4c81cbe"
},
"downloads": -1,
"filename": "imgkit-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "67c97f5d96fb98021fdc05472c0a7f61",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7462,
"upload_time": "2017-05-15T08:25:02",
"url": "https://files.pythonhosted.org/packages/09/5f/6b69652574f31dbdb23e91bcb1f542ad41e6fe893e4ee9bdcdf95cc01281/imgkit-0.1.1.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "ffa2b46e5f920f40ef6d2adb60da2c84",
"sha256": "fa9cdde0cb8edccfc8ac2a6e471fe91bde142e5182aa78d28c1a2c9197be0950"
},
"downloads": -1,
"filename": "imgkit-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "ffa2b46e5f920f40ef6d2adb60da2c84",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7503,
"upload_time": "2017-06-05T03:55:36",
"url": "https://files.pythonhosted.org/packages/3b/b3/7d5a923597e1f22b7eaee248f957eb088aa8397b914c6efd74191bd53be2/imgkit-0.1.2.tar.gz"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "c2e3df484033257d9f6709e40e554d94",
"sha256": "7fdd7000ccb9fbe8a617a75bd7ee297e9c1cfb44f2e0924d16ed5c56b86e08e4"
},
"downloads": -1,
"filename": "imgkit-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "c2e3df484033257d9f6709e40e554d94",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7501,
"upload_time": "2017-06-05T03:17:05",
"url": "https://files.pythonhosted.org/packages/ba/59/c1cd416664849bbdf2f59d65abd8714e0317f20aa0db50ad6f55370e384e/imgkit-0.1.3.tar.gz"
}
],
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "70f18b349c21d93b5808ac8fde32fc6f",
"sha256": "944b7cbd8e3b3956b843f60bfdfaa3ea37dabbba660f76d519058ce44fb0db7b"
},
"downloads": -1,
"filename": "imgkit-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "70f18b349c21d93b5808ac8fde32fc6f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7678,
"upload_time": "2017-06-07T01:27:24",
"url": "https://files.pythonhosted.org/packages/99/7b/46ee73826c780bd377af111e20f6cd9e8b38ab6a707d417070b1e758ee73/imgkit-0.1.4.tar.gz"
}
],
"0.1.5": [
{
"comment_text": "",
"digests": {
"md5": "29f4595035a7e15a314bbd59edbde083",
"sha256": "3e776c0332dcf35a41430e8769ba5be62bd3bef282de5aff2c584d65d770bded"
},
"downloads": -1,
"filename": "imgkit-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "29f4595035a7e15a314bbd59edbde083",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7667,
"upload_time": "2017-06-08T08:09:39",
"url": "https://files.pythonhosted.org/packages/6a/58/cf8738ac3a6a3a155a9452486828f53358b837637f5cbf4e5e33c5ecc903/imgkit-0.1.5.tar.gz"
}
],
"0.1.6": [
{
"comment_text": "",
"digests": {
"md5": "cae472b587236b569e6f01f49f20fa24",
"sha256": "9c4708b54ad372717c9b15c7bf5580b558666d2d98404c25598998eb0b989cde"
},
"downloads": -1,
"filename": "imgkit-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "cae472b587236b569e6f01f49f20fa24",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7871,
"upload_time": "2017-06-30T23:34:08",
"url": "https://files.pythonhosted.org/packages/81/25/2bffc36890f796e41242e60b8cf93072181bae15c185aa25ea36cf8dc2db/imgkit-0.1.6.tar.gz"
}
],
"0.1.7": [
{
"comment_text": "",
"digests": {
"md5": "48d5631530f543565aada0dfc6a1f236",
"sha256": "1652a14b895de2db6be9dbb378ab18f94b93580a3800fa572b8d4aa36eb190da"
},
"downloads": -1,
"filename": "imgkit-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "48d5631530f543565aada0dfc6a1f236",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7992,
"upload_time": "2017-07-17T09:01:42",
"url": "https://files.pythonhosted.org/packages/c3/bb/28d7569f354ae7d8eea30613dc5d5096c5ad535bc43c4dcaf6a041c6329a/imgkit-0.1.7.tar.gz"
}
],
"0.1.8": [
{
"comment_text": "",
"digests": {
"md5": "0924aa1a45cfc274e251203f45012e62",
"sha256": "3fb59e1ce2f45be2c5d6179ea6383b4380901156ac5704c6643e26a4a0ac899e"
},
"downloads": -1,
"filename": "imgkit-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "0924aa1a45cfc274e251203f45012e62",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8009,
"upload_time": "2017-11-02T05:42:39",
"url": "https://files.pythonhosted.org/packages/82/74/21a40a48db0d2b64fc28bdc4e4b71ec2f0fa043cd4a64a6e89400e4e3f82/imgkit-0.1.8.tar.gz"
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "7c8d5a5cdb67c95f9202beb6d394066d",
"sha256": "734f63e43b81c30b040010c3b9f36dd69cf150314afb1b10c1e8dc6984c9116c"
},
"downloads": -1,
"filename": "imgkit-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "7c8d5a5cdb67c95f9202beb6d394066d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9807,
"upload_time": "2018-02-07T11:43:16",
"url": "https://files.pythonhosted.org/packages/36/6e/2cf54ddbbfc24856b1e8b8719daae543e51055ee64babc599e000e90b475/imgkit-1.0.0.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "751b6460dceb30588faf1512202945db",
"sha256": "c7cfd4949343aec503353c7bdae6f05ab5b4c79cb9f5153bd5708cd3bf129df7"
},
"downloads": -1,
"filename": "imgkit-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "751b6460dceb30588faf1512202945db",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9802,
"upload_time": "2018-02-08T04:58:25",
"url": "https://files.pythonhosted.org/packages/e5/f1/d03e16756ee4c6b89d24ae596b180e23c7a54a997a8b8ed611eb9ce3cf12/imgkit-1.0.1.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "9a2c0a1d3a23b242340ef6b4fc721388",
"sha256": "29a12adf8dc3f2c65c465bcb0568393573b8d52c4be2a4a9230b162a1ac53c8d"
},
"downloads": -1,
"filename": "imgkit-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "9a2c0a1d3a23b242340ef6b4fc721388",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9789,
"upload_time": "2019-05-21T10:58:54",
"url": "https://files.pythonhosted.org/packages/e0/84/690cbae32a105d22a212394690ef844e4471c78ed8f40c23a8c6d18606f7/imgkit-1.0.2.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "9a2c0a1d3a23b242340ef6b4fc721388",
"sha256": "29a12adf8dc3f2c65c465bcb0568393573b8d52c4be2a4a9230b162a1ac53c8d"
},
"downloads": -1,
"filename": "imgkit-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "9a2c0a1d3a23b242340ef6b4fc721388",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9789,
"upload_time": "2019-05-21T10:58:54",
"url": "https://files.pythonhosted.org/packages/e0/84/690cbae32a105d22a212394690ef844e4471c78ed8f40c23a8c6d18606f7/imgkit-1.0.2.tar.gz"
}
]
}