{
"info": {
"author": "Florian Schulze",
"author_email": "florian.schulze@gmx.net",
"bugtrack_url": null,
"classifiers": [
"Environment :: Console",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration"
],
"description": "Overview\n========\n\nThe ploy_ezjail plugin provides integration of `ezjail`_ with `ploy`_ to manage `FreeBSD`_ jails.\n\n.. _ezjail: http://erdgeist.org/arts/software/ezjail/\n.. _ploy: https://github.com/ployground/\n.. _FreeBSD: http://www.freebsd.org\n\n\nInstallation\n============\n\nploy_ezjail is best installed with easy_install, pip or with zc.recipe.egg in a buildout.\n\n\nMasters\n=======\n\nTo use ploy_ezjail you need a host running FreeBSD on which you want to manage jails.\n\nYou declare a master with ``[ez-master:masterid]`` where ``masterid`` is the name you want to use for this master.\nNow you can either add options like for a ``plain`` ploy instance, or you can use the ``instance`` option to refer to another instance from your config like this::\n\n [ez-master:master1]\n host = myhost.example.com\n\n [plain-instance:foohost]\n host = foohost.example.com\n\n [ez-master:master2]\n instance = foohost\n\nThe latter is most useful in conjunction with other ploy backend plugins, as it allows you to easily switch between provisioners, i.e. to have an ``ez-master`` provisioned on VirtualBox during development and on a ``plain`` instance in production.\n\n\nOptions\n-------\n\n``debug-commands``\n If set to ``yes``, the commands executed on the host are echoed locally.\n\n``instance``\n The instance to use as host for this master.\n If empty, the local machine is used without an ssh connection.\n\n``ezjail-admin``\n Path to the ``ezjail-admin`` script on the host.\n Defaults to ``/usr/local/bin/ezjail-admin``.\n\n``sudo``\n Use ``sudo`` to run commands on the host.\n\n\nInstances\n=========\n\nAt the moment all jails will be created using ZFS (the ``-c zfs`` option of ``ezjail-admin``), so the host needs to be setup accordingly.\n\n\nOptions\n-------\n\n``ip``\n The ip address to use for the jail.\n\n This can either be a single IPv4 address::\n\n ip = 10.0.0.3\n\n or any number of IPv4 and IPv6 addresses attached to different devices::\n\n ip = lo1|10.0.0.3,vtnet0|2a03:b0c0:3:d0::3a4d:c002\n\n The latter format is `ezjail's `_ own.\n **Required**\n\n``flavour``\n The **flavour** to use for this jail. This is explained in the `ezjail docs `_.\n\n``ezjail-name``\n The **name** to use for the jail. By default the id of the instance is used.\n\n``mounts``\n Additional mount points for the jail.\n You can specify one mount point per line.\n The format is::\n\n src=SRC dst=DST [ro=true] [create=true]\n\n The ``src`` is the path on the host, ``dst`` is the path inside the jail.\n\n If ``ro`` is set to ``true``, then the mount is read only.\n\n When ``create`` is enabled, then the ``src`` path is created with ``mkdir -p``.\n The ``dst`` path is always created inside the jail with ``mkdir -p``.\n\n You can reference `ZFS sections`_ inside ``src`` with ``{zfs[name]}`` where ``name`` is the ``ez-zfs`` section name.\n You can use the name of the jail instance with ``{name}}`` in both ``src`` and ``dst``.\n Examples::\n\n src=/foo dst=/foo\n src={zfs[backup]} dst=/bak\n src={zfs[data]}/{name} dst=/mnt/data create=true\n src={zfs[static]} dst=/mnt/static ro=true\n\n``no-terminate``\n If set to ``yes``, the jail can't be terminated via ploy until the setting is changed to ``no`` or removed entirely.\n\n``startup_script``\n Path to a local script (relative to the location of the configuration file) which will be run inside the jail right after creation and first start of the jail.\n\n``rc_require``\n String that indicates which other jails this jail requires to start up, effectively allowing you to define the startup order of jails.\n See ``rcorder(8)`` for more details.\n This value is written upon each startup of the jail not just when it is created initially, so to have changes take effect, it's sufficient to restart it.\n **Optional**\n\n``rc_provide``\n String that indicates what this jail provides.\n ``ezjail`` itself always sets its jails to provide ``standard_ezjail`` to which ``ploy_ezjail`` adds the name of the jail.\n IOW if you simply want to build a startup order using the names of the jails, you will not need to set this value.\n If you want this jail to provide any additional values, set them here.\n This value is written upon each startup of the jail not just when it is created initially, so to have changes take effect, it's sufficient to restart it.\n **Optional**\n\n\nZFS sections\n============\n\nYou can specify ZFS filesystems via ``[ez-zfs:name]`` sections.\nThis is used in mounts of jails to get the mountpoint and verify that the path exists and is it's own ZFS filesystem.\nYou can also create new ZFS filesystems with the ``create`` option.\n\n\nOptions\n-------\n\n``create``\n If set to ``yes``, the filesystem is created when first used.\n\n``path``\n Specifies the path of this filesystem.\n This is not the mountpoint, but the ZFS path.\n You can reference other ZFS sections with ``{zfs[name][path]}``.\n The ``name`` is the name of the referenced ZFS section.\n The ``[path]`` at the end is mandatory, as otherwise you would get the mountpoint of the referenced ZFS section.\n Examples::\n\n [ez-zfs:data]\n path = tank/data\n\n [ez-zfs:shared]\n path = {zfs[data][path]}/shared\n\n [ez-zfs:jails]\n path = {zfs[data][path]}/jails\n\n [ez-zfs:backup]\n create = true\n path = tank/backup\n\n\nChangelog\n=========\n\n1.5.1 - 2018-02-03\n------------------\n\n* Fix startup script for FreeBSD 11.x by replacing dots in it's name with\n underscores.\n [fschulze]\n\n\n1.5.0 - 2017-12-17\n------------------\n\n* Add ``get_fingerprints`` to support host keys with all key types.\n [fschulze]\n\n* Fix jail host ``status`` command for various cases.\n [fschulze]\n\n* Output stdout in addition to stderr on various errors. This let's one see\n additional debug info when jails don't start.\n [fschulze]\n\n\n1.4.0 - 2015-10-16\n------------------\n\n* Allow setting the jail name via ``ezjail-name`` instead of using the instance\n id as the default.\n [fschulze]\n\n\n1.3.0 - 2015-09-03\n------------------\n\n* Improved error handling with useful error messages instead of tracebacks.\n [fschulze]\n\n* Allow setting startup order of jails.\n [tomster]\n\n\n1.2.0 - 2015-03-05\n------------------\n\n* Use new ``Executor`` helper from ploy 1.2.0 which handles ssh agent forwarding.\n [fschulze]\n\n* Enable \"local mode\" where if the ``instance`` option is empty all commands\n are executed locally.\n [fschulze]\n\n\n1.1.0 - 2014-10-27\n------------------\n\n* Print status of all jails when requesting status of master.\n [fschulze]\n\n* Check jail status before trying to connect.\n [fschulze]\n\n* Use new helper in ploy 1.0.2 to setup proxycommand.\n [fschulze]\n\n\n1.0.0 - 2014-07-19\n------------------\n\n* Added documentation.\n [fschulze]\n\n\n1.0b9 - 2014-07-08\n------------------\n\n* Packaging and test fixes.\n [fschulze]\n\n\n1.0b8 - 2014-07-04\n------------------\n\n* Python 3 compatibility.\n [fschulze]\n\n* Renamed mr.awsome to ploy and mr.awsome.ezjail to ploy_ezjail.\n [fschulze]\n\n\n1.0b7 - 2014-06-16\n------------------\n\n* Provide default values for ``proxyhost`` and ``proxycommand`` options.\n [fschulze]\n\n* Merge config of ez-master with the instance it's using.\n [fschulze]\n\n\n1.0b6 - 2014-06-11\n------------------\n\n* Pass changes of proxy instance config on to the proxied instance config.\n [fschulze]\n\n\n1.0b5 - 2014-06-10\n------------------\n\n* Forcefully destroy jail. Together with ezjail 3.4.1 this solves the issue\n that sometimes the ZFS filesystem wasn't removed and the jail couldn't be\n started without manual intervention.\n [fschulze]\n\n\n1.0b4 - 2014-05-22\n------------------\n\n* Clear out massagers after copying the config for the proxy instance to\n prevent conflicts when the proxy instance is created.\n [fschulze]\n\n\n1.0b3 - 2014-05-21\n------------------\n\n* Fixes to make ``[instance:...]`` using an ez-master work.\n [fschulze]\n\n\n1.0b2 - 2014-05-15\n------------------\n\n* Added ``instance`` option to ez-master section to use another instance as\n the jail host.\n [fschulze, tomster]\n\n* Moved setuptools-git from setup.py to .travis.yml, it's only needed for\n releases and testing.\n [fschulze]\n\n\n1.0b1 - 2014-03-24\n------------------\n\n* Initial release\n [fschulze]\n",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://github.com/ployground/ploy_ezjail",
"keywords": "",
"license": "BSD 3-Clause License",
"maintainer": "",
"maintainer_email": "",
"name": "ploy_ezjail",
"package_url": "https://pypi.org/project/ploy_ezjail/",
"platform": "",
"project_url": "https://pypi.org/project/ploy_ezjail/",
"project_urls": {
"Homepage": "http://github.com/ployground/ploy_ezjail"
},
"release_url": "https://pypi.org/project/ploy_ezjail/1.5.1/",
"requires_dist": null,
"requires_python": "",
"summary": "Plugin for ploy to provision FreeBSD jails using ezjail.",
"version": "1.5.1"
},
"last_serial": 5377172,
"releases": {
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "55408b565a907b61996fea4d467c28be",
"sha256": "71f77e34848f08b27d3fd03b929521fe971775a88a9ca7681db1d8837facad5b"
},
"downloads": -1,
"filename": "ploy_ezjail-1.0.0.zip",
"has_sig": false,
"md5_digest": "55408b565a907b61996fea4d467c28be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17702,
"upload_time": "2014-07-19T19:28:29",
"url": "https://files.pythonhosted.org/packages/69/35/77c95377e8bc23a983a057548a64bd4fdb6c0c38237e4fb5608ea9649caa/ploy_ezjail-1.0.0.zip"
}
],
"1.0b8": [
{
"comment_text": "",
"digests": {
"md5": "fda916f32a43bec39debc44f337b0fda",
"sha256": "4d8e82a021d796bd66286374059b3a6638871c46d87a67500ad83f6f66fd4cc9"
},
"downloads": -1,
"filename": "ploy_ezjail-1.0b8.zip",
"has_sig": false,
"md5_digest": "fda916f32a43bec39debc44f337b0fda",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12839,
"upload_time": "2014-07-04T13:37:43",
"url": "https://files.pythonhosted.org/packages/a7/73/9d5f3825693b81fef6e8b736132674806b590827952b39388188400ce3ba/ploy_ezjail-1.0b8.zip"
}
],
"1.0b9": [
{
"comment_text": "",
"digests": {
"md5": "7ae73c4596e9e7ec0cbb3484dd666dc6",
"sha256": "5c19e94598d30d2b55538e02617e9096e4db275b789d6bb3129504a65c7d95d7"
},
"downloads": -1,
"filename": "ploy_ezjail-1.0b9.zip",
"has_sig": false,
"md5_digest": "7ae73c4596e9e7ec0cbb3484dd666dc6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13119,
"upload_time": "2014-07-08T11:19:18",
"url": "https://files.pythonhosted.org/packages/bf/92/63667f10a92954eee54faa8d554ab89f5f95480cbe9d6c819c2b08f70fea/ploy_ezjail-1.0b9.zip"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "3fad06d1b2939e7f8036b10ea6b5e05d",
"sha256": "6f23dc8ea442cdc7c8b25320fce110032eed10a0686126ef2cfa69528eb615ab"
},
"downloads": -1,
"filename": "ploy_ezjail-1.1.0.zip",
"has_sig": false,
"md5_digest": "3fad06d1b2939e7f8036b10ea6b5e05d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17374,
"upload_time": "2014-10-27T09:21:19",
"url": "https://files.pythonhosted.org/packages/53/2c/eeadd1963d49f58175d84532e2df115428a3abb09a7933860aedfc69427c/ploy_ezjail-1.1.0.zip"
}
],
"1.1.1dev": [],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "6bd7efe444557b00ff1508e4b5852c72",
"sha256": "20746a38f5c050fcefe95c22fe7648c359f74de8102c9b1abe194edbe1aad2f9"
},
"downloads": -1,
"filename": "ploy_ezjail-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "6bd7efe444557b00ff1508e4b5852c72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13715,
"upload_time": "2015-03-05T19:19:33",
"url": "https://files.pythonhosted.org/packages/11/56/d122f3f2c1519f0286ef73234f4e904043a1909aaf69ba255eb59df85364/ploy_ezjail-1.2.0.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "dae8cb294a1f01fa2e3a60b3587c4ea9",
"sha256": "7716630999ee69dbaeaf4295e9cc136c2313cb9341c8d1a5aaf108ba973a31d4"
},
"downloads": -1,
"filename": "ploy_ezjail-1.2.0.zip",
"has_sig": false,
"md5_digest": "dae8cb294a1f01fa2e3a60b3587c4ea9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18874,
"upload_time": "2015-03-05T19:19:31",
"url": "https://files.pythonhosted.org/packages/d1/73/d465e92add0ea80fb1e0516968dbb15be3d537dca4e7f23f70caf8d6ed4d/ploy_ezjail-1.2.0.zip"
}
],
"1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "e16b9b06d252c70a50509ee6ccaf39eb",
"sha256": "e89766d323425d2a9b1ca5447778757559c19456fced9c86d2fd2c6dd4bf35f1"
},
"downloads": -1,
"filename": "ploy_ezjail-1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "e16b9b06d252c70a50509ee6ccaf39eb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14784,
"upload_time": "2015-09-03T06:23:31",
"url": "https://files.pythonhosted.org/packages/16/96/6ac01f549a4f1aebbaa0c19cf8a356a92cff5bad033f5ae0aee7073ff02e/ploy_ezjail-1.3.0.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "062d3fd5c9707310beb7b452012ccb13",
"sha256": "47d428bf4b91e229f19bc85f3c63721dc08c9a9d61c0485e98199e9979aee01f"
},
"downloads": -1,
"filename": "ploy_ezjail-1.3.0.zip",
"has_sig": false,
"md5_digest": "062d3fd5c9707310beb7b452012ccb13",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20305,
"upload_time": "2015-09-03T06:23:27",
"url": "https://files.pythonhosted.org/packages/68/30/16fac1230ee0248f8125d0e50cd3db8f17201968ee3c5473641999c1670c/ploy_ezjail-1.3.0.zip"
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "61a7470bdca819d3664d595ba78a1d63",
"sha256": "d74cbe0f9b097bddfaaff1ae8e08cbe3acc6d01c0aa0b872b3245b8fc094adf5"
},
"downloads": -1,
"filename": "ploy_ezjail-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "61a7470bdca819d3664d595ba78a1d63",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15096,
"upload_time": "2015-10-16T13:24:02",
"url": "https://files.pythonhosted.org/packages/03/be/8daef5684967e534a5a3060eb73379ed68a093d5c8ca553e889a2790eeb9/ploy_ezjail-1.4.0.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "feb0de3bcfb18279982076266b2ce502",
"sha256": "e03b0946139a62091227717b745d9c6242a6dc1934534c887b7e1bf5ae29a571"
},
"downloads": -1,
"filename": "ploy_ezjail-1.4.0.zip",
"has_sig": false,
"md5_digest": "feb0de3bcfb18279982076266b2ce502",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20597,
"upload_time": "2015-10-16T12:07:34",
"url": "https://files.pythonhosted.org/packages/7b/4c/e7bcc2da72869b304048e4296a01082d0767a3f6ea8b57a3aa77604b54cd/ploy_ezjail-1.4.0.zip"
}
],
"1.4.0.dev0": [
{
"comment_text": "",
"digests": {
"md5": "eea6bb37977c7e44f6e311e45f09545a",
"sha256": "36cac3cba2f5e27e65e39aae59e05991981bb4c15199a35417a1ea43209c1fb0"
},
"downloads": -1,
"filename": "ploy_ezjail-1.4.0.dev0.zip",
"has_sig": false,
"md5_digest": "eea6bb37977c7e44f6e311e45f09545a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20809,
"upload_time": "2015-10-16T12:04:33",
"url": "https://files.pythonhosted.org/packages/ed/08/256cf44b459ca8bbfb8419c1155ec90366a87fb3abe5d1d5d4474765b75d/ploy_ezjail-1.4.0.dev0.zip"
}
],
"1.5.0": [
{
"comment_text": "",
"digests": {
"md5": "c94e73412a644a9275128ca0b6d25350",
"sha256": "79f8dbc7c3f5c90c2358f63e2f6a1c998007f27882b1dda6b8a30b2e2f441274"
},
"downloads": -1,
"filename": "ploy_ezjail-1.5.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "c94e73412a644a9275128ca0b6d25350",
"packagetype": "bdist_wheel",
"python_version": "2",
"requires_python": null,
"size": 16670,
"upload_time": "2017-12-17T11:35:04",
"url": "https://files.pythonhosted.org/packages/39/27/fbe214b4ca376d442cda1bdafbab79ab79637575baa228984417ebc71e7b/ploy_ezjail-1.5.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "650dc16a83f46a1eb6400958c5b45de2",
"sha256": "e8a3e30ba4f13156a8d417ffeafe7b2e9e4663bc195f10c922a0ad1d79a20a40"
},
"downloads": -1,
"filename": "ploy_ezjail-1.5.0.tar.gz",
"has_sig": false,
"md5_digest": "650dc16a83f46a1eb6400958c5b45de2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16724,
"upload_time": "2017-12-17T11:35:02",
"url": "https://files.pythonhosted.org/packages/0e/9e/ac32a20239afefbfc44a66ab46d1265739afd2cdc88e655416bb7cbc4719/ploy_ezjail-1.5.0.tar.gz"
}
],
"1.5.1": [
{
"comment_text": "",
"digests": {
"md5": "80d56546edd7a241b17061aa04467fcd",
"sha256": "c190a6bc152f3951f86366c2179be3841e2e499b259f2c50697d7e4fefa037e5"
},
"downloads": -1,
"filename": "ploy_ezjail-1.5.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "80d56546edd7a241b17061aa04467fcd",
"packagetype": "bdist_wheel",
"python_version": "2",
"requires_python": null,
"size": 16772,
"upload_time": "2018-02-03T11:14:42",
"url": "https://files.pythonhosted.org/packages/36/eb/44cf497afd25c27f35ad3c70b2700f7706277da1f5c066930e283a759c1e/ploy_ezjail-1.5.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7a7c3de621d29021e4a1c230731d2559",
"sha256": "b6e8e5761480822f7e6a0b11340bf6b1964f701c922287c89dd582417b07140e"
},
"downloads": -1,
"filename": "ploy_ezjail-1.5.1.tar.gz",
"has_sig": false,
"md5_digest": "7a7c3de621d29021e4a1c230731d2559",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16026,
"upload_time": "2018-02-03T11:14:38",
"url": "https://files.pythonhosted.org/packages/ca/66/1883ff09def8cadae125ff73610770f4e9487e228565359d04317155abf5/ploy_ezjail-1.5.1.tar.gz"
}
],
"2.0.0b1": [
{
"comment_text": "",
"digests": {
"md5": "85b21de6de71b16ba60c0874b1329d7f",
"sha256": "3d4185a081ca663d2f8e4afbc3dbedd16118d08b2a21b489bfe5f084eeffaf13"
},
"downloads": -1,
"filename": "ploy_ezjail-2.0.0b1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "85b21de6de71b16ba60c0874b1329d7f",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 16756,
"upload_time": "2018-02-07T08:32:05",
"url": "https://files.pythonhosted.org/packages/63/90/07b0471427714d8d8f195d4b96ab86de17af8a65d8630ac28e97be5eb67d/ploy_ezjail-2.0.0b1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5ed7291ba7cb9733cbf33c5feb11a386",
"sha256": "a319ae01c20a06620fba68fbb30173beda87435748e8d11f4438d24b1e60dce6"
},
"downloads": -1,
"filename": "ploy_ezjail-2.0.0b1.tar.gz",
"has_sig": false,
"md5_digest": "5ed7291ba7cb9733cbf33c5feb11a386",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16140,
"upload_time": "2018-02-07T08:32:03",
"url": "https://files.pythonhosted.org/packages/c1/ba/c4b62ce1d8193187cc62346dc86261afb083cf68faf6e4c46d5a436c3e71/ploy_ezjail-2.0.0b1.tar.gz"
}
],
"2.0.0b2": [
{
"comment_text": "",
"digests": {
"md5": "6f76d713165c21f27d9274ecd5b7a585",
"sha256": "3a8319a968d3b1b12e0a2ecdfa87321e77a2e12b4782064126d860c8a48415aa"
},
"downloads": -1,
"filename": "ploy_ezjail-2.0.0b2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6f76d713165c21f27d9274ecd5b7a585",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 12765,
"upload_time": "2019-06-09T08:35:09",
"url": "https://files.pythonhosted.org/packages/5f/f7/b08d1f69ad0755b6a702d4e8696760596667796e66a1bd1060ad90e423c8/ploy_ezjail-2.0.0b2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e88f75028904fb42f699a1a0401026e6",
"sha256": "938dbdf56d1ad3e3276282c7b34eb33406ad71a9075b52953f1b7c4649ef8637"
},
"downloads": -1,
"filename": "ploy_ezjail-2.0.0b2.tar.gz",
"has_sig": false,
"md5_digest": "e88f75028904fb42f699a1a0401026e6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16273,
"upload_time": "2019-06-09T08:35:07",
"url": "https://files.pythonhosted.org/packages/48/87/fea5eae3625fb9e9da9682850be88175f96c24f7bba2d33fa1312467ce0e/ploy_ezjail-2.0.0b2.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "80d56546edd7a241b17061aa04467fcd",
"sha256": "c190a6bc152f3951f86366c2179be3841e2e499b259f2c50697d7e4fefa037e5"
},
"downloads": -1,
"filename": "ploy_ezjail-1.5.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "80d56546edd7a241b17061aa04467fcd",
"packagetype": "bdist_wheel",
"python_version": "2",
"requires_python": null,
"size": 16772,
"upload_time": "2018-02-03T11:14:42",
"url": "https://files.pythonhosted.org/packages/36/eb/44cf497afd25c27f35ad3c70b2700f7706277da1f5c066930e283a759c1e/ploy_ezjail-1.5.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7a7c3de621d29021e4a1c230731d2559",
"sha256": "b6e8e5761480822f7e6a0b11340bf6b1964f701c922287c89dd582417b07140e"
},
"downloads": -1,
"filename": "ploy_ezjail-1.5.1.tar.gz",
"has_sig": false,
"md5_digest": "7a7c3de621d29021e4a1c230731d2559",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16026,
"upload_time": "2018-02-03T11:14:38",
"url": "https://files.pythonhosted.org/packages/ca/66/1883ff09def8cadae125ff73610770f4e9487e228565359d04317155abf5/ploy_ezjail-1.5.1.tar.gz"
}
]
}