{ "info": { "author": "Tomer Filiba", "author_email": "tomerfiliba@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Software Development :: Build Tools", "Topic :: System :: Systems Administration" ], "description": ".. image:: https://readthedocs.org/projects/plumbum/badge/\n :target: https://plumbum.readthedocs.io/en/latest/\n :alt: Documentation Status\n.. image:: https://github.com/tomerfiliba/plumbum/workflows/CI/badge.svg\n :target: https://github.com/tomerfiliba/plumbum/actions\n :alt: Build Status\n.. image:: https://coveralls.io/repos/tomerfiliba/plumbum/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/tomerfiliba/plumbum?branch=master\n :alt: Coverage Status\n.. image:: https://img.shields.io/pypi/v/plumbum.svg\n :target: https://pypi.python.org/pypi/plumbum/\n :alt: PyPI Status\n.. image:: https://img.shields.io/pypi/pyversions/plumbum.svg\n :target: https://pypi.python.org/pypi/plumbum/\n :alt: PyPI Versions\n.. image:: https://img.shields.io/conda/vn/conda-forge/plumbum.svg\n :target: https://github.com/conda-forge/plumbum-feedstock\n :alt: Conda-Forge Badge\n.. image:: https://img.shields.io/pypi/l/plumbum.svg\n :target: https://pypi.python.org/pypi/plumbum/\n :alt: PyPI License\n.. image:: https://badges.gitter.im/plumbumpy/Lobby.svg\n :alt: Join the chat at https://gitter.im/plumbumpy/Lobby\n :target: https://gitter.im/plumbumpy/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :alt: Code styled with Black\n :target: https://github.com/psf/black\n\n\nPlumbum: Shell Combinators\n==========================\n\nEver wished the compactness of shell scripts be put into a **real** programming language?\nSay hello to *Plumbum Shell Combinators*. Plumbum (Latin for *lead*, which was used to create\npipes back in the day) is a small yet feature-rich library for shell script-like programs in Python.\nThe motto of the library is **\"Never write shell scripts again\"**, and thus it attempts to mimic\nthe **shell syntax** (\"shell combinators\") where it makes sense, while keeping it all **Pythonic\nand cross-platform**.\n\nApart from shell-like syntax and handy shortcuts, the library provides local and remote command\nexecution (over SSH), local and remote file-system paths, easy working-directory and environment\nmanipulation, and a programmatic Command-Line Interface (CLI) application toolkit.\nNow let's see some code!\n\n*This is only a teaser; the full documentation can be found at*\n`Read the Docs `_\n\nCheat Sheet\n-----------\n\nBasics\n******\n\n.. code-block:: python\n\n >>> from plumbum import local\n >>> local.cmd.ls\n LocalCommand(/bin/ls)\n >>> local.cmd.ls()\n 'build.py\\nCHANGELOG.rst\\nconda.recipe\\nCONTRIBUTING.rst\\ndocs\\nexamples\\nexperiments\\nLICENSE\\nMANIFEST.in\\nPipfile\\nplumbum\\nplumbum.egg-info\\npytest.ini\\nREADME.rst\\nsetup.cfg\\nsetup.py\\ntests\\ntranslations.py\\n'\n >>> notepad = local[\"c:\\\\windows\\\\notepad.exe\"]\n >>> notepad() # Notepad window pops up\n '' # Notepad window is closed by user, command returns\n\nIn the example above, you can use ``local[\"ls\"]`` if you have an unusually named executable or a full path to an executable. The ``local`` object represents your local machine. As you'll see, Plumbum also provides remote machines that use the same API!\nYou can also use ``from plumbum.cmd import ls`` as well for accessing programs in the ``PATH``.\n\nPiping\n******\n\n.. code-block:: python\n\n >>> from plumbum.cmd import ls, grep, wc\n >>> chain = ls[\"-a\"] | grep[\"-v\", r\"\\.py\"] | wc[\"-l\"]\n >>> print(chain)\n /bin/ls -a | /bin/grep -v '\\.py' | /usr/bin/wc -l\n >>> chain()\n '27\\n'\n\nRedirection\n***********\n\n.. code-block:: python\n\n >>> from plumbum.cmd import cat, head\n >>> ((cat < \"setup.py\") | head[\"-n\", 4])()\n '#!/usr/bin/env python\\nimport os\\n\\ntry:\\n'\n >>> (ls[\"-a\"] > \"file.list\")()\n ''\n >>> (cat[\"file.list\"] | wc[\"-l\"])()\n '31\\n'\n\nWorking-directory manipulation\n******************************\n\n.. code-block:: python\n\n >>> local.cwd\n \n >>> with local.cwd(local.cwd / \"docs\"):\n ... chain()\n ...\n '22\\n'\n\nForeground and background execution\n***********************************\n\n.. code-block:: python\n\n >>> from plumbum import FG, BG\n >>> (ls[\"-a\"] | grep[r\"\\.py\"]) & FG # The output is printed to stdout directly\n build.py\n setup.py\n translations.py\n >>> (ls[\"-a\"] | grep[r\"\\.py\"]) & BG # The process runs \"in the background\"\n \n\nCommand nesting\n***************\n\n.. code-block:: python\n\n >>> from plumbum.cmd import sudo, ifconfig\n >>> print(sudo[ifconfig[\"-a\"]])\n /usr/bin/sudo /sbin/ifconfig -a\n >>> (sudo[ifconfig[\"-a\"]] | grep[\"-i\", \"loop\"]) & FG\n lo Link encap:Local Loopback\n UP LOOPBACK RUNNING MTU:16436 Metric:1\n\nRemote commands (over SSH)\n**************************\n\nSupports `openSSH `_-compatible clients,\n`PuTTY `_ (on Windows)\nand `Paramiko `_ (a pure-Python implementation of SSH2)\n\n.. code-block:: python\n\n >>> from plumbum import SshMachine\n >>> remote = SshMachine(\"somehost\", user = \"john\", keyfile = \"/path/to/idrsa\")\n >>> r_ls = remote[\"ls\"]\n >>> with remote.cwd(\"/lib\"):\n ... (r_ls | grep[\"0.so.0\"])()\n ...\n 'libusb-1.0.so.0\\nlibusb-1.0.so.0.0.0\\n'\n\nCLI applications\n****************\n\n.. code-block:: python\n\n import logging\n from plumbum import cli\n\n class MyCompiler(cli.Application):\n verbose = cli.Flag([\"-v\", \"--verbose\"], help = \"Enable verbose mode\")\n include_dirs = cli.SwitchAttr(\"-I\", list = True, help = \"Specify include directories\")\n\n @cli.switch(\"--loglevel\", int)\n def set_log_level(self, level):\n \"\"\"Sets the log-level of the logger\"\"\"\n logging.root.setLevel(level)\n\n def main(self, *srcfiles):\n print(\"Verbose:\", self.verbose)\n print(\"Include dirs:\", self.include_dirs)\n print(\"Compiling:\", srcfiles)\n\n if __name__ == \"__main__\":\n MyCompiler.run()\n\nSample output\n+++++++++++++\n\n::\n\n $ python simple_cli.py -v -I foo/bar -Ispam/eggs x.cpp y.cpp z.cpp\n Verbose: True\n Include dirs: ['foo/bar', 'spam/eggs']\n Compiling: ('x.cpp', 'y.cpp', 'z.cpp')\n\nColors and Styles\n-----------------\n\n.. code-block:: python\n\n from plumbum import colors\n with colors.red:\n print(\"This library provides safe, flexible color access.\")\n print(colors.bold | \"(and styles in general)\", \"are easy!\")\n print(\"The simple 16 colors or\",\n colors.orchid & colors.underline | '256 named colors,',\n colors.rgb(18, 146, 64) | \"or full rgb colors\",\n 'can be used.')\n print(\"Unsafe \" + colors.bg.dark_khaki + \"color access\" + colors.bg.reset + \" is available too.\")\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://plumbum.readthedocs.io", "keywords": "path,,local,,remote,,ssh,,shell,,pipe,,popen,,process,,execution,,color,,cli", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "plumbum", "package_url": "https://pypi.org/project/plumbum/", "platform": "POSIX", "project_url": "https://pypi.org/project/plumbum/", "project_urls": { "Homepage": "https://plumbum.readthedocs.io" }, "release_url": "https://pypi.org/project/plumbum/1.7.2/", "requires_dist": [ "pywin32 ; platform_system == \"Windows\" and platform_python_implementation != \"PyPy\"", "paramiko ; extra == 'dev'", "psutil ; extra == 'dev'", "pytest ; extra == 'dev'", "pytest-cov ; extra == 'dev'", "pytest-mock ; extra == 'dev'", "pytest-timeout ; extra == 'dev'", "Sphinx (>=3.0.0) ; extra == 'docs'", "sphinx-rtd-theme (>=0.5.0) ; extra == 'docs'", "paramiko ; extra == 'ssh'" ], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", "summary": "Plumbum: shell combinators library", "version": "1.7.2", "yanked": false, "yanked_reason": null }, "last_serial": 12392747, "releases": { "0.1.0": [], "0.9.0": [ { "comment_text": "", "digests": { "md5": "3d26aaca527b3bb1a01e25f63a442d8a", "sha256": "5d049c44dcfa0aedd6077f4512eb8216722ae791bf92623e52e07bf82a76d691" }, "downloads": -1, "filename": "plumbum-0.9.0.tar.gz", "has_sig": false, "md5_digest": "3d26aaca527b3bb1a01e25f63a442d8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28193, "upload_time": "2012-05-11T17:40:02", "upload_time_iso_8601": "2012-05-11T17:40:02.631508Z", "url": "https://files.pythonhosted.org/packages/d4/46/cb4744071038a0be2b3b00b0ff91a0ae1956340eb5203518b9beb0ccfa08/plumbum-0.9.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab347c45f4295b250e49c1f4b146d016", "sha256": "469b294c5806c40c49ba94e3ed2adede90d712f3916ce085bad90a0ed41711be" }, "downloads": -1, "filename": "plumbum-0.9.0.win32.exe", "has_sig": false, "md5_digest": "ab347c45f4295b250e49c1f4b146d016", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 230313, "upload_time": "2012-05-11T17:40:07", "upload_time_iso_8601": "2012-05-11T17:40:07.868707Z", "url": "https://files.pythonhosted.org/packages/d3/77/d3aeb92e62024f9ddb27d1f0ef9e03bcb5e0be7e4e9a74dd1816edaf47d1/plumbum-0.9.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46e1cc107255ca4d5d80f90f2d218c0e", "sha256": "efb6612b3d62e33a6672a3f198df4b8b202448414ed806c121c71c35c237fe02" }, "downloads": -1, "filename": "plumbum-0.9.0.zip", "has_sig": false, "md5_digest": "46e1cc107255ca4d5d80f90f2d218c0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35785, "upload_time": "2012-05-11T17:40:01", "upload_time_iso_8601": "2012-05-11T17:40:01.002277Z", "url": "https://files.pythonhosted.org/packages/77/ae/c1e49dcdf6ec15249e82ca2e9d21d83c119cae7c6e27e026cbcfef38007d/plumbum-0.9.0.zip", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "162a03ef6483d2ab5be0ccb58093bdea", "sha256": "5a9b423b097088968efe9a09fd7a6442c3207d96e048f8f10395f7d415426712" }, "downloads": -1, "filename": "plumbum-1.0.0.tar.gz", "has_sig": false, "md5_digest": "162a03ef6483d2ab5be0ccb58093bdea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32517, "upload_time": "2012-10-06T17:28:54", "upload_time_iso_8601": "2012-10-06T17:28:54.130221Z", "url": "https://files.pythonhosted.org/packages/24/39/d658eedcbec309b8cf909894cd6e25917575f5c003f54ec60b668f217f2e/plumbum-1.0.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d775e50d42c9b162d399be8dba7afa3e", "sha256": "535dd938260ea883c473caf7b53d6d91b5eecfa31ffbfca54b43e8be8e82ebf3" }, "downloads": -1, "filename": "plumbum-1.0.0.win32.exe", "has_sig": false, "md5_digest": "d775e50d42c9b162d399be8dba7afa3e", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 236385, "upload_time": "2012-10-06T17:29:10", "upload_time_iso_8601": "2012-10-06T17:29:10.995633Z", "url": "https://files.pythonhosted.org/packages/51/40/ce03317fc661b3c20ead4dc64f728a690d28fb8cf731f6de3d311ccf2492/plumbum-1.0.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a1a57a8acb649f8eeead9673256f3b9", "sha256": "eb41120c3494181cf5aa5c2e23c71808ee5f6bc7ec70beffdd12d688839bc2dd" }, "downloads": -1, "filename": "plumbum-1.0.0.zip", "has_sig": false, "md5_digest": "7a1a57a8acb649f8eeead9673256f3b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41580, "upload_time": "2012-10-06T17:28:51", "upload_time_iso_8601": "2012-10-06T17:28:51.936681Z", "url": "https://files.pythonhosted.org/packages/cf/72/89d68191d4b1b11163b26c0f53554b631b34a3d0679898ae194e663e995a/plumbum-1.0.0.zip", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "03bd0be53ff295624cc08d3400d4f461", "sha256": "6c68be17b62b27203bc034e6fd9aef0c475c17c61381a712f6465395d04cfc00" }, "downloads": -1, "filename": "plumbum-1.0.1.tar.gz", "has_sig": false, "md5_digest": "03bd0be53ff295624cc08d3400d4f461", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32921, "upload_time": "2012-10-23T14:13:37", "upload_time_iso_8601": "2012-10-23T14:13:37.813584Z", "url": "https://files.pythonhosted.org/packages/33/96/4539f471f439e9918f3f514b16bb1fede5243dea3b93f2e8d6fa687651f0/plumbum-1.0.1.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8d6eb8c43bdf8ab5cd8d91a93286da0", "sha256": "23e6370cc796b78e7933a4b234e470bd0912a4e18769b7ca7eb238e5d32eb8ec" }, "downloads": -1, "filename": "plumbum-1.0.1.win32.exe", "has_sig": false, "md5_digest": "e8d6eb8c43bdf8ab5cd8d91a93286da0", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 236706, "upload_time": "2012-10-23T14:13:43", "upload_time_iso_8601": "2012-10-23T14:13:43.476804Z", "url": "https://files.pythonhosted.org/packages/6b/16/6873ab944e8e1063f91e715c344dc61031ecf544fcc90a1604c50cfa59fc/plumbum-1.0.1.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2229c8602781e2e978e1980bae6d09e4", "sha256": "4811fa19236de8655e845887fcbdcf381970c600beb39457385b1f2843b527a4" }, "downloads": -1, "filename": "plumbum-1.0.1.zip", "has_sig": false, "md5_digest": "2229c8602781e2e978e1980bae6d09e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42110, "upload_time": "2012-10-23T14:13:35", "upload_time_iso_8601": "2012-10-23T14:13:35.369298Z", "url": "https://files.pythonhosted.org/packages/86/3e/16b23d7dd3242882600283fdc2b6274faf9940d9e2a285a11210784f4aea/plumbum-1.0.1.zip", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "6b89b393fede7f623f4065b25f6e0c28", "sha256": "7929abf3d381fdfbbe09c56cc0b94b615e4e89dc4c73b5d203520dbf3a6d4ddb" }, "downloads": -1, "filename": "plumbum-1.1.0.tar.gz", "has_sig": false, "md5_digest": "6b89b393fede7f623f4065b25f6e0c28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37515, "upload_time": "2012-12-14T18:13:46", "upload_time_iso_8601": "2012-12-14T18:13:46.377424Z", "url": "https://files.pythonhosted.org/packages/a2/f9/b14b71af8344a6d17a44e3228bf61509ccf7675451aa79aa9ad060ebc8df/plumbum-1.1.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f838038d6c6c1a3542a6b1280e04cb83", "sha256": "202015591c3d4ac0a931b397fe4059a9c4760bcdd28bd9b5d9eef060030ad7fd" }, "downloads": -1, "filename": "plumbum-1.1.0.win32.exe", "has_sig": false, "md5_digest": "f838038d6c6c1a3542a6b1280e04cb83", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 242298, "upload_time": "2012-12-14T18:13:52", "upload_time_iso_8601": "2012-12-14T18:13:52.131523Z", "url": "https://files.pythonhosted.org/packages/58/55/b31cd02d45c11fdb82bd31b803b893096dbef3e6cd313f6680535cdc35e7/plumbum-1.1.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7fce72e3a66dcaed781adf979ec9d73e", "sha256": "0e1894bcda8a36cdb463585684f44f0435a2d26899a8945cf85001082692beeb" }, "downloads": -1, "filename": "plumbum-1.1.0.zip", "has_sig": false, "md5_digest": "7fce72e3a66dcaed781adf979ec9d73e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47706, "upload_time": "2012-12-14T18:13:44", "upload_time_iso_8601": "2012-12-14T18:13:44.135373Z", "url": "https://files.pythonhosted.org/packages/82/23/f8df6cca4fb7e03349404a838a57607c31e419922a6c830f7f12f753461d/plumbum-1.1.0.zip", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "18b7f888dfaf62a48df937abffe07897", "sha256": "a90e2d6260bb946b41bda134f2d5c635ac206f7b2b919347b05acfaedb77ff3f" }, "downloads": -1, "filename": "plumbum-1.2.0.tar.gz", "has_sig": false, "md5_digest": "18b7f888dfaf62a48df937abffe07897", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39591, "upload_time": "2013-06-06T19:50:49", "upload_time_iso_8601": "2013-06-06T19:50:49.774228Z", "url": "https://files.pythonhosted.org/packages/11/72/6f91c852481824e910f06e84564f4f9981189373d4157c637be5da971f49/plumbum-1.2.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7957b82f8545c2e49e54b4a49211696", "sha256": "6b0203916fb8b9fc93e3c6922b21f4e2523f2ba8385f5e1748069f5796decc66" }, "downloads": -1, "filename": "plumbum-1.2.0.win32.exe", "has_sig": false, "md5_digest": "b7957b82f8545c2e49e54b4a49211696", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 243783, "upload_time": "2013-06-06T19:50:55", "upload_time_iso_8601": "2013-06-06T19:50:55.042922Z", "url": "https://files.pythonhosted.org/packages/48/0e/e00c89a295842a53b399cc556c580a387b9258f374a96cf322fef42c443b/plumbum-1.2.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f367f4f0a21135493979720e1940abd", "sha256": "084ed1eb5f234bb94ed0a623f88e05d473fc62101c9b54f49d026747ea08cce3" }, "downloads": -1, "filename": "plumbum-1.2.0.zip", "has_sig": false, "md5_digest": "8f367f4f0a21135493979720e1940abd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49203, "upload_time": "2013-06-06T19:50:46", "upload_time_iso_8601": "2013-06-06T19:50:46.422982Z", "url": "https://files.pythonhosted.org/packages/32/e7/27ecf0b641c9106748dd83bb05ece956946125e25ce34192c99668a042dd/plumbum-1.2.0.zip", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "a8e629ab7e3c9e85546d681328e5f21d", "sha256": "452739e63c0c4db9abf8d4787265e71c22d4aa57cab5a882099633d28c1034a1" }, "downloads": -1, "filename": "plumbum-1.3.0.tar.gz", "has_sig": false, "md5_digest": "a8e629ab7e3c9e85546d681328e5f21d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47975, "upload_time": "2013-08-25T09:19:51", "upload_time_iso_8601": "2013-08-25T09:19:51.336818Z", "url": "https://files.pythonhosted.org/packages/24/33/053d653e689a2669bfb86db666674a38dcf253913de7e6865297ecf4a7d0/plumbum-1.3.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "790de0d4b74dd621bc70235b3a20c223", "sha256": "ac7a241a4218f90f2ddd668e8a81d4be960a1751682e418e406dedf1369256d9" }, "downloads": -1, "filename": "plumbum-1.3.0.win32.exe", "has_sig": false, "md5_digest": "790de0d4b74dd621bc70235b3a20c223", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 123914, "upload_time": "2013-08-25T09:19:57", "upload_time_iso_8601": "2013-08-25T09:19:57.063571Z", "url": "https://files.pythonhosted.org/packages/8a/7f/b525a0a217fb57e64a7c9649e4eb3709c054018050c54aefbca9904cf1c4/plumbum-1.3.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9661dda609eda2c96ba339c902b89b4", "sha256": "e6ef3f570fe88bb868cb9248f25a9d9565dd6cbbb59fbe577997698858bd2cdc" }, "downloads": -1, "filename": "plumbum-1.3.0.zip", "has_sig": false, "md5_digest": "b9661dda609eda2c96ba339c902b89b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64162, "upload_time": "2013-08-25T09:19:47", "upload_time_iso_8601": "2013-08-25T09:19:47.083864Z", "url": "https://files.pythonhosted.org/packages/e0/e4/56ef83d5b6988ec3f46b592cfed040d3d5c6017411dafd00abd4e313eba7/plumbum-1.3.0.zip", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "16d31529f150506c713f70053f383da6", "sha256": "d3f71815e37099b23306bc5c5008ea2800cdec5b0495dc4336c60cbdcf9b22ee" }, "downloads": -1, "filename": "plumbum-1.4.0.tar.gz", "has_sig": false, "md5_digest": "16d31529f150506c713f70053f383da6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50779, "upload_time": "2013-11-09T20:17:07", "upload_time_iso_8601": "2013-11-09T20:17:07.388389Z", "url": "https://files.pythonhosted.org/packages/61/f5/03c6e5a3306444133d2984c3541f129255ed71f6994fb6e5f65dd5d527a4/plumbum-1.4.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44fdaed40f178af97910e2f6d80e54ff", "sha256": "463f5672c32309efce2ee2a95619347ae258c1b28782daacf0bcb363e421cc34" }, "downloads": -1, "filename": "plumbum-1.4.0.win32.exe", "has_sig": false, "md5_digest": "44fdaed40f178af97910e2f6d80e54ff", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 261225, "upload_time": "2013-11-09T20:17:13", "upload_time_iso_8601": "2013-11-09T20:17:13.511565Z", "url": "https://files.pythonhosted.org/packages/7f/14/e1735f8b18ed9f8b316818964ce5c6a1ba7aaaf858125fa475ce87eb0aa9/plumbum-1.4.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c00e89aafe6e2c7646bbdc77a7f45ac9", "sha256": "371208157a9ed40c36ec7228a06c334c4c2603b3de1cfb511fd695dd1a03210a" }, "downloads": -1, "filename": "plumbum-1.4.0.zip", "has_sig": false, "md5_digest": "c00e89aafe6e2c7646bbdc77a7f45ac9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66822, "upload_time": "2013-11-09T20:17:02", "upload_time_iso_8601": "2013-11-09T20:17:02.535239Z", "url": "https://files.pythonhosted.org/packages/91/af/dc53132f208a9c934807dc0abc05dd2924d2aeaa3f23e9ba1a7b8f2f9247/plumbum-1.4.0.zip", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "1c2f8ec8c6c04bdc38a19f7c52a28445", "sha256": "58a06152fee7e8f0960237598014f03f0a421da7cba03cb7b3ea97ea6537a172" }, "downloads": -1, "filename": "plumbum-1.4.1.tar.gz", "has_sig": false, "md5_digest": "1c2f8ec8c6c04bdc38a19f7c52a28445", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51279, "upload_time": "2014-02-27T22:22:36", "upload_time_iso_8601": "2014-02-27T22:22:36.839876Z", "url": "https://files.pythonhosted.org/packages/70/83/eb90ebcfb94287e8f37a46f83ef5a13a09478d460afb579c85b5205aada9/plumbum-1.4.1.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecfa76773aa14d50fb9f326e0257e146", "sha256": "df073020a08e60708c7e6ded863825cbf7f3062952b1fafdf68566023d5dbc93" }, "downloads": -1, "filename": "plumbum-1.4.1.win32.exe", "has_sig": false, "md5_digest": "ecfa76773aa14d50fb9f326e0257e146", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 261841, "upload_time": "2014-02-27T22:22:41", "upload_time_iso_8601": "2014-02-27T22:22:41.711377Z", "url": "https://files.pythonhosted.org/packages/d9/48/baa3e8ac17b5931846b75d0c125855fb3f31737893d0990529f232dafbd0/plumbum-1.4.1.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c23a44537fa2a140b1650e397dfcaaf4", "sha256": "010ea9df108c54051441155b0d29dd0e110b83d5de5160bd9a85b289d1e12a57" }, "downloads": -1, "filename": "plumbum-1.4.1.zip", "has_sig": false, "md5_digest": "c23a44537fa2a140b1650e397dfcaaf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67434, "upload_time": "2014-02-27T22:22:32", "upload_time_iso_8601": "2014-02-27T22:22:32.966939Z", "url": "https://files.pythonhosted.org/packages/32/15/a760903c70ddacc70b14b32ac87942501f0381a5df63676340b58f691eba/plumbum-1.4.1.zip", "yanked": false, "yanked_reason": null } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "38b526af9012a5282ae91dfe372cefd3", "sha256": "eb931131cbfbf158cb42e58cbcfee085979b9f91479e3948b6351fadd68484eb" }, "downloads": -1, "filename": "plumbum-1.4.2.tar.gz", "has_sig": false, "md5_digest": "38b526af9012a5282ae91dfe372cefd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52336, "upload_time": "2014-05-10T20:29:24", "upload_time_iso_8601": "2014-05-10T20:29:24.031950Z", "url": "https://files.pythonhosted.org/packages/04/5c/e6c1abffc97a1dfe35477684aec163ef157b0529509ec66df9b6e851ff5b/plumbum-1.4.2.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0aaa4c31bd5aefb986ad961e3fb1e0a3", "sha256": "e59fbfd2e09e059e8663d081d527c98812b935d25959fc09a3dd1f5e80bdc9b1" }, "downloads": -1, "filename": "plumbum-1.4.2.win32.exe", "has_sig": false, "md5_digest": "0aaa4c31bd5aefb986ad961e3fb1e0a3", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 263018, "upload_time": "2014-05-10T20:29:33", "upload_time_iso_8601": "2014-05-10T20:29:33.543932Z", "url": "https://files.pythonhosted.org/packages/1c/60/333b64e96df0b279bcbe31a533d07aeaa1d10503ce590c4b2e98d39dab01/plumbum-1.4.2.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9c50814395590c4efb633d074dcff7c", "sha256": "f7fde50d7946f07ead129c8e4ae4a073b6e32930770b2c8fe5fa5212fca2378b" }, "downloads": -1, "filename": "plumbum-1.4.2.zip", "has_sig": false, "md5_digest": "f9c50814395590c4efb633d074dcff7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68641, "upload_time": "2014-05-10T20:29:19", "upload_time_iso_8601": "2014-05-10T20:29:19.286673Z", "url": "https://files.pythonhosted.org/packages/0b/82/33082cf5ae643218a0dd1d46855da2b0ed1fc37a33ef607ec34b93435216/plumbum-1.4.2.zip", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "88d2537fb6310920e000f87f6608b07f", "sha256": "b759f9e3b6771dff3332f01bc0683d1a56218f44d97942dabd906a0cd1cfb756" }, "downloads": -1, "filename": "plumbum-1.5.0.tar.gz", "has_sig": false, "md5_digest": "88d2537fb6310920e000f87f6608b07f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57390, "upload_time": "2015-07-17T07:24:14", "upload_time_iso_8601": "2015-07-17T07:24:14.207855Z", "url": "https://files.pythonhosted.org/packages/ca/c1/b2c348cb521418c25c0d012367ab5a33efa5b01bec3f582ceb0b8e87acfc/plumbum-1.5.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7faa9289ce93aba4c97af4f379de70ef", "sha256": "a3bc455f778e93397adeffc1f31c413f6591334ab9bfde0127ea8d4674ea490c" }, "downloads": -1, "filename": "plumbum-1.5.0.win32.exe", "has_sig": false, "md5_digest": "7faa9289ce93aba4c97af4f379de70ef", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 268346, "upload_time": "2015-07-17T07:24:22", "upload_time_iso_8601": "2015-07-17T07:24:22.046106Z", "url": "https://files.pythonhosted.org/packages/3a/fd/80d3a030c4fca18de2ad3a9da87a268d487480ede24f314d38036592c008/plumbum-1.5.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "685dbf47344f2523b582782a4b87fcbf", "sha256": "7a47d0be0bc86e21d2330a4ae783533ad669640a4c961212b5f3f76240ec9e19" }, "downloads": -1, "filename": "plumbum-1.5.0.zip", "has_sig": false, "md5_digest": "685dbf47344f2523b582782a4b87fcbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73898, "upload_time": "2015-07-17T07:24:09", "upload_time_iso_8601": "2015-07-17T07:24:09.270990Z", "url": "https://files.pythonhosted.org/packages/39/02/e8b5836cde195e9bd297fc65cdbc8f5c784275472b1d68bedc9188100ed4/plumbum-1.5.0.zip", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "eccc71c9f8a8056e41fc24e0d34daa57", "sha256": "74c931a79d1c1851ee7a2d8b7f594c810930e46a6bdea7961e177d3670ed350e" }, "downloads": -1, "filename": "plumbum-1.6.0.tar.gz", "has_sig": false, "md5_digest": "eccc71c9f8a8056e41fc24e0d34daa57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77092, "upload_time": "2015-10-16T16:55:13", "upload_time_iso_8601": "2015-10-16T16:55:13.139802Z", "url": "https://files.pythonhosted.org/packages/94/b9/cfdb397875adc64c486fe9c0ab33fbf2c4b81b2075b677b3919b4d5c18ce/plumbum-1.6.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "020d53ebe1649b2a5cc14bacc5cdce5b", "sha256": "3af133186f5fe9c322de326554374a035ca03c2b976689696a714bb154596a17" }, "downloads": -1, "filename": "plumbum-1.6.0.win32.exe", "has_sig": false, "md5_digest": "020d53ebe1649b2a5cc14bacc5cdce5b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 292190, "upload_time": "2015-10-16T16:55:20", "upload_time_iso_8601": "2015-10-16T16:55:20.393678Z", "url": "https://files.pythonhosted.org/packages/33/8a/ce85dbcc541070ff4f7c46af54d0fe8198827137a63d3ecfd1c3e9fa361c/plumbum-1.6.0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f7fdbecc897ecbd66c37f8054c96feb", "sha256": "08abfbeb230720aa5b1ecec7c775a84447e7d6d8db37318159bba4ad0cf1dca5" }, "downloads": -1, "filename": "plumbum-1.6.0.zip", "has_sig": false, "md5_digest": "9f7fdbecc897ecbd66c37f8054c96feb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97741, "upload_time": "2015-10-16T16:55:03", "upload_time_iso_8601": "2015-10-16T16:55:03.552418Z", "url": "https://files.pythonhosted.org/packages/76/87/dde312771eb00813f3157246f0b782f79f24ae9232199d3f755acc9da4f1/plumbum-1.6.0.zip", "yanked": false, "yanked_reason": null } ], "1.6.1.post0": [ { "comment_text": "", "digests": { "md5": "d31b753ef14f433c21a48e4227a59ac3", "sha256": "87f1d54bbecb907af32151dbf0efffbb1789862f0aa6e38a79c93411dccde27d" }, "downloads": -1, "filename": "plumbum-1.6.1.post0.tar.gz", "has_sig": false, "md5_digest": "d31b753ef14f433c21a48e4227a59ac3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79217, "upload_time": "2015-12-22T16:22:43", "upload_time_iso_8601": "2015-12-22T16:22:43.633661Z", "url": "https://files.pythonhosted.org/packages/c4/60/06a742495d91d39468174bfe69d85d6f7a47188a7c1d408dfb332bb2179c/plumbum-1.6.1.post0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99814ed93c40dbab5c597100b2f8a641", "sha256": "2b28d35771cbce0e5255d7588d4f8483e7855ad97c2eea6baec9a8e39b142670" }, "downloads": -1, "filename": "plumbum-1.6.1.post0.win32.exe", "has_sig": false, "md5_digest": "99814ed93c40dbab5c597100b2f8a641", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 228125, "upload_time": "2015-12-22T16:21:50", "upload_time_iso_8601": "2015-12-22T16:21:50.262762Z", "url": "https://files.pythonhosted.org/packages/df/69/d93ba617710e9b32f5526886f7e1c623177e5d2bda457a415f8cc548d598/plumbum-1.6.1.post0.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73151459b957e6bc5ecd564f97062677", "sha256": "51c7cd67fe2b64dcd680bf1d2e81a866549b8b90d5ec2088371e112d248d4264" }, "downloads": -1, "filename": "plumbum-1.6.1.post0.zip", "has_sig": false, "md5_digest": "73151459b957e6bc5ecd564f97062677", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100795, "upload_time": "2015-12-22T16:19:07", "upload_time_iso_8601": "2015-12-22T16:19:07.493362Z", "url": "https://files.pythonhosted.org/packages/0b/2f/1864eb19b89ad6f6960e652667b577555a7c5cba720dad15ed6397a9514c/plumbum-1.6.1.post0.zip", "yanked": false, "yanked_reason": null } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "fb124f7b70d00686831d8d0f74829e65", "sha256": "75eff3a55e056d8fc06f7b7ceb603ce4c26650cd6a2196bcdb0b80fee59471a8" }, "downloads": -1, "filename": "plumbum-1.6.2.tar.gz", "has_sig": false, "md5_digest": "fb124f7b70d00686831d8d0f74829e65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79492, "upload_time": "2016-06-25T14:06:59", "upload_time_iso_8601": "2016-06-25T14:06:59.366851Z", "url": "https://files.pythonhosted.org/packages/66/a2/eb943bf1efa2b403debe5b276b024222bd9cecb737f41dd06db6606a43f1/plumbum-1.6.2.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d668392317bb05d2c19af8209fa2f1a", "sha256": "bb8984f1c87577eeafdf3008d996dd728241a0ab1503d9223749be96f799d371" }, "downloads": -1, "filename": "plumbum-1.6.2.win32.exe", "has_sig": false, "md5_digest": "7d668392317bb05d2c19af8209fa2f1a", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 228439, "upload_time": "2016-06-25T14:07:03", "upload_time_iso_8601": "2016-06-25T14:07:03.361108Z", "url": "https://files.pythonhosted.org/packages/b6/7d/d5946ab19341d531086f5a3bbb7bf7b732029ff4c375a8bd7c802b6807e9/plumbum-1.6.2.win32.exe", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72e95f91b4bb9ed7e17e6f37bcfbe31a", "sha256": "8231595204ea780b0af08add1995d4596473ce1fe66b8c0efda194bbca579888" }, "downloads": -1, "filename": "plumbum-1.6.2.zip", "has_sig": false, "md5_digest": "72e95f91b4bb9ed7e17e6f37bcfbe31a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100619, "upload_time": "2016-06-25T14:07:07", "upload_time_iso_8601": "2016-06-25T14:07:07.700253Z", "url": "https://files.pythonhosted.org/packages/39/a6/61fbf55784987cf363bfa7c36b5c158b6deee50d8d2ea412e90e69c8723f/plumbum-1.6.2.zip", "yanked": false, "yanked_reason": null } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "0846487a4a1a85194110938e023b3821", "sha256": "cb467353a070e324afef8666bf488abcabf77a7b221ff87d7a5c62c6beb8c5c4" }, "downloads": -1, "filename": "plumbum-1.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0846487a4a1a85194110938e023b3821", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 99560, "upload_time": "2017-01-01T14:45:53", "upload_time_iso_8601": "2017-01-01T14:45:53.991978Z", "url": "https://files.pythonhosted.org/packages/86/6e/2976af0c43f5d6ba2179e1f024a62a886737b0cf46bfff1cc987d55bbcaf/plumbum-1.6.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0c588ba9271711fae3beb8c0511e8a9", "sha256": "0249e708459f1b05627a7ca8787622c234e4db495a532acbbd1f1f17f28c7320" }, "downloads": -1, "filename": "plumbum-1.6.3.tar.gz", "has_sig": false, "md5_digest": "e0c588ba9271711fae3beb8c0511e8a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82109, "upload_time": "2017-01-01T03:57:42", "upload_time_iso_8601": "2017-01-01T03:57:42.009501Z", "url": "https://files.pythonhosted.org/packages/50/15/f26f60e1bb82aabed7ff86f3fd2976784047f9a291c63ac9019086a69559/plumbum-1.6.3.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67d686878cfa9679ba544066139748ca", "sha256": "33442d3cb09c9a4020379bebb17bff9420dad27ad47240427a1512ff26b52d88" }, "downloads": -1, "filename": "plumbum-1.6.3.win32.exe", "has_sig": false, "md5_digest": "67d686878cfa9679ba544066139748ca", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 163713, "upload_time": "2017-01-01T03:57:44", "upload_time_iso_8601": "2017-01-01T03:57:44.057656Z", "url": "https://files.pythonhosted.org/packages/34/75/3fd25cf00045a92c0db74709149c279eb0ad5913e0c1791f0edde8a1c112/plumbum-1.6.3.win32.exe", "yanked": false, "yanked_reason": null } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "778d9c2148d3740082c0053c15d8a599", "sha256": "a4986346a9aead8d4cf3f3fbd737e6cf3a86c1680a0d1f58bcb9327f2090ed48" }, "downloads": -1, "filename": "plumbum-1.6.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "778d9c2148d3740082c0053c15d8a599", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110308, "upload_time": "2017-11-27T19:16:13", "upload_time_iso_8601": "2017-11-27T19:16:13.369348Z", "url": "https://files.pythonhosted.org/packages/32/83/3f881fee93b8f85bbf04297f1acb0520a9f26b64ba79bf3a5ecb8f63ca1c/plumbum-1.6.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e7ee1f534773024e0368617d624b19f", "sha256": "9147b410ba367129c790a70f6024ccc6470d0e0e36d253f5e014ff23c8fa01f7" }, "downloads": -1, "filename": "plumbum-1.6.4.tar.gz", "has_sig": false, "md5_digest": "6e7ee1f534773024e0368617d624b19f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88041, "upload_time": "2017-11-27T19:04:38", "upload_time_iso_8601": "2017-11-27T19:04:38.817191Z", "url": "https://files.pythonhosted.org/packages/50/82/d47eedbdcb883ab9132fcade8f18cf89ad1d4f9f53a3a0ce6bf9d888d3a0/plumbum-1.6.4.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79cc1ba2fc392f031d154d256322074a", "sha256": "8d5f299b9e43a532f2e3a205c296d8b046032f0e13266fda73efa52d6f121633" }, "downloads": -1, "filename": "plumbum-1.6.4.win32.exe", "has_sig": false, "md5_digest": "79cc1ba2fc392f031d154d256322074a", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 571284, "upload_time": "2017-11-27T19:11:54", "upload_time_iso_8601": "2017-11-27T19:11:54.818344Z", "url": "https://files.pythonhosted.org/packages/47/fc/5a91c7c9a0ce63a0a170c19d12aed3bf1691acc1790cd9060fc1c60ea122/plumbum-1.6.4.win32.exe", "yanked": false, "yanked_reason": null } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "f926c9bbbd2a89fd150aa62d4d1a08cc", "sha256": "875f25a4435ab32c3364b9d9b68123ab24e83330def7d0f9e7c019abbcd9eed2" }, "downloads": -1, "filename": "plumbum-1.6.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f926c9bbbd2a89fd150aa62d4d1a08cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110536, "upload_time": "2017-12-29T15:09:51", "upload_time_iso_8601": "2017-12-29T15:09:51.263927Z", "url": "https://files.pythonhosted.org/packages/b9/a3/33671643f8e88c308eabae9d91f5b295de7c058329317f96b479dfd5a53b/plumbum-1.6.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0aa344e1b9d692b7b938dc9809ace54", "sha256": "d8abb059bb62beb6c99db08d3598167abaeeab53eaf218f91e74bae471a24bee" }, "downloads": -1, "filename": "plumbum-1.6.5.tar.gz", "has_sig": false, "md5_digest": "e0aa344e1b9d692b7b938dc9809ace54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88350, "upload_time": "2017-12-29T15:09:54", "upload_time_iso_8601": "2017-12-29T15:09:54.411070Z", "url": "https://files.pythonhosted.org/packages/c1/38/ecafed57b537bb09cf94b68bcc815f413c321592902f4e78c32473da1ce6/plumbum-1.6.5.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02bc7f3f3bfcbc0e7bf6cb6128b7734b", "sha256": "24ac3371478660358252629e6f0b535818c0afd7ba0c8220602643f4bb720163" }, "downloads": -1, "filename": "plumbum-1.6.5.win32.exe", "has_sig": false, "md5_digest": "02bc7f3f3bfcbc0e7bf6cb6128b7734b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 571649, "upload_time": "2017-12-29T15:09:58", "upload_time_iso_8601": "2017-12-29T15:09:58.096168Z", "url": "https://files.pythonhosted.org/packages/c6/f7/6e156df7b9c64f311497eb29324101d79602710f7d4113bbb597357af552/plumbum-1.6.5.win32.exe", "yanked": false, "yanked_reason": null } ], "1.6.6": [ { "comment_text": "", "digests": { "md5": "8267d697018922c67550145b7360a3aa", "sha256": "4b5af076fef56fe7345b67f7fa4c79185fa64ac5bc14a9de1aa1447b58b6cbd0" }, "downloads": -1, "filename": "plumbum-1.6.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8267d697018922c67550145b7360a3aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 111437, "upload_time": "2018-02-12T15:02:47", "upload_time_iso_8601": "2018-02-12T15:02:47.178603Z", "url": "https://files.pythonhosted.org/packages/b2/05/7720109462d0bd60466e74076a38ca12068771da146bfd18a502726c9da8/plumbum-1.6.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb2a2de7894633b53e5d36b94b74806c", "sha256": "d179b90a9927f91427a28c1bac2864c61342cb43ef39aa7324c7c9a96bcc23eb" }, "downloads": -1, "filename": "plumbum-1.6.6.tar.gz", "has_sig": false, "md5_digest": "cb2a2de7894633b53e5d36b94b74806c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88419, "upload_time": "2018-02-12T15:02:50", "upload_time_iso_8601": "2018-02-12T15:02:50.360632Z", "url": "https://files.pythonhosted.org/packages/6d/ff/773ec3580139c52f24d889fb304dc05b332150743ffdf7fe01255596609b/plumbum-1.6.6.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a49a2a92f8de41c5b73a3990ea617727", "sha256": "e4be6200df23b03926c27fe333356408f5212182675fcbacda06ecbfa83bf863" }, "downloads": -1, "filename": "plumbum-1.6.6.win32.exe", "has_sig": false, "md5_digest": "a49a2a92f8de41c5b73a3990ea617727", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 571697, "upload_time": "2018-02-12T15:02:52", "upload_time_iso_8601": "2018-02-12T15:02:52.247074Z", "url": "https://files.pythonhosted.org/packages/e9/db/e2c94d3486bdab8decef0c149acaea017ad99d8a7b33c87df1c48f6b37b1/plumbum-1.6.6.win32.exe", "yanked": false, "yanked_reason": null } ], "1.6.7": [ { "comment_text": "", "digests": { "md5": "80262359e352bccb3c8e57f67f53c0db", "sha256": "df96a5facf621db4a6d682bdc93afa5ed6b107a8667c73c3f0a0f0fab4217c81" }, "downloads": -1, "filename": "plumbum-1.6.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80262359e352bccb3c8e57f67f53c0db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110171, "upload_time": "2018-08-10T13:06:06", "upload_time_iso_8601": "2018-08-10T13:06:06.582158Z", "url": "https://files.pythonhosted.org/packages/48/48/0c592a65c8ecc6a4c0da41d75097704a283595b6731be1531eee3f4f7778/plumbum-1.6.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da8ab4c4fb725a48af83a2f2fa07f332", "sha256": "d143f079bfb60b11e9bec09a49695ce2e55ce5ca0246877bdb0818ab7c7fc312" }, "downloads": -1, "filename": "plumbum-1.6.7.tar.gz", "has_sig": false, "md5_digest": "da8ab4c4fb725a48af83a2f2fa07f332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90911, "upload_time": "2018-08-10T13:06:08", "upload_time_iso_8601": "2018-08-10T13:06:08.561027Z", "url": "https://files.pythonhosted.org/packages/78/4c/1fb849111fda37d65358be1859e062278b2f94b5269f19838115966e4493/plumbum-1.6.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.8": [ { "comment_text": "", "digests": { "md5": "466ddb775733c5be4d75f7ccd81566c4", "sha256": "600f99e1736f314b52d823aa5d3b73db9a7a6d5b5dc22303410c1a7d6f3e569c" }, "downloads": -1, "filename": "plumbum-1.6.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "466ddb775733c5be4d75f7ccd81566c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 115068, "upload_time": "2019-10-30T21:24:37", "upload_time_iso_8601": "2019-10-30T21:24:37.703467Z", "url": "https://files.pythonhosted.org/packages/a7/1e/2d18651bb48933b6089833df8d1e44182b2899784e26072f94860440ae8c/plumbum-1.6.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12ecd2aae436525e606e8e1114853525", "sha256": "8571f2f9657e00dc22549d9e92db3fdec5674bf509fe60c5c9b4081fd8f6ab92" }, "downloads": -1, "filename": "plumbum-1.6.8.tar.gz", "has_sig": false, "md5_digest": "12ecd2aae436525e606e8e1114853525", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96826, "upload_time": "2019-10-30T21:24:39", "upload_time_iso_8601": "2019-10-30T21:24:39.827261Z", "url": "https://files.pythonhosted.org/packages/dd/fa/dd1cbfe75006c7ffc3c4f89612fd8b6c7391754cb2ea72e8737d4f048e61/plumbum-1.6.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.9": [ { "comment_text": "", "digests": { "md5": "31ed16c6360969f7583f76269db5a965", "sha256": "91418dcc66b58ab9d2e3b04b3d1e0d787dc45923154fb8b4a826bd9316dba0d6" }, "downloads": -1, "filename": "plumbum-1.6.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "31ed16c6360969f7583f76269db5a965", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 115729, "upload_time": "2020-03-23T14:17:08", "upload_time_iso_8601": "2020-03-23T14:17:08.923112Z", "url": "https://files.pythonhosted.org/packages/99/0f/10be0ffe552cf422561adef1d03a303a98b2ba929191d14d5023b0514bfd/plumbum-1.6.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "498c1b47ff2327b7af8027bd04c49a70", "sha256": "16b9e19d96c80f2e9d051ef5f04927b834a6ac0ce5d2768eb8662b5cd53e43df" }, "downloads": -1, "filename": "plumbum-1.6.9.tar.gz", "has_sig": false, "md5_digest": "498c1b47ff2327b7af8027bd04c49a70", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 95695, "upload_time": "2020-03-23T14:17:10", "upload_time_iso_8601": "2020-03-23T14:17:10.363896Z", "url": "https://files.pythonhosted.org/packages/bf/3c/3b78dd1c8f2221a1de78b09e89b92197349342bec3a95117faeaf07a1c7e/plumbum-1.6.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "d63526af9232041e2a5f3dd6d9c7afd9", "sha256": "139bbe08ee065b522a8a07d4f7e9f8eddffd78cc218b65b11cca2b33683e6b57" }, "downloads": -1, "filename": "plumbum-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d63526af9232041e2a5f3dd6d9c7afd9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4,>=2.7", "size": 116882, "upload_time": "2021-02-08T19:49:00", "upload_time_iso_8601": "2021-02-08T19:49:00.569382Z", "url": "https://files.pythonhosted.org/packages/6c/fc/6cdaf59a001c707333869b054daf1e0df02978d261f20f8b082afcf189c3/plumbum-1.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e21a4fc0015b7d18c8ee3634bc0ab20f", "sha256": "317744342c755319907c773cc87c3a30adaa3a41b0d34c0ce02d9d1904922dce" }, "downloads": -1, "filename": "plumbum-1.7.0.tar.gz", "has_sig": false, "md5_digest": "e21a4fc0015b7d18c8ee3634bc0ab20f", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4,>=2.7", "size": 318890, "upload_time": "2021-02-08T19:49:02", "upload_time_iso_8601": "2021-02-08T19:49:02.006556Z", "url": "https://files.pythonhosted.org/packages/ed/ba/431d7f420cd93c4b8ccb15ed8f1c6c76c81965634fd70345af0b19c2b7bc/plumbum-1.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "aee09e26d3bacbe39cf002df7fc12458", "sha256": "e97229fdf218698b4e9e939355f4d20d20bf57f8a02710f81f92442e2b2db038" }, "downloads": -1, "filename": "plumbum-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aee09e26d3bacbe39cf002df7fc12458", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", "size": 117766, "upload_time": "2021-11-23T15:44:03", "upload_time_iso_8601": "2021-11-23T15:44:03.191352Z", "url": "https://files.pythonhosted.org/packages/c9/7d/2c9de21526156425cc733edb7773579c359073bc28dd79e71ee7aa2e56cb/plumbum-1.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bb375f4a0836407454dcc0008423206", "sha256": "3c0ac8c4ee57b2adddc82909d3c738a62ef5f77faf24ec7cb6f0a117e1679740" }, "downloads": -1, "filename": "plumbum-1.7.1.tar.gz", "has_sig": false, "md5_digest": "4bb375f4a0836407454dcc0008423206", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", "size": 323014, "upload_time": "2021-11-23T15:44:04", "upload_time_iso_8601": "2021-11-23T15:44:04.590333Z", "url": "https://files.pythonhosted.org/packages/8d/4f/88ed04c5658922e320296c698146bc9d91628537e1f80f7fa7b3a1c76d1f/plumbum-1.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "c8f3fc8a87fd441be02cf67b81a0cbb9", "sha256": "0bbf431e31da988405de2fb36c3226f09c0c9cdf69c8480f8997f4b94b7370a1" }, "downloads": -1, "filename": "plumbum-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c8f3fc8a87fd441be02cf67b81a0cbb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", "size": 117770, "upload_time": "2021-12-23T19:58:48", "upload_time_iso_8601": "2021-12-23T19:58:48.335588Z", "url": "https://files.pythonhosted.org/packages/f5/7f/4e93e5e1c13261966ea553cb4368599902e4fbf6f7dcad3ec16695a45718/plumbum-1.7.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83916eed4814f34b458635667370fdb1", "sha256": "0d1bf908076bbd0484d16412479cb97d6843069ee19f99e267e11dd980040523" }, "downloads": -1, "filename": "plumbum-1.7.2.tar.gz", "has_sig": false, "md5_digest": "83916eed4814f34b458635667370fdb1", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", "size": 323051, "upload_time": "2021-12-23T19:58:50", "upload_time_iso_8601": "2021-12-23T19:58:50.258621Z", "url": "https://files.pythonhosted.org/packages/c8/d8/aa3973de6151ae322e3f0dd4f2befcece695ed7c09d49536d8174ef80a9c/plumbum-1.7.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c8f3fc8a87fd441be02cf67b81a0cbb9", "sha256": "0bbf431e31da988405de2fb36c3226f09c0c9cdf69c8480f8997f4b94b7370a1" }, "downloads": -1, "filename": "plumbum-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c8f3fc8a87fd441be02cf67b81a0cbb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", "size": 117770, "upload_time": "2021-12-23T19:58:48", "upload_time_iso_8601": "2021-12-23T19:58:48.335588Z", "url": "https://files.pythonhosted.org/packages/f5/7f/4e93e5e1c13261966ea553cb4368599902e4fbf6f7dcad3ec16695a45718/plumbum-1.7.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83916eed4814f34b458635667370fdb1", "sha256": "0d1bf908076bbd0484d16412479cb97d6843069ee19f99e267e11dd980040523" }, "downloads": -1, "filename": "plumbum-1.7.2.tar.gz", "has_sig": false, "md5_digest": "83916eed4814f34b458635667370fdb1", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", "size": 323051, "upload_time": "2021-12-23T19:58:50", "upload_time_iso_8601": "2021-12-23T19:58:50.258621Z", "url": "https://files.pythonhosted.org/packages/c8/d8/aa3973de6151ae322e3f0dd4f2befcece695ed7c09d49536d8174ef80a9c/plumbum-1.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }