{ "info": { "author": "Aspose", "author_email": "alexander.makogon@aspose.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# Aspose.HTML Cloud SDK for Python\nThis repository contains Aspose.HTML Cloud SDK for Python source code. This SDK allows you to work with Aspose.HTML Cloud REST APIs in your Python applications quickly and easily.\n\nSee [API Reference](https://apireference.aspose.cloud/html/) for full API specification.\n## How to use the SDK?\nThe complete source code is available in this repository folder, you can either directly use it in your project via pip package manager.\n\n### Prerequisites\n\nTo use Aspose HTML for Cloud Python SDK you need to register an account with [Aspose Cloud](https://www.aspose.cloud/) and lookup/create App Key and SID at [Cloud Dashboard](https://dashboard.aspose.cloud/#/apps). There is free quota available. For more details, see [Aspose Cloud Pricing](https://purchase.aspose.cloud/pricing).\n\n### Installation\n\n\n#### Install Aspose.HTML Cloud \n\nFrom the command line:\n```code\n\tpython setup.py install\n```\n\n#### pip\n```code\npip install asposehtmlcloud\n```\n\n## Example\n\nThe examples below show how your application have to initiate and convert url to image using Aspose.HTML Cloud library:\n\n```python\nimport os\nfrom asposehtmlcloud.configuration import Configuration\nfrom asposehtmlcloud.api.html_api import HtmlApi\nfrom asposehtmlcloud.rest import ApiException\nfrom shutil import copy2\n\n# Get keys from aspose site.\n# There is free quota available. \n# For more details, see https://purchase.aspose.cloud/pricing\n\nconfiguration = Configuration(apiKey=\"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\",\n appSid=\"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\",\n basePath=\"https://api.aspose.cloud/v3.0\",\n authPath=\"https://api.aspose.cloud/connect/token\",\n debug=True)\napi = HtmlApi(configuration)\n\nsource_url = \"https://stallman.org/articles/anonymous-payments-thru-phones.html\"\ntry:\n\n # Convert url to image\n res = api.get_convert_document_to_image_by_url(\n source_url, out_format=\"jpeg\", width=800, height=1000, left_margin=50, right_margin=100,\n top_margin=150, bottom_margin=200, resolution=300, folder=\"MY_REMOTE_FOLDER\", storage=\"\"\n )\n\n src = str(res)\n # Move to test folder\n if os.path.isfile(src):\n copy2(src, '/home/user/testfolder/')\n os.remove(src)\nexcept ApiException as ex:\n print(\"Exception\")\n print(\"Info: \" + str(ex))\n raise ex\n\n# ...\n```\n\n# Documentation for Html API Endpoints\n\nAll URIs are relative to *https://api.aspose.cloud/v3.0*\n\n## ConversionApi \n\n- For conversion to images allowed formats is jpeg, png, bmp, tiff, gif. Input formats are html, epub, svg.\n\nMethod | HTTP request | Description\n------------- | ------------- | -------------\n**get_convert_document_to_image** | **GET** html/{name}/convert/image/{outFormat} | Convert the HTML document from the storage by its name to the specified image format.\n**get_convert_document_to_image_by_url** | **GET** html/convert/image/{outFormat} | Convert the HTML page from the web by its URL to the specified image format.\n**get_convert_document_to_pdf** | **GET** html/{name}/convert/pdf | Convert the HTML document from the storage by its name to PDF.\n**get_convert_document_to_pdf_by_url** | **GET** html/convert/pdf | Convert the HTML page from the web by its URL to PDF.\n**get_convert_document_to_xps** | **GET** html/{name}/convert/xps | Convert the HTML document from the storage by its name to XPS.\n**get_convert_document_to_xps_by_url** | **GET** html/convert/xps | Convert the HTML page from the web by its URL to XPS.\n**post_convert_document_in_request_to_image** | **POST** html/convert/image/{outFormat} | Converts the HTML document (in request content) to the specified image format and uploads resulting file to storage.\n**post_convert_document_in_request_to_pdf** | **POST** html/convert/pdf | Converts the HTML document (in request content) to PDF and uploads resulting file to storage.\n**post_convert_document_in_request_to_xps** | **POST** html/convert/xps | Converts the HTML document (in request content) to XPS and uploads resulting file to storage.\n**put_convert_document_to_image** | **PUT** html/{name}/convert/image/{outFormat} | Converts the HTML document (located on storage) to the specified image format and uploads resulting file to storage.\n**put_convert_document_to_pdf** | **PUT** html/{name}/convert/pdf | Converts the HTML document (located on storage) to PDF and uploads resulting file to storage.\n**put_convert_document_to_xps** | **PUT** html/{name}/convert/xps | Converts the HTML document (located on storage) to XPS and uploads resulting file to storage.\n**get_convert_document_to_mhtml_by_url** | **GET** /html/convert/mhtml | Converts the HTML page from Web by its URL to MHTML returns resulting file in response content.\n**get_convert_document_to_markdown** | **GET** /html/{name}/convert/md | Converts the HTML document (located on storage) to Markdown and returns resulting file in response content.\n**post_convert_document_in_request_to_markdown** | **POST** /html/convert/md | Converts the HTML document (in request content) to Markdown and uploads resulting file to storage by specified path.\n**put_convert_document_to_markdown** | **PUT** /html/{name}/convert/md | Converts the HTML document (located on storage) to Markdown and uploads resulting file to storage by specified path.\n\n## ImportApi\n\nMethod | HTTP request | Description\n------------- | ------------- | -------------\n**get_convert_markdown_to_html** | **GET** /html/{name}/convert/md | Converts the MarkdownHTML document (located on storage) to HTML and returns resulting file in response content.\n**post_convert_markdown_in_request_to_html** | **POST** /html/import/md | Converts the MarkdownHTML document (in request content) to HTML and uploads resulting file to storage by specified path.\n**put_convert_markdown_to_html** | **PUT** /html/{name}/import/md | Converts the Markdown document (located on storage) to HTML and uploads resulting file to storage by specified path.\n\n## DocumentApi\n\nMethod | HTTP request | Description\n------------- | ------------- | -------------\n**get_document_by_url** | **GET** /html/download | Return all HTML page with linked resources packaged as a ZIP archive by the source page URL.\n**get_document_fragment_by_x_path** | **GET** html/{name}/fragments/{outFormat} | Return list of HTML fragments matching the specified XPath query.\n**get_document_fragment_by_x_path_by_url** | **GET** html/fragments/{outFormat} | Return list of HTML fragments matching the specified XPath query by the source page URL.\n**get_document_fragments_by_css_selector** | **GET** /html/{name}/fragments/css/{outFormat} | Return list of HTML fragments matching the specified CSS selector.\n**get_document_fragments_by_css_selector_by_url** | **GET** /html/fragments/css/{outFormat} | Return list of HTML fragments matching the specified CSS selector by the source page URL.\n**get_document_images** | **GET** html/{name}/images/all | Return all HTML document images packaged as a ZIP archive.\n**get_document_images_by_url** | **GET** html/images/all | Return all HTML page images packaged as a ZIP archive by the source page URL.\n\n## SeoApi\n\nMethod | HTTP request | Description\n------------- | ------------- | -------------\n**get_seo_warning** | **GET** /html/seo | Page analysis and return SEO warnings in json format.\n**get_html_warning** | **GET** /html/validator | Checks the markup validity of Web documents in HTML, XHTML, etc.and return in json format.\n\n## TemplateMergeApi \n\nMethod | HTTP request | Description\n------------- | ------------- | -------------\n**get_merge_html_template** | **GET** /html/{templateName}/merge | Populate HTML document template with data located as a file in the storage.\n**post_merge_html_template** | **POST** /html/{templateName}/merge | Populate HTML document template with data from the request body. Result document will be saved to storage.\n\n# Documentation for Storage API Endpoints\n\n## StorageApi\n\nMethod | HTTP request | Description\n------------- | ------------- | -------------\n**copy_file** | **PUT** /html/storage/file/copy/{srcPath} | Copy file\n**delete_file** | **DELETE** /html/storage/file/{path} | Delete file\n**download_file** | **GET** /html/storage/file/{path} | Download file\n**move_file** | **PUT** /html/storage/file/move/{srcPath} | Move file\n**upload_file** | **PUT** /html/storage/file/{path} | Upload file\n**copy_filder** | **PUT** /html/storage/folder/copy/{srcPath} | Copy folder\n**create_folder** | **PUT** /html/storage/folder/{path} | Create the folder\n**delete_folder** | **DELETE** /html/storage/folder/{path} | Delete folder\n**get_files_list** | **GET** /html/storage/folder/{path} | Get all files and folders within a folder\n**move_folder** | **PUT** /html/storage/folder/move/{srcPath} | Move folder\n**get_disc_usage** | **GET** /html/storage/disc | Get disc usage\n**get_file_versions** | **GET** /html/storage/version/{path} | Get file versions\n**object_exists** | **GET** /html/storage/exist/{path} | Check if file or folder exists\n**storage_exists** | **GET** /html/storage/{storageName}/exist | Check if storage exists\n\n\n[Tests](https://github.com/aspose-html-cloud/aspose-html-cloud-python/tree/master/test) contain various examples of using the Aspose.HTML SDK.\n\n[Docs](https://github.com/aspose-html-cloud/aspose-html-cloud-python/tree/master/docs/_build/html) Full documentation for Aspose.HTML SDK in html format.\n\n## Dependencies\n- [See requirements.txt](https://github.com/aspose-html-cloud/aspose-html-cloud-python/blob/master/requirements.txt)\n\n## Contact Us\nYour feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.aspose.cloud/html).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/aspose-html-cloud/aspose-html-cloud-python", "keywords": "html2pdf,epub2pdf,md2html,html2md,html2img,svg2img,svg2pdf,svg2xps,html2xps,epub2xps,downloader,seo,validation,convert", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "asposehtmlcloud", "package_url": "https://pypi.org/project/asposehtmlcloud/", "platform": "", "project_url": "https://pypi.org/project/asposehtmlcloud/", "project_urls": { "Homepage": "https://github.com/aspose-html-cloud/aspose-html-cloud-python" }, "release_url": "https://pypi.org/project/asposehtmlcloud/20.8.1/", "requires_dist": [ "urllib3 (>=1.15)", "six (>=1.10)", "certifi", "pyopenssl", "urllib3[secure]", "python-dateutil", "requests[security]" ], "requires_python": "", "summary": "Aspose.HTML for Cloud Python SDK", "version": "20.8.1", "yanked": false, "yanked_reason": null }, "last_serial": 7986988, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "a44b801be21fb344102034f1981fa4a5", "sha256": "6818f018935ee2f5d672325fe16b8d3121528aafc83f3c75c720b07c31115b42" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a44b801be21fb344102034f1981fa4a5", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 67728, "upload_time": "2018-07-09T13:25:45", "upload_time_iso_8601": "2018-07-09T13:25:45.359835Z", "url": "https://files.pythonhosted.org/packages/9c/9a/d3ff80069795e080d6676610fa25ba7e3f2eafaaaaf590f7d22b0a3d036c/asposehtmlcloud-1.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.10": [ { "comment_text": "", "digests": { "md5": "5cd040a811dd59bc699414de770d4044", "sha256": "2486841140c343926126d1a5882846298ca39e035b4d3095b4a0c674e058b400" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "5cd040a811dd59bc699414de770d4044", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 74749, "upload_time": "2019-04-19T10:46:54", "upload_time_iso_8601": "2019-04-19T10:46:54.861456Z", "url": "https://files.pythonhosted.org/packages/b4/86/d3eb574c1b1a7088516f05e72971a24604a88a55249a374a6ac66f6a5a58/asposehtmlcloud-1.0.10-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "3ae842879af50fd7c54fca1aa43d0691", "sha256": "55857b8a8af41e933c0a084ccce228e0768da16ac24c5ada61a840ba29e09cac" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "3ae842879af50fd7c54fca1aa43d0691", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 69673, "upload_time": "2018-07-16T07:49:27", "upload_time_iso_8601": "2018-07-16T07:49:27.123484Z", "url": "https://files.pythonhosted.org/packages/2f/40/43ada3f69ecff1d95a09e0c5ef20ca67867afa7432506d6e52b01e409515/asposehtmlcloud-1.0.2-py2-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "3ffba1a07b8722db006ff5494aa89e8c", "sha256": "0e9b180c625cf49941f0f6de75f12b98b7dbdfd5465bbd66733dba4260006aad" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "3ffba1a07b8722db006ff5494aa89e8c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 70082, "upload_time": "2018-08-23T04:41:41", "upload_time_iso_8601": "2018-08-23T04:41:41.679953Z", "url": "https://files.pythonhosted.org/packages/dd/e2/1d92ad72119fb74877edb101b9152406c4e0cce8ae8550f96046cd557dbd/asposehtmlcloud-1.0.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3be0d4fc8b6a8703bae75049fa9c769", "sha256": "3a4e55dab8b29ab8d03fc36557f8865fb8290e729329dc003dd0a8f2facb2557" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.3.tar.gz", "has_sig": false, "md5_digest": "d3be0d4fc8b6a8703bae75049fa9c769", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5671929, "upload_time": "2018-08-23T04:43:14", "upload_time_iso_8601": "2018-08-23T04:43:14.357102Z", "url": "https://files.pythonhosted.org/packages/0a/c2/222c124e0a42cf9e31094b8cda3e39cd66d242d604d9488c799778fa0968/asposehtmlcloud-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "6edb73694b382a60508610d30d9cc92e", "sha256": "001cfdedeac33a78f318d77a519d6ed003a9934fefdb7b2e9ee4839fc22d19cc" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.4-py2-none-any.whl", "has_sig": false, "md5_digest": "6edb73694b382a60508610d30d9cc92e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 70589, "upload_time": "2018-08-29T19:44:33", "upload_time_iso_8601": "2018-08-29T19:44:33.846117Z", "url": "https://files.pythonhosted.org/packages/ce/11/0afebb18429593846ab4f355048044be1e1771406d5c76df686f389bf536/asposehtmlcloud-1.0.4-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef16381e239990e088fa4cc6bae8d568", "sha256": "09366b3eed55cefc37a8a83eb85840898fb70832d23d84546d5fdad4763b2034" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.4.tar.gz", "has_sig": false, "md5_digest": "ef16381e239990e088fa4cc6bae8d568", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5672467, "upload_time": "2018-08-29T19:47:50", "upload_time_iso_8601": "2018-08-29T19:47:50.865362Z", "url": "https://files.pythonhosted.org/packages/11/7f/8cee95c6e18f008738bbd33cb2c2efac9955daaa29cd6eca620bfc88efae/asposehtmlcloud-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "7ae6bc1519af44bcade2f0fdd3a707ed", "sha256": "61125b8b85d235527fd07160e470494cf30e932808b775c2787f83ae5c2e7d60" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "7ae6bc1519af44bcade2f0fdd3a707ed", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 70645, "upload_time": "2018-09-17T10:11:20", "upload_time_iso_8601": "2018-09-17T10:11:20.368842Z", "url": "https://files.pythonhosted.org/packages/69/b8/916f9c5d7a0e188a64f7ba329fe4ba6f867000537fe8239931c9e3881e03/asposehtmlcloud-1.0.5-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3afe1fb9cb63ed3d20babb80a3c74d55", "sha256": "2b135a930fe6510f7278b25de673773df9b0028321c87dd50f28e3fed934e94a" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.5.tar.gz", "has_sig": false, "md5_digest": "3afe1fb9cb63ed3d20babb80a3c74d55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5672585, "upload_time": "2018-09-17T10:11:29", "upload_time_iso_8601": "2018-09-17T10:11:29.841838Z", "url": "https://files.pythonhosted.org/packages/44/ed/e5d478a3b4c5d9151e7456cfb2fd8c5e262aff2ef38f22f420c7368a4366/asposehtmlcloud-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "f129e0e580d507b91906b09cf7e44fc8", "sha256": "5447d8fe3db3597051c7cc37457ed763643da71b5954fc5ecf070de206ea41ee" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "f129e0e580d507b91906b09cf7e44fc8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 71713, "upload_time": "2018-10-10T08:48:53", "upload_time_iso_8601": "2018-10-10T08:48:53.196569Z", "url": "https://files.pythonhosted.org/packages/04/66/a3a26fbe0b51c6b20bbcbca0216b0d110ad4b00b936ea6ab6f410b9601a6/asposehtmlcloud-1.0.6-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a365aba383781bea2f7b8b713ae6682", "sha256": "4e147ed0db773701f8774a855d321b1a191dfa20a98460c8983b8447d790b72d" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.6.tar.gz", "has_sig": false, "md5_digest": "8a365aba383781bea2f7b8b713ae6682", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5673614, "upload_time": "2018-10-10T08:48:57", "upload_time_iso_8601": "2018-10-10T08:48:57.103499Z", "url": "https://files.pythonhosted.org/packages/75/c7/7d91a3bfe5b8516c7c0a9bf4a373a68283a8c717a139b9d536589572864c/asposehtmlcloud-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "b4613dc7737fc30bc695c0eef42dca94", "sha256": "4c976099f2d310e5e6fee865eb9945338f2a1dee45dccd30bc4f543915dadb6e" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "b4613dc7737fc30bc695c0eef42dca94", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 72597, "upload_time": "2019-01-16T10:44:47", "upload_time_iso_8601": "2019-01-16T10:44:47.443264Z", "url": "https://files.pythonhosted.org/packages/67/47/5e73eeacc36374c4426ef0887915cbb4bb6d4cce054a44afb93759754314/asposehtmlcloud-1.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "c871c07bae884ac8715e028e245d65a1", "sha256": "4cd01d5dfef69fd347a9b2f25ac90d8084dc9a917612e0a3f1d3d99c244d8d55" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "c871c07bae884ac8715e028e245d65a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73549, "upload_time": "2019-01-28T10:30:20", "upload_time_iso_8601": "2019-01-28T10:30:20.604996Z", "url": "https://files.pythonhosted.org/packages/aa/ac/26d628ca514bc520c74a790e126072b1dd46b1c6e5c7aa39be9738977cbd/asposehtmlcloud-1.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "16bfcdc6069eee1b061a95096b3dcb93", "sha256": "37e01ed6adbb11915a84336b9aa50bcf1d1f62429c365a6d7eae56f609b67ced" }, "downloads": -1, "filename": "asposehtmlcloud-1.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "16bfcdc6069eee1b061a95096b3dcb93", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73815, "upload_time": "2019-02-18T07:52:30", "upload_time_iso_8601": "2019-02-18T07:52:30.475104Z", "url": "https://files.pythonhosted.org/packages/41/e2/b76e3911eed56d868caff4338cc46749786c110a56af9a1522280faa363b/asposehtmlcloud-1.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "19.5.0": [ { "comment_text": "", "digests": { "md5": "b036d13a651405c93308c64e4bf06f03", "sha256": "c586ba6f1ebd686814da045107b0a0a74c05042c72d20cdc94650291968994c4" }, "downloads": -1, "filename": "asposehtmlcloud-19.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b036d13a651405c93308c64e4bf06f03", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 61424, "upload_time": "2019-08-07T14:30:48", "upload_time_iso_8601": "2019-08-07T14:30:48.879847Z", "url": "https://files.pythonhosted.org/packages/40/28/abf9978e1cda7c7e9760b14f4f0bf2f92f8719c244897a76f004f4ed174b/asposehtmlcloud-19.5.0-py2-none-any.whl", "yanked": false, "yanked_reason": null } ], "19.6.1": [ { "comment_text": "", "digests": { "md5": "acc118b9dd68d52d3e02b988ed9188ad", "sha256": "4bf4ffbd59a6c0768dadf5f9cbca39176d1642d4393bd52106acb9658955f08d" }, "downloads": -1, "filename": "asposehtmlcloud-19.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "acc118b9dd68d52d3e02b988ed9188ad", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 59562, "upload_time": "2019-10-28T10:38:00", "upload_time_iso_8601": "2019-10-28T10:38:00.314775Z", "url": "https://files.pythonhosted.org/packages/b5/34/a94445595876a241ac0b1964ace3410b6e7b8eb88bcb32db44c8b8e4776d/asposehtmlcloud-19.6.1-py2-none-any.whl", "yanked": false, "yanked_reason": null } ], "20.8.1": [ { "comment_text": "", "digests": { "md5": "d1df25696dc0f9f53048a6d3c4fb7db9", "sha256": "28374953f79e1757042a610b3749e9fac584974ee2b663eafa3c22ae30fe99f0" }, "downloads": -1, "filename": "asposehtmlcloud-20.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d1df25696dc0f9f53048a6d3c4fb7db9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62586, "upload_time": "2020-08-18T11:12:50", "upload_time_iso_8601": "2020-08-18T11:12:50.694175Z", "url": "https://files.pythonhosted.org/packages/67/c0/6308aeae5f0342fbe8c0b0669814dea525a2e042a799fa7a938740a43419/asposehtmlcloud-20.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d1df25696dc0f9f53048a6d3c4fb7db9", "sha256": "28374953f79e1757042a610b3749e9fac584974ee2b663eafa3c22ae30fe99f0" }, "downloads": -1, "filename": "asposehtmlcloud-20.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d1df25696dc0f9f53048a6d3c4fb7db9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62586, "upload_time": "2020-08-18T11:12:50", "upload_time_iso_8601": "2020-08-18T11:12:50.694175Z", "url": "https://files.pythonhosted.org/packages/67/c0/6308aeae5f0342fbe8c0b0669814dea525a2e042a799fa7a938740a43419/asposehtmlcloud-20.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }