{ "info": { "author": "Michael Williamson", "author_email": "mike@zwobble.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet" ], "description": "spur.py: Run commands and manipulate files locally or over SSH using the same interface\n=======================================================================================\n\nTo run echo locally:\n\n.. code-block:: python\n\n import spur\n\n shell = spur.LocalShell()\n result = shell.run([\"echo\", \"-n\", \"hello\"])\n print(result.output) # prints hello\n\nExecuting the same command over SSH uses the same interface -- the only\ndifference is how the shell is created:\n\n.. code-block:: python\n\n import spur\n\n shell = spur.SshShell(hostname=\"localhost\", username=\"bob\", password=\"password1\")\n with shell:\n result = shell.run([\"echo\", \"-n\", \"hello\"])\n print(result.output) # prints hello\n\nInstallation\n------------\n\n``$ pip install spur``\n\nShell constructors\n------------------\n\nLocalShell\n~~~~~~~~~~\n\nTakes no arguments:\n\n.. code-block:: sh\n\n spur.LocalShell()\n\nSshShell\n~~~~~~~~\n\nRequires a hostname. Also requires some combination of a username,\npassword and private key, as necessary to authenticate:\n\n.. code-block:: python\n\n # Use a password\n spur.SshShell(\n hostname=\"localhost\",\n username=\"bob\",\n password=\"password1\"\n )\n # Use a private key\n spur.SshShell(\n hostname=\"localhost\",\n username=\"bob\",\n private_key_file=\"path/to/private.key\"\n )\n # Use a port other than 22\n spur.SshShell(\n hostname=\"localhost\",\n port=50022,\n username=\"bob\",\n password=\"password1\"\n )\n\nOptional arguments:\n\n* ``connect_timeout`` -- a timeout in seconds for establishing an SSH\n connection. Defaults to 60 (one minute).\n\n* ``missing_host_key`` -- by default, an error is raised when a host\n key is missing. One of the following values can be used to change the\n behaviour when a host key is missing:\n\n - ``spur.ssh.MissingHostKey.raise_error`` -- raise an error\n - ``spur.ssh.MissingHostKey.warn`` -- accept the host key and log a\n warning\n - ``spur.ssh.MissingHostKey.accept`` -- accept the host key\n\n* ``shell_type`` -- the type of shell used by the host. Defaults to\n ``spur.ssh.ShellTypes.sh``, which should be appropriate for most Linux\n distributions. If the host uses a different shell, such as simpler shells\n often found on embedded systems, try changing ``shell_type`` to a more\n appropriate value, such as ``spur.ssh.ShellTypes.minimal``. The following\n shell types are currently supported:\n\n - ``spur.ssh.ShellTypes.sh`` -- the Bourne shell. Supports all features.\n\n - ``spur.ssh.ShellTypes.minimal`` -- a minimal shell. Several features\n are unsupported:\n\n - Non-existent commands will not raise ``spur.NoSuchCommandError``.\n\n - The following arguments to ``spawn`` and ``run`` are unsupported unless\n set to their default values:\n ``cwd``, ``update_env``, and ``store_pid``.\n\n* ``look_for_private_keys`` -- by default, Spur will search for discoverable\n private key files in ``~/.ssh/``.\n Set to ``False`` to disable this behaviour.\n\n* ``load_system_host_keys`` -- by default, Spur will attempt to read host keys\n from the user's known hosts file, as used by OpenSSH, and no exception will\n be raised if the file can't be read.\n Set to ``False`` to disable this behaviour.\n\n* ``sock`` -- an open socket or socket-like object to use for communication to\n the target host. For instance:\n\n .. code-block:: python\n\n sock=paramiko.proxy.ProxyCommand(\n \"ssh -q -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null\"\n \"bob@proxy.example.com nc -q0 target.example.com 22\"\n )\n\n Examples of socket-like objects include:\n\n * |paramiko.Channel|_\n * |paramiko.proxy.ProxyCommand|_\n (`unsupported in Python 3 `_ as of writing)\n\n.. |paramiko.Channel| replace:: ``paramiko.Channel``\n.. _paramiko.Channel: http://docs.paramiko.org/en/latest/api/channel.html\n\n.. |paramiko.proxy.ProxyCommand| replace:: ``paramiko.proxy.ProxyCommand``\n.. _paramiko.proxy.ProxyCommand: http://docs.paramiko.org/en/latest/api/proxy.html\n\nShell interface\n---------------\n\nrun(command, cwd, update\\_env, store\\_pid, allow\\_error, stdout, stderr, encoding)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRun a command and wait for it to complete. The command is expected to be\na list of strings. Returns an instance of ``ExecutionResult``.\n\n.. code-block:: python\n\n result = shell.run([\"echo\", \"-n\", \"hello\"])\n print(result.output) # prints hello\n\nNote that arguments are passed without any shell expansion. For\ninstance, ``shell.run([\"echo\", \"$PATH\"])`` will print the literal string\n``$PATH`` rather than the value of the environment variable ``$PATH``.\n\nRaises ``spur.NoSuchCommandError`` if trying to execute a non-existent\ncommand.\n\nRaises ``spur.CouldNotChangeDirectoryError`` if changing the current directory\nto ``cwd`` failed.\n\nOptional arguments:\n\n* ``cwd`` -- change the current directory to this value before\n executing the command.\n* ``update_env`` -- a ``dict`` containing environment variables to be\n set before running the command. If there's an existing environment\n variable with the same name, it will be overwritten. Otherwise, it is\n unchanged.\n* ``store_pid`` -- if set to ``True`` when calling ``spawn``, store the\n process id of the spawned process as the attribute ``pid`` on the\n returned process object. Has no effect when calling ``run``.\n* ``allow_error`` -- ``False`` by default. If ``False``, an exception\n is raised if the return code of the command is anything but 0. If\n ``True``, a result is returned irrespective of return code.\n* ``stdout`` -- if not ``None``, anything the command prints to\n standard output during its execution will also be written to\n ``stdout`` using ``stdout.write``.\n* ``stderr`` -- if not ``None``, anything the command prints to\n standard error during its execution will also be written to\n ``stderr`` using ``stderr.write``.\n* ``encoding`` -- if set, this is used to decode any output.\n By default, any output is treated as raw bytes.\n If set, the raw bytes are decoded before writing to\n the passed ``stdout`` and ``stderr`` arguments (if set)\n and before setting the output attributes on the result.\n\n``shell.run(*args, **kwargs)`` should behave similarly to\n``shell.spawn(*args, **kwargs).wait_for_result()``\n\nspawn(command, cwd, update\\_env, store\\_pid, allow\\_error, stdout, stderr, encoding)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nBehaves the same as ``run`` except that ``spawn`` immediately returns an\nobject representing the running process.\n\nRaises ``spur.NoSuchCommandError`` if trying to execute a non-existent\ncommand.\n\nRaises ``spur.CouldNotChangeDirectoryError`` if changing the current directory\nto ``cwd`` failed.\n\nopen(path, mode=\"r\")\n~~~~~~~~~~~~~~~~~~~~\n\nOpen the file at ``path``. Returns a file-like object.\n\nBy default, files are opened in text mode.\nAppending `\"b\"` to the mode will open the file in binary mode.\n\nFor instance, to copy a binary file over SSH,\nassuming you already have an instance of ``SshShell``:\n\n.. code-block:: python\n\n with ssh_shell.open(\"/path/to/remote\", \"rb\") as remote_file:\n with open(\"/path/to/local\", \"wb\") as local_file:\n shutil.copyfileobj(remote_file, local_file)\n\nProcess interface\n-----------------\n\nReturned by calls to ``shell.spawn``. Has the following attributes:\n\n* ``pid`` -- the process ID of the process. Only available if\n ``store_pid`` was set to ``True`` when calling ``spawn``.\n\nHas the following methods:\n\n* ``is_running()`` -- return ``True`` if the process is still running,\n ``False`` otherwise.\n* ``stdin_write(value)`` -- write ``value`` to the standard input of\n the process.\n* ``wait_for_result()`` -- wait for the process to exit, and then\n return an instance of ``ExecutionResult``. Will raise\n ``RunProcessError`` if the return code is not zero and\n ``shell.spawn`` was not called with ``allow_error=True``.\n* ``send_signal(signal)`` -- sends the process the signal ``signal``.\n Only available if ``store_pid`` was set to ``True`` when calling\n ``spawn``.\n\nClasses\n-------\n\nExecutionResult\n~~~~~~~~~~~~~~~\n\n``ExecutionResult`` has the following properties:\n\n* ``return_code`` -- the return code of the command\n* ``output`` -- a string containing the result of capturing stdout\n* ``stderr_output`` -- a string containing the result of capturing\n stdout\n\nIt also has the following methods:\n\n* ``to_error()`` -- return the corresponding RunProcessError. This is\n useful if you want to conditionally raise RunProcessError, for\n instance:\n\n.. code-block:: python\n\n result = shell.run([\"some-command\"], allow_error=True)\n if result.return_code > 4:\n raise result.to_error()\n\nRunProcessError\n~~~~~~~~~~~~~~~\n\nA subclass of ``RuntimeError`` with the same properties as\n``ExecutionResult``:\n\n* ``return_code`` -- the return code of the command\n* ``output`` -- a string containing the result of capturing stdout\n* ``stderr_output`` -- a string containing the result of capturing\n stdout\n\nNoSuchCommandError\n~~~~~~~~~~~~~~~~~~\n\n``NoSuchCommandError`` has the following properties:\n\n* ``command`` -- the command that could not be found\n\nCouldNotChangeDirectoryError\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``CouldNotChangeDirectoryError`` has the following properties:\n\n* ``directory`` -- the directory that could not be changed to\n\nAPI stability\n-------------\n\nUsing the the terminology from `Semantic\nVersioning `_, if the version of\nspur is X.Y.Z, then X is the major version, Y is the minor version, and\nZ is the patch version.\n\nWhile the major version is 0, incrementing the patch version indicates a\nbackwards compatible change. For instance, if you're using 0.3.1, then\nit should be safe to upgrade to 0.3.2.\n\nIncrementing the minor version indicates a change in the API. This means\nthat any code using previous minor versions of spur may need updating\nbefore it can use the current minor version.\n\nUndocumented features\n~~~~~~~~~~~~~~~~~~~~~\n\nSome features are undocumented, and should be considered experimental.\nUse them at your own risk. They may not behave correctly, and their\nbehaviour and interface may change at any time.\n\nTroubleshooting\n---------------\n\nI get the error \"Connection refused\" when trying to connect to a virtual machine using a forwarded port on ``localhost``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTry using ``\"127.0.0.1\"`` instead of ``\"localhost\"`` as the hostname.\n\nI get the error \"Connection refused\" when trying to execute commands over SSH\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTry connecting to the machine using SSH on the command line with the\nsame settings. For instance, if you're using the code:\n\n.. code-block:: python\n\n shell = spur.SshShell(\n hostname=\"remote\",\n port=2222,\n username=\"bob\",\n private_key_file=\"/home/bob/.ssh/id_rsa\"\n )\n with shell:\n result = shell.run([\"echo\", \"hello\"])\n\nTry running:\n\n.. code-block:: sh\n\n ssh bob@remote -p 2222 -i /home/bob/.ssh/id_rsa\n\nIf the ``ssh`` command succeeds, make sure that the arguments to\n``ssh.SshShell`` and the ``ssh`` command are the same. If any of the\narguments to ``ssh.SshShell`` are dynamically generated, try hard-coding\nthem to make sure they're set to the values you expect.\n\nI can't spawn or run commands over SSH\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you're having trouble spawning or running commands over SSH, try passing\n``shell_type=spur.ssh.ShellTypes.minimal`` as an argument to ``spur.SshShell``.\nFor instance:\n\n.. code-block:: python\n\n import spur\n import spur.ssh\n\n spur.SshShell(\n hostname=\"localhost\",\n username=\"bob\",\n password=\"password1\",\n shell_type=spur.ssh.ShellTypes.minimal,\n )\n\nThis makes minimal assumptions about the features that the host shell supports,\nand is especially well-suited to minimal shells found on embedded systems. If\nthe host shell is more fully-featured but only works with\n``spur.ssh.ShellTypes.minimal``, feel free to submit an issue.\n\nWhy don't shell features such as variables and redirection work?\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nCommands are run directly rather than through a shell.\nIf you want to use any shell features such as variables and redirection,\nthen you'll need to run those commands within an appropriate shell.\nFor instance:\n\n.. code-block:: python\n\n shell.run([\"sh\", \"-c\", \"echo $PATH\"])\n shell.run([\"sh\", \"-c\", \"ls | grep bananas\"])\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/mwilliamson/spur.py", "keywords": "ssh shell subprocess process", "license": "", "maintainer": "", "maintainer_email": "", "name": "spur", "package_url": "https://pypi.org/project/spur/", "platform": "", "project_url": "https://pypi.org/project/spur/", "project_urls": { "Homepage": "http://github.com/mwilliamson/spur.py" }, "release_url": "https://pypi.org/project/spur/0.3.21/", "requires_dist": [ "paramiko (<3,>=1.13.1)" ], "requires_python": "", "summary": "Run commands and manipulate files locally or over SSH using the same interface", "version": "0.3.21" }, "last_serial": 5170710, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "923ecc5972b851f27cfb36ce2a9e6b2f", "sha256": "abbb8ada6fc1f979637425f4f2e2b108dbac24cec28d01f4fa3da29d15ad5083" }, "downloads": -1, "filename": "spur-0.1.0.tar.gz", "has_sig": false, "md5_digest": "923ecc5972b851f27cfb36ce2a9e6b2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2849, "upload_time": "2012-11-26T21:09:25", "url": "https://files.pythonhosted.org/packages/89/32/1c0beaee88b17010dbed0778905c1d82cfe6a0055d6077afbf0641860efd/spur-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "bb205557fae2a0775d2e96e675a9163a", "sha256": "16a1c3397c4ad933626d22766ee1e5a18a3b82dcc8ab248652a3955ea118d732" }, "downloads": -1, "filename": "spur-0.1.1.tar.gz", "has_sig": false, "md5_digest": "bb205557fae2a0775d2e96e675a9163a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3930, "upload_time": "2012-12-03T20:31:32", "url": "https://files.pythonhosted.org/packages/40/50/0129375a872c8a41e42fbc013f067c80fbb593498da94d2214d55dd46f70/spur-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0b5223842de97f58a654d86ac8758eeb", "sha256": "cdf55d70fb5252d2fb428f65ea2a938a05ba5d9dc981147ecf84391b315b97b4" }, "downloads": -1, "filename": "spur-0.1.2.tar.gz", "has_sig": false, "md5_digest": "0b5223842de97f58a654d86ac8758eeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4144, "upload_time": "2012-12-14T14:04:04", "url": "https://files.pythonhosted.org/packages/8c/50/b0f262793a821ea99cd1f2e78d4eafa7ca23b0b909171968f411ef476ee1/spur-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "7f031c061557017233b226f6522836df", "sha256": "046c976d6b38e5e441763ca474240a07d49fdd1bc1c301c187c7fd3a9f369444" }, "downloads": -1, "filename": "spur-0.1.3.tar.gz", "has_sig": false, "md5_digest": "7f031c061557017233b226f6522836df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4203, "upload_time": "2012-12-23T16:06:32", "url": "https://files.pythonhosted.org/packages/4d/b4/d1e3554b22b540e4f28ced8f5321b1a9d943d7f15d504e3bb31d33c535f8/spur-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "ee6073038d9da26a7bd5b5ddc18d474e", "sha256": "a831e1c443b60e3ce279e5eba4d79c39fed143d3eb54e4ebdcabfbf0cb22c1df" }, "downloads": -1, "filename": "spur-0.1.4.tar.gz", "has_sig": false, "md5_digest": "ee6073038d9da26a7bd5b5ddc18d474e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4452, "upload_time": "2012-12-23T18:04:48", "url": "https://files.pythonhosted.org/packages/61/a0/70413a744ba77c9ee5e8e24150fd53ec22fa70cfeae80c26de7130e929ff/spur-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "d7e1b1a32d4fdb2046efacc73dd6b96e", "sha256": "39653f398efb32fbb71b4c01eb54491df0d6ac2351934feac44d1fe6ba07fa21" }, "downloads": -1, "filename": "spur-0.1.5.tar.gz", "has_sig": false, "md5_digest": "d7e1b1a32d4fdb2046efacc73dd6b96e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4477, "upload_time": "2012-12-23T19:32:25", "url": "https://files.pythonhosted.org/packages/24/93/63e2dc5cd64ef5aadeec5d3b4e4d513596cdb7bfd4f9c45f0adaaddcfb59/spur-0.1.5.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8d711677d986b09679e3712d515be095", "sha256": "8a75cede5449b35ed08a9e52bf733bca866ddcafcf48f60bfd087909baf1b81e" }, "downloads": -1, "filename": "spur-0.2.0.tar.gz", "has_sig": false, "md5_digest": "8d711677d986b09679e3712d515be095", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6044, "upload_time": "2013-01-04T22:37:34", "url": "https://files.pythonhosted.org/packages/bf/9f/845daaad37f73d47bb035b7e22290004ad5fc9c7a47254111158c9bdeeb9/spur-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "12dd2f270be38b5120b46b9ee990d8e0", "sha256": "024604ca403ccdd3654cdbf65688aaac469a7b9eefc91b8d81b6aa7590f286c6" }, "downloads": -1, "filename": "spur-0.2.1.tar.gz", "has_sig": false, "md5_digest": "12dd2f270be38b5120b46b9ee990d8e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6129, "upload_time": "2013-01-06T15:16:39", "url": "https://files.pythonhosted.org/packages/a8/84/b4cd0407723f47d6b4c52d143d67ed2e9addd3cba3e981c57765cbae235d/spur-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4bda7981f685310bb0d1fd7350efddf4", "sha256": "a248837d6a4b90754769304106869d89f3a11cc71f86d5079db4a3fce8881a38" }, "downloads": -1, "filename": "spur-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4bda7981f685310bb0d1fd7350efddf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6326, "upload_time": "2013-01-17T21:09:34", "url": "https://files.pythonhosted.org/packages/e2/7a/9b055acf0eac33b97a05baa06fc441ebfe6cff7da0366f355ff46c0cc2c8/spur-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "4d728426a32e8da235dc11dde23392a6", "sha256": "edc8a6d0e5d453fc705c098731c52b7836cae061e7a6fa4e145711ef68876874" }, "downloads": -1, "filename": "spur-0.2.3.tar.gz", "has_sig": false, "md5_digest": "4d728426a32e8da235dc11dde23392a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6915, "upload_time": "2013-01-21T22:42:05", "url": "https://files.pythonhosted.org/packages/6f/a8/9ed45028528ced36458783d23bf27139ec28d8ae328b10b5d0c0128f5ba6/spur-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "91199d2f49273b640e0a71b0583d3e64", "sha256": "a1b5de04c0bdeb0dd4cd94c44399405a32ef08b2d508ae54b0ffe1a6a23901af" }, "downloads": -1, "filename": "spur-0.2.4.tar.gz", "has_sig": false, "md5_digest": "91199d2f49273b640e0a71b0583d3e64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6953, "upload_time": "2013-02-02T22:23:17", "url": "https://files.pythonhosted.org/packages/79/4e/2cc048b4294840f32f1976426d81c572d24d8ae1c9501883d623a4e2d41e/spur-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "042d94240e4632d2ac32ecf184f63977", "sha256": "24da3e1c4a89f8026ec8c94158b6671576e2f227822c7e5e2ed83d72abf2f042" }, "downloads": -1, "filename": "spur-0.3.0.tar.gz", "has_sig": false, "md5_digest": "042d94240e4632d2ac32ecf184f63977", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7268, "upload_time": "2013-02-03T11:28:08", "url": "https://files.pythonhosted.org/packages/7c/bd/40b48690af1d3e0dad73f184233f933c593c795f2dd1fe04078e1c32b185/spur-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "438199cccf2ee2416e2548e6b9646b63", "sha256": "640454391c1039674e2678548edb05c608931c3d1a1c3a5501ee302b51f960a6" }, "downloads": -1, "filename": "spur-0.3.1.tar.gz", "has_sig": false, "md5_digest": "438199cccf2ee2416e2548e6b9646b63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7625, "upload_time": "2013-02-04T21:08:56", "url": "https://files.pythonhosted.org/packages/69/73/87f3d616ebe2d8f819ca5fe3a1929d124add79f705f2d256eee03838666f/spur-0.3.1.tar.gz" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "887f2c4e8087be1399df9e3237731785", "sha256": "e33328ff95025d64c9f49f93c2ebeda57b50db1c4fcf65fb9155324599e3534b" }, "downloads": -1, "filename": "spur-0.3.10.tar.gz", "has_sig": false, "md5_digest": "887f2c4e8087be1399df9e3237731785", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10438, "upload_time": "2014-04-18T12:44:05", "url": "https://files.pythonhosted.org/packages/1a/cb/43faf649fa1b27d5d3b1d4a6bff9b3170d085a8f1fd530876ae79415298b/spur-0.3.10.tar.gz" } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "b39ad68842e3161f8b86e8440fd64ed3", "sha256": "76d590892a89fd1b3350ab863240d146934f3dac0ed71d1c14919f1413eede66" }, "downloads": -1, "filename": "spur-0.3.11.tar.gz", "has_sig": false, "md5_digest": "b39ad68842e3161f8b86e8440fd64ed3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10489, "upload_time": "2014-05-22T10:46:36", "url": "https://files.pythonhosted.org/packages/5f/4c/c3be0e77700ae8a4db5c684941a7e44100d84782239dc7f6d9965913f31c/spur-0.3.11.tar.gz" } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "349c9ec040835849d9f1dd02a0b8f3e7", "sha256": "bc6ffa3451ba868e3a71eaa6c0f74578d8b44ea4625d600980d6e3f90102f348" }, "downloads": -1, "filename": "spur-0.3.12.tar.gz", "has_sig": false, "md5_digest": "349c9ec040835849d9f1dd02a0b8f3e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11781, "upload_time": "2014-08-25T13:54:58", "url": "https://files.pythonhosted.org/packages/77/03/7e8efa1e9117d8ba63148a9d19669e5c008eb17401dd7ca2f755f22576fb/spur-0.3.12.tar.gz" } ], "0.3.13": [ { "comment_text": "", "digests": { "md5": "ebbcf233c4b02c4dc7b17ee693fe4124", "sha256": "6a4d4ce6be3bb69f325ac40d2721ecf9f0fe39fce81c20c298ac24cfe752db84" }, "downloads": -1, "filename": "spur-0.3.13.tar.gz", "has_sig": false, "md5_digest": "ebbcf233c4b02c4dc7b17ee693fe4124", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12205, "upload_time": "2015-01-11T10:15:05", "url": "https://files.pythonhosted.org/packages/52/5b/6c8d41c6cb344f17d4d34c4d6ea34fb80afe6efaa0a8a5a41a82e85e6c04/spur-0.3.13.tar.gz" } ], "0.3.14": [ { "comment_text": "", "digests": { "md5": "ca4809e72ba4b018bac9a09f6a6df25c", "sha256": "2a16af78956c4f8e590105ee51b52946c8936a2acd7abedfe25a4566719fbd84" }, "downloads": -1, "filename": "spur-0.3.14.tar.gz", "has_sig": false, "md5_digest": "ca4809e72ba4b018bac9a09f6a6df25c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12379, "upload_time": "2015-05-03T13:05:40", "url": "https://files.pythonhosted.org/packages/0a/17/954a97dfd3e428da72ae3adcebf7e4ef4410d9d862e587e5ee7d38b7354e/spur-0.3.14.tar.gz" } ], "0.3.15": [ { "comment_text": "", "digests": { "md5": "a0cfd4c5ae79528e39690f039aeaee39", "sha256": "1b67b361a630083a081fb6280656727b370297d139dc948e7b403bc1efdf8462" }, "downloads": -1, "filename": "spur-0.3.15.tar.gz", "has_sig": false, "md5_digest": "a0cfd4c5ae79528e39690f039aeaee39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13453, "upload_time": "2015-12-28T11:14:21", "url": "https://files.pythonhosted.org/packages/d8/c4/71935a8b481445638c2ba4f57531cfbd16eef72413a0fcc9108e9904eca9/spur-0.3.15.tar.gz" } ], "0.3.16": [ { "comment_text": "", "digests": { "md5": "6ad058694762df303fafe0abaac38b4a", "sha256": "306b493b53a7fc57211eb741da9ae3f1bb9cb0d13ea67582650bb7c8cce0ef6a" }, "downloads": -1, "filename": "spur-0.3.16.tar.gz", "has_sig": false, "md5_digest": "6ad058694762df303fafe0abaac38b4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15318, "upload_time": "2016-04-06T21:43:57", "url": "https://files.pythonhosted.org/packages/64/82/a31b3a6689e2151a933531220d49994b550bdbf2f1a059473c06ebeec7ea/spur-0.3.16.tar.gz" } ], "0.3.17": [ { "comment_text": "", "digests": { "md5": "fcb3cb6a1c73e22902c8a88b2d2b237b", "sha256": "c06ef723393c96df41a29cbdf9d9f3f17c2e068961189bcc20118022ef8d748e" }, "downloads": -1, "filename": "spur-0.3.17.tar.gz", "has_sig": false, "md5_digest": "fcb3cb6a1c73e22902c8a88b2d2b237b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14082, "upload_time": "2016-04-29T20:19:47", "url": "https://files.pythonhosted.org/packages/cd/1c/12191766f0a37f1620dbee4073f2beef35dee019c1f2c05557c3ff37a7c7/spur-0.3.17.tar.gz" } ], "0.3.18": [ { "comment_text": "", "digests": { "md5": "fcd4134a40ff9e5493a0dd0a3e5370a1", "sha256": "791f889b7e816e139ddf441de917b96e4f443025a808b96c1bc1a7e3b874df2a" }, "downloads": -1, "filename": "spur-0.3.18.tar.gz", "has_sig": false, "md5_digest": "fcd4134a40ff9e5493a0dd0a3e5370a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15994, "upload_time": "2016-06-02T21:08:19", "url": "https://files.pythonhosted.org/packages/0a/f3/fa164d944511df2145b813ba455cd06dd18384838f791bfa61f6d61dd0ce/spur-0.3.18.tar.gz" } ], "0.3.19": [ { "comment_text": "", "digests": { "md5": "c590d6fbee269ac7ce7b211628ec7938", "sha256": "4dacd47e55c3b3a730b4cba7e306b4130f0e3a49c5ecb6693ae1d7e04c7749be" }, "downloads": -1, "filename": "spur-0.3.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c590d6fbee269ac7ce7b211628ec7938", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18039, "upload_time": "2016-06-07T21:07:02", "url": "https://files.pythonhosted.org/packages/3a/8e/d0971921f2126dfc76f1c1a4f39a74e6a631e1a710d1e02a634abdce9206/spur-0.3.19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ff2036412c7e0128fb6d6feed031006", "sha256": "ead2b9d1f46fe4c01e983b535be1b6a9ba127a60604da60ac3dc79e77018da22" }, "downloads": -1, "filename": "spur-0.3.19.tar.gz", "has_sig": false, "md5_digest": "1ff2036412c7e0128fb6d6feed031006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16001, "upload_time": "2016-06-07T19:51:59", "url": "https://files.pythonhosted.org/packages/a5/38/d877cdbb9b360f9900ec03519b3b7debb2f6dfb972b986a67a9d626d69a2/spur-0.3.19.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "96964be82bf08aa34db381d16b65bea0", "sha256": "96e893676a8aebe90a876911686b39c86fdcca7ec32a51441fa3e13b2f148377" }, "downloads": -1, "filename": "spur-0.3.2.tar.gz", "has_sig": false, "md5_digest": "96964be82bf08aa34db381d16b65bea0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8028, "upload_time": "2013-02-06T19:08:17", "url": "https://files.pythonhosted.org/packages/a1/e4/14b3b1f7408527adde4637b116e7248862aa36ebeb3b077bc9b45acb28f9/spur-0.3.2.tar.gz" } ], "0.3.20": [ { "comment_text": "", "digests": { "md5": "fb2b10c36e119004be4953cd9e7e0ea8", "sha256": "f9446f418f419c046f49543ca55b35eff2e96b13cf7e0cf8605d657e5fa530ee" }, "downloads": -1, "filename": "spur-0.3.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fb2b10c36e119004be4953cd9e7e0ea8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18627, "upload_time": "2016-11-09T21:28:41", "url": "https://files.pythonhosted.org/packages/24/7c/2c380820400dc9a852e7b1fd3396dc6d4adb7be0404c6783c3c88272c0d8/spur-0.3.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "965a0a3be12ad3496627335ce6d0a983", "sha256": "f359e0573c0e4aaf8427494d6e67bc2bfac4f0c719e47f05e4750921b5804760" }, "downloads": -1, "filename": "spur-0.3.20.tar.gz", "has_sig": false, "md5_digest": "965a0a3be12ad3496627335ce6d0a983", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16493, "upload_time": "2016-11-09T21:28:38", "url": "https://files.pythonhosted.org/packages/c9/4a/34aae67b513cfe6060e5f24c3abcec140b14aa5b67232877ff058032cace/spur-0.3.20.tar.gz" } ], "0.3.21": [ { "comment_text": "", "digests": { "md5": "48fb832fd72082e17667bd7bb63aafad", "sha256": "cdc8af83fce2515c3299dec4ef4957c66583c66d46bc46a94195956aeea93e21" }, "downloads": -1, "filename": "spur-0.3.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48fb832fd72082e17667bd7bb63aafad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14410, "upload_time": "2019-04-21T21:25:19", "url": "https://files.pythonhosted.org/packages/3f/61/c6e0aa874e81fb93c459ca60eaab0ddc6db9eaf8d37a4b2f53d452ac683d/spur-0.3.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "078638da67026844bfa74765ea1283e8", "sha256": "a4fd55610b86f297cca70b79af36ac6872a73f5c7c8036bd3b2cb7ef11a041ab" }, "downloads": -1, "filename": "spur-0.3.21.tar.gz", "has_sig": false, "md5_digest": "078638da67026844bfa74765ea1283e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16119, "upload_time": "2019-04-21T21:25:22", "url": "https://files.pythonhosted.org/packages/14/72/7bd8176527487b837ec5eb45df0c6dd36eba8b8de6f9bc427336a7238eab/spur-0.3.21.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "da99fb5164f227a3297d5b4e312ca073", "sha256": "cd1b755ac268ee75a44954ca59633db3d442d950e509af4f61bc907b97d356cc" }, "downloads": -1, "filename": "spur-0.3.3.tar.gz", "has_sig": false, "md5_digest": "da99fb5164f227a3297d5b4e312ca073", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9162, "upload_time": "2013-03-18T20:06:33", "url": "https://files.pythonhosted.org/packages/32/dc/a3e147f4acec2766873f510904917aa417bf093cce8f03cdd72aed52e8dd/spur-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "ae2756017ecb3db19760762730d83290", "sha256": "f3906b249812ab8d362ac21edcb88a983e7abddc81ccfcd90ce7589153e84f07" }, "downloads": -1, "filename": "spur-0.3.4.tar.gz", "has_sig": false, "md5_digest": "ae2756017ecb3db19760762730d83290", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9170, "upload_time": "2013-03-23T16:12:59", "url": "https://files.pythonhosted.org/packages/dd/81/2962e1826933e2b05da772935e8b7434905ddce270f43e3da58c9be0d595/spur-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "904ea6d822033e2460b69186fc6e22a6", "sha256": "771c537e5f088f9502f615d5d16890504e3be798e06a5888426b5c9c35519eb2" }, "downloads": -1, "filename": "spur-0.3.5.tar.gz", "has_sig": false, "md5_digest": "904ea6d822033e2460b69186fc6e22a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9221, "upload_time": "2013-03-27T20:36:24", "url": "https://files.pythonhosted.org/packages/4c/2d/2eee745b668caf3d7f30495dfe86238f57728b3a837c5dbf7d5c55ef4c83/spur-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "7e7232304847cd158c0e27fbb9ce2be8", "sha256": "d4fe7dca949a6c17688b9b2bd174bdc607090d4d2043f4123bfce6f45b1f26ab" }, "downloads": -1, "filename": "spur-0.3.6.tar.gz", "has_sig": false, "md5_digest": "7e7232304847cd158c0e27fbb9ce2be8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9343, "upload_time": "2013-10-11T18:11:42", "url": "https://files.pythonhosted.org/packages/fe/9e/69c0e259a53f8caebba3f7fe4a8507b57084ef2221de6d3d9fe10cb250dd/spur-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "ebe3b42777a53d4ebbaa2265583a2a89", "sha256": "b8f38b91ab98b3ee7e19cd043bb51b24b75f671418d7311d7c6d6340b1c43dae" }, "downloads": -1, "filename": "spur-0.3.7.tar.gz", "has_sig": false, "md5_digest": "ebe3b42777a53d4ebbaa2265583a2a89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9299, "upload_time": "2013-10-11T18:41:47", "url": "https://files.pythonhosted.org/packages/e9/15/712572440a018b296370944e81efd7951401a1b53d0d14bd05ef6c3a11c3/spur-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "dd9b02ced45402cba0955d9ec328506c", "sha256": "e9297104feef3a61322666bac9644e2e658a8008633f9a13b207450b2aaa71e6" }, "downloads": -1, "filename": "spur-0.3.8.tar.gz", "has_sig": false, "md5_digest": "dd9b02ced45402cba0955d9ec328506c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9544, "upload_time": "2014-03-18T19:44:39", "url": "https://files.pythonhosted.org/packages/99/dd/a1aa3986cc1031d4360113f2581e1c94395939629307982df9c9963dba31/spur-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "7a9f4f53dfe4b1201bd8b07b3953b2f9", "sha256": "6abfd67963284c0965ee63e5fd34681a65bf7e78a719df127386ace29d352f77" }, "downloads": -1, "filename": "spur-0.3.9.tar.gz", "has_sig": false, "md5_digest": "7a9f4f53dfe4b1201bd8b07b3953b2f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10345, "upload_time": "2014-03-29T12:02:39", "url": "https://files.pythonhosted.org/packages/bc/15/5235ac18d8a87cbf35efb8a3bd833b0d6c7459e469b1f58069bfa5c3bf6a/spur-0.3.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "48fb832fd72082e17667bd7bb63aafad", "sha256": "cdc8af83fce2515c3299dec4ef4957c66583c66d46bc46a94195956aeea93e21" }, "downloads": -1, "filename": "spur-0.3.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48fb832fd72082e17667bd7bb63aafad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14410, "upload_time": "2019-04-21T21:25:19", "url": "https://files.pythonhosted.org/packages/3f/61/c6e0aa874e81fb93c459ca60eaab0ddc6db9eaf8d37a4b2f53d452ac683d/spur-0.3.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "078638da67026844bfa74765ea1283e8", "sha256": "a4fd55610b86f297cca70b79af36ac6872a73f5c7c8036bd3b2cb7ef11a041ab" }, "downloads": -1, "filename": "spur-0.3.21.tar.gz", "has_sig": false, "md5_digest": "078638da67026844bfa74765ea1283e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16119, "upload_time": "2019-04-21T21:25:22", "url": "https://files.pythonhosted.org/packages/14/72/7bd8176527487b837ec5eb45df0c6dd36eba8b8de6f9bc427336a7238eab/spur-0.3.21.tar.gz" } ] }