{ "info": { "author": "Matt Thomson", "author_email": "mattjohnthomson@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Topic :: Text Processing" ], "description": "PyEmbed\n=======\n\n.. image:: https://secure.travis-ci.org/pyembed/pyembed.png?branch=master\n :target: http://travis-ci.org/pyembed/pyembed\n.. image:: https://coveralls.io/repos/pyembed/pyembed/badge.png\n :target: https://coveralls.io/r/pyembed/pyembed\n.. image:: https://pypip.in/d/pyembed/badge.png\n :target: https://pypi.python.org/pypi/pyembed/\n.. image:: https://pypip.in/v/pyembed/badge.png\n :target: https://pypi.python.org/pypi/pyembed/\n.. image:: https://pypip.in/wheel/pyembed/badge.png\n :target: https://pypi.python.org/pypi/pyembed/\n.. image:: https://pypip.in/egg/pyembed/badge.png\n :target: https://pypi.python.org/pypi/pyembed/\n.. image:: https://pypip.in/license/pyembed/badge.png\n :target: https://pypi.python.org/pypi/pyembed/\n\n`OEmbed`_ consumer library for Python with automatic discovery of\nproducers.\n\nPyEmbed allows you to easily embed content on your website from a wide\nvariety of producers (including `Flickr`_, `Twitter`_ and `YouTube`_).\nUnlike many OEmbed consumers, you don't need to configure each producer\nthat you want to use - PyEmbed discovers the configuration automatically.\n\nYou just need to provide the URL, and PyEmbed will generate a block of\nHTML, ready for you to include in your page:\n\n::\n\n >>> from pyembed.core import PyEmbed\n >>> html = PyEmbed().embed('http://www.youtube.com/watch?v=9bZkp7q19f0')\n \n\nThere are plugins for embedding content into `Markdown`_ and \n`reStructuredText`_ documents, and for customizing embeddings with `Jinja2`_\nand `Mustache`_ templates. For more information, see the `PyEmbed`_ website.\n\nCompatibility\n-------------\n\nPyEmbed has been tested with Python 2.7 and 3.3.\n\nInstallation\n------------\n\nPyEmbed can be installed using pip:\n\n::\n\n pip install pyembed\n\nContributing\n------------\n\nTo report an issue, request an enhancement, or contribute a patch, go to\nthe PyEmbed `GitHub`_ page.\n\nLicense\n-------\n\nPyEmbed is distributed under the MIT license.\n\n::\n\n Copyright (c) 2013 Matt Thomson\n\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n.. _OEmbed: http://oembed.com\n.. _Flickr: http://flickr.com\n.. _Twitter: http://twitter.com\n.. _YouTube: http://youtube.com\n.. _Markdown: https://pypi.python.org/pypi/pyembed-markdown\n.. _reStructuredText: https://pypi.python.org/pypi/pyembed-rst\n.. _Jinja2: https://pypi.python.org/pypi/pyembed-jinja2\n.. _Mustache: https://pypi.python.org/pypi/pyembed-mustache\n.. _PyEmbed: http://pyembed.github.io\n.. _GitHub: https://github.com/pyembed/pyembed\n\n.. :changelog:\n\nChanges\n=======\n\nv1.3.3, 2016-04-16\n------------------\n\nBug fixes:\n\n- #62: Add explicit scheme for YouTube.\n\nv1.3.1, 2015-11-19\n------------------\n\nBug fixes:\n\n- #61: Handle downtime of provider list.\n\nv1.3.0, 2015-09-05\n------------------\n\nEnhancements:\n\n- #59: Reorder discovery.\n\nv1.2.3, 2015-08-27\n------------------\n\nBug fixes:\n\n- #53: Don't hit provider list until necessary.\n\nv1.2.2, 2015-08-15\n------------------\n\nBug fixes:\n\n- #51: Fix other Beautiful Soup warning\n\nv1.2.1, 2015-08-15\n------------------\n\nBug fixes:\n\n- #50: Specify Beautiful Soup parser\n\nv1.2.0, 2015-08-12\n------------------\n\nEnhancements:\n\n- #48: Use official list of providers\n\nv1.1.2, 2015-01-03\n------------------\n\nEnhancements:\n\n- #44: Allow overriding of default templates by subclassing.\n\nv1.1.1, 2014-09-02\n------------------\n\nBug fixes:\n\n- #42: Error embedding from SoundCloud.\n\nv1.1.0, 2014-08-02\n------------------\n\nEnhancements:\n\n- #40: Add support for providers that do not have discovery enabled.\n\nv1.0.0, 2014-02-05\n------------------\n\nInitial stable release\n\nv0.7.0, 2014-01-20\n------------------\n\nBreaking changes:\n\n- The `pyembed.core.consumer.embed` method has been removed. Instead, call\n `embed` on the `pyembed.core.PyEmbed` class.\n\nv0.6.1, 2014-01-11\n------------------\n\nBug fixes:\n\n- #36: Failure to handle relative OEmbed URLs\n\nv0.6.0, 2014-01-01\n------------------\n\nBreaking changes:\n\n- The option to provide Mustache templates for rendering has been removed. It\n will be restored in a new pyembed-mustache module.\n\nEnhancements:\n\n- #33: Make rendering engines pluggable\n\nv0.5.0, 2014-01-01\n------------------\n\nBreaking changes:\n\n- The ``rembed`` package has been renamed to ``pyembed``.\n\nEnhancements:\n\n- #30: Rename to PyEmbed\n\nv0.4.3, 2013-12-29\n------------------\n\nRebuilt due to error in deployment process. No functional changes.\n\nv0.4.2, 2013-12-29\n------------------\n\nRebuilt due to error in deployment process. No functional changes.\n\nv0.4.1, 2013-12-29\n------------------\n\nRebuilt due to error in deployment process. No functional changes.\n\nv0.4.0, 2013-12-29\n------------------\n\nEnhancements:\n\n- #5: More control over embedding format\n\nv0.3.0, 2013-08-03\n------------------\n\nBreaking changes:\n\n- The ``rembed`` package has been renamed to ``rembed.core``.\n\nEnhancements:\n\n- #19: Make rembed into a namespace package\n\nv0.2.2, 2013-08-03\n------------------\n\nEnhancements:\n\n- #20: Add code coverage to build\n- #21: Add static analysis to build\n\nv0.2.1, 2013-08-02\n------------------\n\nBug fixes:\n\n- #17: Classifiers not shown in PyPI\n\nv0.2.0, 2013-07-30\n------------------\n\nEnhancements:\n\n- #3: Support Python 3\n- #4: Add maxheight and maxwidth parameters\n- #10: Improve PyPI package entry\n\nBug fixes:\n\n- #9: Tidy up requirements duplication\n\nv0.1.1, 2013-07-29\n------------------\n\nBug fixes:\n\n- #6: Package fails to install\n\nv0.1.0, 2013-07-29\n------------------\n\nInitial release", "description_content_type": null, "docs_url": null, "download_url": "https://pypi.python.org/pypi/pyembed/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pyembed.github.io", "keywords": null, "license": "Copyright (c) 2013 Matt Thomson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", "maintainer": null, "maintainer_email": null, "name": "pyembed", "package_url": "https://pypi.org/project/pyembed/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pyembed/", "project_urls": { "Download": "https://pypi.python.org/pypi/pyembed/", "Homepage": "http://pyembed.github.io" }, "release_url": "https://pypi.org/project/pyembed/1.3.3/", "requires_dist": null, "requires_python": null, "summary": "Python OEmbed consumer library with automatic discovery of producers", "version": "1.3.3" }, "last_serial": 2066937, "releases": { "0.5.0": [ { "comment_text": "", "digests": { "md5": "c114974922b584e85a86dcd2129f5c86", "sha256": "18892036de9001791ec4fb4cd0b08fae422974e118e5442f9c76afc844d843b5" }, "downloads": -1, "filename": "pyembed-0.5.0.zip", "has_sig": false, "md5_digest": "c114974922b584e85a86dcd2129f5c86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19658, "upload_time": "2014-01-01T12:54:35", "url": "https://files.pythonhosted.org/packages/46/c0/af31b01361a70769d916156188444563dcea98d8cb2a878a972d8339e26e/pyembed-0.5.0.zip" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "c6ddc85fc39e9ec675c53fdb1d64c957", "sha256": "ec1cccdacc9a5b22fcd6ddf2d80cac9bd71e557276be7b6b36dc38b66b750fa6" }, "downloads": -1, "filename": "pyembed-0.6.0.zip", "has_sig": false, "md5_digest": "c6ddc85fc39e9ec675c53fdb1d64c957", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19041, "upload_time": "2014-01-01T19:44:24", "url": "https://files.pythonhosted.org/packages/1f/e5/d419e534a8cc48a77ceccb26d5e406726e1b21a0d7930c5f2d9d70854e0a/pyembed-0.6.0.zip" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "fb14296c4c6d25509fe4a2d30503bd98", "sha256": "7433e41799709630de0af0f94d0c9ec76f82bf102c47ba9e57af3051a178a0c7" }, "downloads": -1, "filename": "pyembed-0.6.1.tar.gz", "has_sig": false, "md5_digest": "fb14296c4c6d25509fe4a2d30503bd98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8297, "upload_time": "2014-01-11T12:06:08", "url": "https://files.pythonhosted.org/packages/8a/bd/a498603b9a72f4c70cda16bc6a3c83abbf077ffca89e72a0bcafe7192451/pyembed-0.6.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "be219f6a0aa23b62537c899577080307", "sha256": "339aa969f78329e6be5d1725dd8a95d67993bff468937f70c32f69f081175b98" }, "downloads": -1, "filename": "pyembed-0.6.1.zip", "has_sig": false, "md5_digest": "be219f6a0aa23b62537c899577080307", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19164, "upload_time": "2014-01-11T12:06:12", "url": "https://files.pythonhosted.org/packages/c6/ba/30ca15028b64a6d7caf65681a69aa3debe487d3958174e68c43dbe2c41f2/pyembed-0.6.1.zip" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "0c4e54c9d5296ef231fe987240747226", "sha256": "7c5327cfd1dfc124657e006aa198a06701cfdbecd44ef75e29981a74590b3535" }, "downloads": -1, "filename": "pyembed-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0c4e54c9d5296ef231fe987240747226", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8723, "upload_time": "2014-01-20T20:28:47", "url": "https://files.pythonhosted.org/packages/63/6a/8a9535b72d8a6326ff623bcc7680ebd9473b2a40af38f0639c9d58fb3d6b/pyembed-0.7.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "aa38506b3fedad196207f437335d9c8f", "sha256": "8b4017e5363345044d12e5e62b76ec0593c6e3c630929dc9abc8b3a42399ac9b" }, "downloads": -1, "filename": "pyembed-0.7.0.zip", "has_sig": false, "md5_digest": "aa38506b3fedad196207f437335d9c8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20369, "upload_time": "2014-01-20T20:27:12", "url": "https://files.pythonhosted.org/packages/cb/6c/df50be2ac25b9f2075c7df1870e73135258d9b3219b9d738510ef26aab09/pyembed-0.7.0.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ff1a77b382e739384ecf2dadcf45005a", "sha256": "14dd10e9ccf3b68d8114c07d169655432d620743be0fe80d609f9425fd35d237" }, "downloads": -1, "filename": "pyembed-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ff1a77b382e739384ecf2dadcf45005a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7608, "upload_time": "2014-02-05T20:17:07", "url": "https://files.pythonhosted.org/packages/e1/30/d3e1c5e4de32b4336744e7beaadf197d5eec7488498897675a22b5fce78c/pyembed-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "1fb555e24377a34293f04aa2aecd631f", "sha256": "7ba457429fc66a22c2c8d555ae4b5d130ef82dfa49bf9053b656bd984e1b16c0" }, "downloads": -1, "filename": "pyembed-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1fb555e24377a34293f04aa2aecd631f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20823, "upload_time": "2014-08-02T10:16:47", "url": "https://files.pythonhosted.org/packages/57/a9/8baaa2c559a141f11559237261e7db8df2b0820cea639b818346b8fd1751/pyembed-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efbc88675d8e661b04f26b7d017a8c48", "sha256": "c460b231c1e095e0e7cea18aa8e793d532b1e76397ad4c4d0f41bede13d55682" }, "downloads": -1, "filename": "pyembed-1.1.0.tar.gz", "has_sig": false, "md5_digest": "efbc88675d8e661b04f26b7d017a8c48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12214, "upload_time": "2014-08-02T10:16:44", "url": "https://files.pythonhosted.org/packages/cb/0c/23a6e8854fb93cc9f99ffaed68e2b34bc3526d432459702a36c0436fbde0/pyembed-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "92ad8f6f2cf024567f23b33455473026", "sha256": "11077b052f9bca3c2151ca05c05344013267a50176407805be3465fe4cfb195e" }, "downloads": -1, "filename": "pyembed-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92ad8f6f2cf024567f23b33455473026", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21245, "upload_time": "2014-09-02T20:37:32", "url": "https://files.pythonhosted.org/packages/42/d8/06da133eb486ade37bf93734fe54452e3cec9e523cfdbf848fce0b418ddb/pyembed-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f214ee2181f72fe9109077d6e4665483", "sha256": "86b52ffc8d0d2cb3c1f2fafa95737b0e6e5e013ec8d3371938f159de687ed646" }, "downloads": -1, "filename": "pyembed-1.1.1.tar.gz", "has_sig": false, "md5_digest": "f214ee2181f72fe9109077d6e4665483", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11844, "upload_time": "2014-09-02T20:37:28", "url": "https://files.pythonhosted.org/packages/fd/f5/b542c147b202bfad5048405590d388dbeda167d642f6f4ac22960c7f92f4/pyembed-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "128610c970c3c196dd65326dfd3756d6", "sha256": "a67938568285510465371288f51035f0bd7e50abe871686c732a495936bc70f9" }, "downloads": -1, "filename": "pyembed-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "128610c970c3c196dd65326dfd3756d6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21561, "upload_time": "2015-01-03T13:49:05", "url": "https://files.pythonhosted.org/packages/7d/37/608c9a861fc476fdb5877d4d000eb62876db31b9662c1dee5074f88d71b3/pyembed-1.1.2-py2.py3-none-any.whl" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "9e18a68f974033f44066061f4b34473e", "sha256": "5135178a02570e466bbbbef2161a9c0c2f8ba10be0fcb6caf83bf0b2731e3477" }, "downloads": -1, "filename": "pyembed-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e18a68f974033f44066061f4b34473e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24679, "upload_time": "2015-08-12T19:47:34", "url": "https://files.pythonhosted.org/packages/9e/50/60734ad036a43eeed6dcc68a85e401c707dc8cc05dd5c955390a2ba4a398/pyembed-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9b0da7a3697d3e471ba9e0613e624f2", "sha256": "a362aa1efa2678d3ba9a43e6520ece4d0ffd05e99330ddc91ed958e30eb6f9d9" }, "downloads": -1, "filename": "pyembed-1.2.0.tar.gz", "has_sig": false, "md5_digest": "d9b0da7a3697d3e471ba9e0613e624f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12971, "upload_time": "2015-08-12T19:47:30", "url": "https://files.pythonhosted.org/packages/ac/1b/2e0a3d9f8716c930d459ea34d28351323b4b2ef7616e769eb550be34f4bb/pyembed-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "5064206254b80f694fffcf2dc957e618", "sha256": "5db5dc7b9923607fc1ce1fb449d023d1b7e8992fda9ac16c4ed5b0a83fb0ca5c" }, "downloads": -1, "filename": "pyembed-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5064206254b80f694fffcf2dc957e618", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24766, "upload_time": "2015-08-15T10:17:08", "url": "https://files.pythonhosted.org/packages/86/b5/fb2e9b1d365f7f644d5d47e4b7b2d03fb2ac5e592e6a03ff0ce331c5bbb4/pyembed-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f19edc1936fd3772d0b2d35961acb8c", "sha256": "f570aa719d10cb2d732b250bd5d8aa382fc0d02542263940f00d8b07edfcdf9a" }, "downloads": -1, "filename": "pyembed-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6f19edc1936fd3772d0b2d35961acb8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13018, "upload_time": "2015-08-15T10:17:04", "url": "https://files.pythonhosted.org/packages/93/67/20d9e9f8c5f4cf22a56a62b9efeada5a2151e8a0b1ccdf5d7ee269ce89bf/pyembed-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "bae7aebfd4072b939bb00f6693bde458", "sha256": "327da67ff427e3267f3adc750a4a84f2bc210e8bab0f3776951b8a281cc07d13" }, "downloads": -1, "filename": "pyembed-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bae7aebfd4072b939bb00f6693bde458", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24824, "upload_time": "2015-08-15T10:25:22", "url": "https://files.pythonhosted.org/packages/21/f1/f359a1755d3ad440615e28ebf2c37b8c4e6674f8d5d3af575b357f685b52/pyembed-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b66d1b48daf8b21ee0d4bf77e48fcf1", "sha256": "782de0744f9566b3da78fd26352a45ae06ff1bf90f0c62502a1b4a994ede8aaa" }, "downloads": -1, "filename": "pyembed-1.2.2.tar.gz", "has_sig": false, "md5_digest": "7b66d1b48daf8b21ee0d4bf77e48fcf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13057, "upload_time": "2015-08-15T10:25:18", "url": "https://files.pythonhosted.org/packages/f7/f4/7a64834948dc52cd846675fbff9031f502c6bb28a9a70c663b7643a680d7/pyembed-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "18dae74df414cfcac1bf2aaf515d2d50", "sha256": "3f70dfbdb8a5f5ef665518089ebeca00f6a62b2e10857a44b01d9ec67330ef9c" }, "downloads": -1, "filename": "pyembed-1.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18dae74df414cfcac1bf2aaf515d2d50", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21868, "upload_time": "2015-08-27T12:36:08", "url": "https://files.pythonhosted.org/packages/50/72/9a4488db8c3ae057d3e9c35850ac53703f0b88a6333f0b07e8fe3cd92b61/pyembed-1.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c1cbbd0fad4aa584d3e1e6e5ba48fc6", "sha256": "29172be9e5851d44f0628d52eba5b48efc47f504c4a79603298e6168d7f34900" }, "downloads": -1, "filename": "pyembed-1.2.3.tar.gz", "has_sig": false, "md5_digest": "5c1cbbd0fad4aa584d3e1e6e5ba48fc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15038, "upload_time": "2015-08-27T12:36:17", "url": "https://files.pythonhosted.org/packages/c0/bc/41efd35a6c3c85fce5d0440e7d26132571eba1922213f494ad9cfe40f7bb/pyembed-1.2.3.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "0083804df56d9b283acb727c9c0eea06", "sha256": "05d8464ad4c0d9d8d098b3862091f2257db5b77fb88302e6855c15d475a3e455" }, "downloads": -1, "filename": "pyembed-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0083804df56d9b283acb727c9c0eea06", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24987, "upload_time": "2015-09-05T14:01:58", "url": "https://files.pythonhosted.org/packages/e0/f6/21f64aa7bf49f42187aad8e92a0201a3bb136de46c9600c2fb7d0b43ccae/pyembed-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0f3418e7275db82aa46fb09a065577e", "sha256": "d13b9a576ad9d589d629918e9ca974bcc85e535ee014f4329c3bd32525caa87e" }, "downloads": -1, "filename": "pyembed-1.3.0.tar.gz", "has_sig": false, "md5_digest": "d0f3418e7275db82aa46fb09a065577e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13189, "upload_time": "2015-09-05T14:01:45", "url": "https://files.pythonhosted.org/packages/4a/f0/95ae0a5f32b6ab996940079415456b23ab4d78f8d18effdf47d524a872b5/pyembed-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "bf3fdc8e7ec223b33cf51cd2125625c6", "sha256": "0e4a88a751dc00f666d381d8e3a93bf9812efbc03aa1b1f0b18b47e454798c67" }, "downloads": -1, "filename": "pyembed-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf3fdc8e7ec223b33cf51cd2125625c6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22001, "upload_time": "2015-11-19T13:41:13", "url": "https://files.pythonhosted.org/packages/77/f4/f54a66790f725d4547c416706a215aea51ea8a128b201d2e6a52a841c2d0/pyembed-1.3.1-py2.py3-none-any.whl" } ], "1.3.2": [], "1.3.3": [ { "comment_text": "", "digests": { "md5": "5e1e97854ff05bd84d8e5f3388a40970", "sha256": "a84ed52e6d9e2bc883cea715a8731d4de2aaa15becb770e6cec3fd4bed588e3f" }, "downloads": -1, "filename": "pyembed-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e1e97854ff05bd84d8e5f3388a40970", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22071, "upload_time": "2016-04-16T10:57:54", "url": "https://files.pythonhosted.org/packages/33/dd/8dd7c25a43b1c7a49617150cbdf84dcde6aacd9a69cb840f7b41c12a145d/pyembed-1.3.3-py2.py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5e1e97854ff05bd84d8e5f3388a40970", "sha256": "a84ed52e6d9e2bc883cea715a8731d4de2aaa15becb770e6cec3fd4bed588e3f" }, "downloads": -1, "filename": "pyembed-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e1e97854ff05bd84d8e5f3388a40970", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22071, "upload_time": "2016-04-16T10:57:54", "url": "https://files.pythonhosted.org/packages/33/dd/8dd7c25a43b1c7a49617150cbdf84dcde6aacd9a69cb840f7b41c12a145d/pyembed-1.3.3-py2.py3-none-any.whl" } ] }