{ "info": { "author": "Daniele Varrazzo", "author_email": "daniele.varrazzo@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: BSD", "Operating System :: POSIX :: Linux", "Programming Language :: C", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Software Development" ], "description": "A Python module to customize the process title\n==============================================\n\n:author: Daniele Varrazzo\n\nThe ``setproctitle`` module allows a process to change its title (as displayed\nby system tools such as ``ps`` and ``top``).\n\nChanging the title is mostly useful in multi-process systems, for example\nwhen a master process is forked: changing the children's title allows to\nidentify the task each process is busy with. The technique is used by\nPostgreSQL_ and the `OpenSSH Server`_ for example.\n\nThe procedure is hardly portable across different systems. PostgreSQL provides\na good `multi-platform implementation`__: this module is a Python wrapper\naround PostgreSQL code.\n\n- `Homepage `__\n- `Download `__\n- `Bug tracker `__\n\n\n.. _PostgreSQL: http://www.postgresql.org\n.. _OpenSSH Server: http://www.openssh.com/\n.. __: http://doxygen.postgresql.org/ps__status_8c_source.html\n\n\nInstallation\n------------\n\n``setproctitle`` is a C extension: in order to build it you will need a C\ncompiler and the Python development support (the ``python-dev`` package in\nmost Linux distributions). No further external dependencies are required.\n\nYou can use ``pip`` to install the module::\n\n pip install setproctitle\n\nYou can use ``pip -t`` or ``virtualenv`` for local installations, ``sudo pip``\nfor a system-wide one... the usual stuff. Read pip_ or virtualenv_ docs for\nall the details.\n\n.. _pip: https://pip.readthedocs.org/\n.. _virtualenv: https://virtualenv.readthedocs.org/\n\n\nPython 3 support\n~~~~~~~~~~~~~~~~\n\nAs of version 1.1 the module works with Python 3. Just use\n``pip``/``virtualenv`` for Python 3.\n\nIn order to build from the source package and test the module under Python 3,\nthe ``Makefile`` contains some helper targets.\n\n\nUsage\n-----\n\nThe ``setproctitle`` module exports the following functions:\n\n``setproctitle(title)``\n Set *title* as the title for the current process.\n\n``getproctitle()``\n Return the current process title.\n\n\nEnvironment variables\n~~~~~~~~~~~~~~~~~~~~~\n\nA few environment variables can be used to customize the module behavior:\n\n``SPT_NOENV``\n Avoid clobbering ``/proc/PID/environ``.\n\n On many platforms, setting the process title will clobber the\n ``environ`` memory area. ``os.environ`` will work as expected from within\n the Python process, but the content of the file ``/proc/PID/environ`` will\n be overwritten. If you require this file not to be broken you can set the\n ``SPT_NOENV`` environment variable to any non-empty value: in this case\n the maximum length for the title will be limited to the length of the\n command line.\n\n``SPT_DEBUG``\n Print debug information on ``stderr``.\n\n If the module doesn't work as expected you can set this variable to a\n non-empty value to generate information useful for debugging. Note that\n the most useful information is printed when the module is imported, not\n when the functions are called.\n\n\nModule status\n-------------\n\nThe module can be currently compiled and effectively used on the following\nplatforms:\n\n- GNU/Linux\n- BSD\n- MacOS X\n- Windows\n\nNote that on Windows there is no way to change the process string:\nwhat the module does is to create a *Named Object* whose value can be read\nusing a tool such as `Process Explorer`_ (contribution of a more useful tool\nto be used together with ``setproctitle`` would be well accepted).\n\nThe module can probably work on HP-UX, but I haven't found any to test with.\nIt is unlikely that it can work on Solaris instead.\n\n.. _Process Explorer: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx\n\n\nOther known implementations and discussions\n-------------------------------------------\n\n- `procname`_: a module exposing the same functionality, but less portable\n and not well packaged.\n- `Issue 5672`_: where the introduction of such functionality into the stdlib\n is being discussed.\n\n.. _procname: http://code.google.com/p/procname/\n.. _Issue 5672: http://bugs.python.org/issue5672\n\nReleases history\n----------------\n\nVersion 1.1.10\n~~~~~~~~~~~~~~\n\n- Fixed building with certain ``prctl.h`` implementations (issue #44).\n- Use ``setuptools`` if available (issue #48).\n\n\nVersion 1.1.9\n~~~~~~~~~~~~~\n\n- Fixed build on VC (issues #20, #33).\n- Added ``MANIFEST.in`` to the source distribution to help with RPM building\n (issue #30).\n\n\nVersion 1.1.8\n~~~~~~~~~~~~~\n\n- Added support for Python \"diehard\" 2.4 (pull request #3).\n- Fixed build on Mac OS X 10.9 Maverick (issue #27).\n\n\nVersion 1.1.7\n~~~~~~~~~~~~~\n\n- Added PyPy support, courtesy of Ozan Turksever - http://www.logsign.net\n (pull request #2).\n\n\nVersion 1.1.6\n~~~~~~~~~~~~~\n\n- The module can be compiled again on Windows (issue #21).\n\n\nVersion 1.1.5\n~~~~~~~~~~~~~\n\n- No module bug, but a packaging issue: files ``README`` and ``HISTORY``\n added back into the distribution.\n\n\nVersion 1.1.4\n~~~~~~~~~~~~~\n\n- The module works correctly in embedded Python.\n- ``setproctitle()`` accepts a keyword argument.\n- Debug output support always compiled in: the variable ``SPT_DEBUG`` can be\n used to emit debug log.\n\n\nVersion 1.1.3\n~~~~~~~~~~~~~\n\n- Don't clobber environ if the variable ``SPT_NOENV`` is set (issue #16).\n\n\nVersion 1.1.2\n~~~~~~~~~~~~~\n\n- Find the setproctitle include file on OpenBSD (issue #11).\n- Skip test with unicode if the file system encoding wouldn't make it pass\n (issue #13).\n\n\nVersion 1.1.1\n~~~~~~~~~~~~~\n\n- Fixed segfault when the module is imported under mod_wsgi (issue #9).\n\n\nVersion 1.1\n~~~~~~~~~~~\n\n- The module works correctly with Python 3.\n\n\nVersion 1.0.1\n~~~~~~~~~~~~~\n\n- ``setproctitle()`` works even when Python messes up with argv, e.g. when run\n with the -m option (issue #8).\n\n\nVersion 1.0\n~~~~~~~~~~~\n\nNo major change since the previous version. The module has been heavily used\nin production environment without any problem reported, so it's time to declare\nit stable.\n\n\nVersion 0.4\n~~~~~~~~~~~\n\n- Module works on BSD (tested on FreeBSD 7.2).\n\n- Module works on Windows. Many thanks to `Develer`_ for providing a neat `GCC\n package for Windows with Python integration`__ that made the Windows porting\n painless.\n\n .. _Develer: http://www.develer.com/\n .. __: http://www.develer.com/oss/GccWinBinaries\n\n\nVersion 0.3\n~~~~~~~~~~~\n\n- Module works on Mac OS X 10.2. Reported working on OS X 10.6 too.\n\n\nVersion 0.2\n~~~~~~~~~~~\n\n- Added ``prctl()`` call on Linux >= 2.6.9 to update ``/proc/self/status``.\n\n\nVersion 0.1\n~~~~~~~~~~~\n\n- Initial public release.", "description_content_type": null, "docs_url": null, "download_url": "http://pypi.python.org/pypi/setproctitle/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/dvarrazzo/py-setproctitle", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "setproctitle", "package_url": "https://pypi.org/project/setproctitle/", "platform": "GNU/Linux,BSD,MacOS X,Windows", "project_url": "https://pypi.org/project/setproctitle/", "project_urls": { "Download": "http://pypi.python.org/pypi/setproctitle/", "Homepage": "https://github.com/dvarrazzo/py-setproctitle" }, "release_url": "https://pypi.org/project/setproctitle/1.1.10/", "requires_dist": null, "requires_python": null, "summary": "A Python module to customize the process title", "version": "1.1.10" }, "last_serial": 2110979, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "656e7c494510067445d1386a2ebc5498", "sha256": "e68bbee6c43c0465d632fe42d1204e9622d15445c99dd7048615a02867e98412" }, "downloads": -1, "filename": "setproctitle-0.1.tar.gz", "has_sig": false, "md5_digest": "656e7c494510067445d1386a2ebc5498", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10233, "upload_time": "2009-12-05T20:46:39", "url": "https://files.pythonhosted.org/packages/ad/b7/3650003fd5c221b0448099585894cfffed42b6c616ea728e007fb9012247/setproctitle-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "4448b3246f43ce69afb597e8fa48ff1f", "sha256": "66a92dd8bf7036965f207e0a26b56e81972074c19b6d40a932a4b7e25950d75b" }, "downloads": -1, "filename": "setproctitle-0.2.tar.gz", "has_sig": false, "md5_digest": "4448b3246f43ce69afb597e8fa48ff1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10920, "upload_time": "2009-12-07T01:43:23", "url": "https://files.pythonhosted.org/packages/c5/3f/59ccd1b99d17b855045cf3a996c673deaf088c0f80f1a2d38f22e31e0acd/setproctitle-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "5be99f78c6b526cd6e238ff78d6694b1", "sha256": "15c467f2aa5b70abe2e31c116e1a1b6e20412457f797015d288b82a8f9780772" }, "downloads": -1, "filename": "setproctitle-0.3.tar.gz", "has_sig": false, "md5_digest": "5be99f78c6b526cd6e238ff78d6694b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10472, "upload_time": "2009-12-07T18:00:40", "url": "https://files.pythonhosted.org/packages/f5/37/7f88031f1250471a2012435967b4124c12c709d7e9aaf551ed5aa2b8b647/setproctitle-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "b6a4855a0e9087fd1c30da148468fe07", "sha256": "4fbf0ec34e7dda0a3eda4ef4fcbfc39182358e97b94d904411e190e5825051f5" }, "downloads": -1, "filename": "setproctitle-0.4.tar.gz", "has_sig": false, "md5_digest": "b6a4855a0e9087fd1c30da148468fe07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12732, "upload_time": "2009-12-09T00:38:36", "url": "https://files.pythonhosted.org/packages/32/f2/2846f72220df83d17c6e6fbc1cf4cc3f54095319e6a1a19c10d3cb075ee9/setproctitle-0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "beb7c2d15946412cce5c6edf858a1d1a", "sha256": "a594f94a6d2ecf1b9ce43d567b0b2378649c6260f6c0e46cc23e50ac7db07e83" }, "downloads": -1, "filename": "setproctitle-0.4.zip", "has_sig": false, "md5_digest": "beb7c2d15946412cce5c6edf858a1d1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16075, "upload_time": "2009-12-09T00:38:35", "url": "https://files.pythonhosted.org/packages/14/13/ab029e5356190c00b8960be2efbe16299fa943271da2a3d3e7db34bac210/setproctitle-0.4.zip" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "27504766d1a0ea30a88d8eaf1e311fa3", "sha256": "a8b08c7a589aa6b76729bdee25d5a5e6b4c85415e30f356e308366711b98db48" }, "downloads": -1, "filename": "setproctitle-1.0.tar.gz", "has_sig": false, "md5_digest": "27504766d1a0ea30a88d8eaf1e311fa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12003, "upload_time": "2010-02-16T22:28:50", "url": "https://files.pythonhosted.org/packages/fc/39/6c07fd87bbcc11f5d4b3578def15710be4c0f0f788c12ac5ca877435aa17/setproctitle-1.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "491203e6d17cd327006477c0c0a13c07", "sha256": "37846efaa013f0632803c7f57ff3a997fc8310b6d43553fee1e3056ade363bfe" }, "downloads": -1, "filename": "setproctitle-1.0.zip", "has_sig": false, "md5_digest": "491203e6d17cd327006477c0c0a13c07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16502, "upload_time": "2010-02-16T22:28:59", "url": "https://files.pythonhosted.org/packages/9c/a4/e2005e0083cb5c1c83dc9d0eea21f95aec73fcbccf2b3a92790854eb6ccd/setproctitle-1.0.zip" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "1e7522e32cc1d7045d97fcc12324a67e", "sha256": "2fc197f8630917eea14fb92215e6550da71486841eba7f638048348ec0c0fe83" }, "downloads": -1, "filename": "setproctitle-1.0.1.tar.gz", "has_sig": false, "md5_digest": "1e7522e32cc1d7045d97fcc12324a67e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12867, "upload_time": "2010-06-04T13:01:12", "url": "https://files.pythonhosted.org/packages/e3/81/1fe7f0af0c50fb3da0f67d6cd941eeae8472ef0dc4c327c5f2a1cd1d4b8b/setproctitle-1.0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "27a63e1cc2dda078baa14cb44aab95c9", "sha256": "37cc2aaa870dd43022967de768d7a302830ede7d5e2ef7cebc0788ed42f000ef" }, "downloads": -1, "filename": "setproctitle-1.0.1.zip", "has_sig": false, "md5_digest": "27a63e1cc2dda078baa14cb44aab95c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17529, "upload_time": "2010-06-04T13:01:12", "url": "https://files.pythonhosted.org/packages/c9/54/91b2c98fcffec2042d2bd1e6ddd9005793f9796eb45733fb9812326db187/setproctitle-1.0.1.zip" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "d9e064c974d5b59b7cb00dab53be34c9", "sha256": "03c437f3a0e893b20a2511140625ce8e121d403f153234d1de0ea69d85b61ca5" }, "downloads": -1, "filename": "setproctitle-1.1.tar.gz", "has_sig": false, "md5_digest": "d9e064c974d5b59b7cb00dab53be34c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17102, "upload_time": "2010-07-07T03:28:24", "url": "https://files.pythonhosted.org/packages/53/7a/f0074ce6178bdfba69f824213527e80c6b7d3760c7bae706ca2bef6b8918/setproctitle-1.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "dd797b7edbe61a6c5d6cfeb35e9aac3b", "sha256": "d320867e4732592ee9a634ab0170fa59d96434997c5c09a5a50ac5e3464f473a" }, "downloads": -1, "filename": "setproctitle-1.1.zip", "has_sig": false, "md5_digest": "dd797b7edbe61a6c5d6cfeb35e9aac3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23769, "upload_time": "2010-07-07T03:28:25", "url": "https://files.pythonhosted.org/packages/46/40/e026381cc62021c80ccea90054504b3485101780735ccccbff1330fa7cf7/setproctitle-1.1.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "0bc31db1596de1386a5ed5ab418dc3a2", "sha256": "adb5593ee500ca24a3027abcf34f0fe03af4e7a2ff1c8d854c2b612edcb63173" }, "downloads": -1, "filename": "setproctitle-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0bc31db1596de1386a5ed5ab418dc3a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18152, "upload_time": "2011-02-03T01:08:49", "url": "https://files.pythonhosted.org/packages/fb/62/78a9534c2ff22bf0a5cb1dfc93001fdf874f0d009c0a83e9ffc1551be89a/setproctitle-1.1.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "c8cc499251edee1e74168004b14760a5", "sha256": "d15bb2109a5df6dea040efdf9c330469541fc10fedf19d013cdb0ae974dd44e7" }, "downloads": -1, "filename": "setproctitle-1.1.1.zip", "has_sig": false, "md5_digest": "c8cc499251edee1e74168004b14760a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24784, "upload_time": "2011-02-03T01:08:49", "url": "https://files.pythonhosted.org/packages/7e/97/6fed106869dece2558e700f558d8c1b7de57766afc09ad39cab8c5279801/setproctitle-1.1.1.zip" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "2dcdd1b761700a5a13252fea3dfd1977", "sha256": "6283b7a58477dd8478fbb9e76defb37968ee4ba47b05ec1c053cb39638bd7398" }, "downloads": -1, "filename": "setproctitle-1.1.10.tar.gz", "has_sig": true, "md5_digest": "2dcdd1b761700a5a13252fea3dfd1977", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24042, "upload_time": "2016-05-11T16:37:52", "url": "https://files.pythonhosted.org/packages/5a/0d/dc0d2234aacba6cf1a729964383e3452c52096dc695581248b548786f2b3/setproctitle-1.1.10.tar.gz" }, { "comment_text": "", "digests": { "md5": "5002e26d06564000db1a45c801b615e9", "sha256": "6a035eddac62898786aed2c2eee7334c28cfc8106e8eb29fdd117cac56c6cdf0" }, "downloads": -1, "filename": "setproctitle-1.1.10.zip", "has_sig": true, "md5_digest": "5002e26d06564000db1a45c801b615e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34120, "upload_time": "2016-05-11T16:38:32", "url": "https://files.pythonhosted.org/packages/8a/b9/058c53e8e55e9d549da8d60bbb7a404aac57b153c7cb815129d726c4cbbb/setproctitle-1.1.10.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "d90d8e396f372e69ea85c98cec7a1027", "sha256": "03490d059d63250313093942655ad48c41ad3b05b86d2f8824a574bc8f1d2049" }, "downloads": -1, "filename": "setproctitle-1.1.2.tar.gz", "has_sig": false, "md5_digest": "d90d8e396f372e69ea85c98cec7a1027", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18342, "upload_time": "2011-03-26T19:12:09", "url": "https://files.pythonhosted.org/packages/18/cc/f8587def00122c651dcdf04ae5b67291509531d7ed3471a86696cf2a7c50/setproctitle-1.1.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "52f99a78cbdd1b0036bf41b4512442e7", "sha256": "27dea41b00c443b066825065b8bb193097e8b18d142cba599b23f698a5cf0e69" }, "downloads": -1, "filename": "setproctitle-1.1.2.zip", "has_sig": false, "md5_digest": "52f99a78cbdd1b0036bf41b4512442e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25000, "upload_time": "2011-03-26T19:12:10", "url": "https://files.pythonhosted.org/packages/e3/c6/c0a010a049fbbb5791780bd5bff4a3598e8fe3c83313c3ca3c35e3335e24/setproctitle-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "64028521850dc68c5b90d45377de3f5c", "sha256": "4af97eb01a2febb810a08b46f7f53b460c1eda6beba07895c13ebe756f422306" }, "downloads": -1, "filename": "setproctitle-1.1.3.tar.gz", "has_sig": false, "md5_digest": "64028521850dc68c5b90d45377de3f5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19286, "upload_time": "2011-11-10T23:56:14", "url": "https://files.pythonhosted.org/packages/c6/48/e17c78258b9f0bd8a95405f8c7b5e8c9b1dbb2de865af1f827b9a395a7ac/setproctitle-1.1.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "6e9b9e0069bcdbc093fcd5700a751525", "sha256": "b41ee7f28fddfcd8cf5880172b54e45619393b79420181563dc6a433dfe7b122" }, "downloads": -1, "filename": "setproctitle-1.1.3.zip", "has_sig": false, "md5_digest": "6e9b9e0069bcdbc093fcd5700a751525", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26175, "upload_time": "2011-11-10T23:56:15", "url": "https://files.pythonhosted.org/packages/c7/93/53c64a7c7c71fc921c867fd6c4e705b9eca732231197305d7439e923d31f/setproctitle-1.1.3.zip" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "8261eed6523735921600c3b5b4a33c64", "sha256": "45871e818a8c174aa2f1ce738e87a1855b0668a9eb4e6703a6aeadb0c79b6bbf" }, "downloads": -1, "filename": "setproctitle-1.1.4.tar.gz", "has_sig": false, "md5_digest": "8261eed6523735921600c3b5b4a33c64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20676, "upload_time": "2012-03-15T03:24:02", "url": "https://files.pythonhosted.org/packages/b4/b3/625e19bd3758d3959779e56a39359a4f526cbabe95a49b5c940142359454/setproctitle-1.1.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "2fbba09d74a5fe27534d1accd0930f62", "sha256": "488484980436235e74183536d0e8064456c589eb75723df304f0f44d3002ae22" }, "downloads": -1, "filename": "setproctitle-1.1.4.zip", "has_sig": false, "md5_digest": "2fbba09d74a5fe27534d1accd0930f62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26175, "upload_time": "2012-03-15T03:24:02", "url": "https://files.pythonhosted.org/packages/a4/af/748f1d5f51dfd0ddc0decf3d0a472413a01b41955183199dfdafa0350e59/setproctitle-1.1.4.zip" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "8dc236c23727a4aca031fcd29b7f8a73", "sha256": "c434645412a556f724c8ffe555a2e9b587cd1127426a61c98794af234783f458" }, "downloads": -1, "filename": "setproctitle-1.1.5.tar.gz", "has_sig": false, "md5_digest": "8dc236c23727a4aca031fcd29b7f8a73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22382, "upload_time": "2012-03-23T13:29:13", "url": "https://files.pythonhosted.org/packages/18/7b/d1fca21dd740ba949ed804c78dde0b1aed60691306b69fdb1a727abd2ac2/setproctitle-1.1.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "707865ef445cc559784c559239f8cae6", "sha256": "cf72800a2671d8dacb710f23de4a793cdc892c9426b89396858d47de0861a1e2" }, "downloads": -1, "filename": "setproctitle-1.1.5.zip", "has_sig": false, "md5_digest": "707865ef445cc559784c559239f8cae6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28873, "upload_time": "2012-03-23T13:29:14", "url": "https://files.pythonhosted.org/packages/e1/72/29ad844ed948e8233612b8e2bd511f9372814ab4085fbb8e465fa0d0ed51/setproctitle-1.1.5.zip" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "1e42e43b440214b971f4b33c21eac369", "sha256": "f2926abd47803e288f665401268a9950961be734e981035bde9acb4af80a032d" }, "downloads": -1, "filename": "setproctitle-1.1.6.tar.gz", "has_sig": false, "md5_digest": "1e42e43b440214b971f4b33c21eac369", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22589, "upload_time": "2012-04-27T12:04:33", "url": "https://files.pythonhosted.org/packages/bd/77/f43757efdd98174810d9a32e8b442853c3ba9b2155fd77f0731a43ca84c7/setproctitle-1.1.6.tar.gz" }, { "comment_text": "", "digests": { "md5": "5427ff7f51b44c55d2f352d11e8e1fe5", "sha256": "97fc8455b128881635cac5e31841cd1a28363f259854408908cb442085240e2f" }, "downloads": -1, "filename": "setproctitle-1.1.6.zip", "has_sig": false, "md5_digest": "5427ff7f51b44c55d2f352d11e8e1fe5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29227, "upload_time": "2012-04-27T12:04:33", "url": "https://files.pythonhosted.org/packages/34/f0/6a2b0c8d9bcd8371b05677e898583b94fb1d4f64d8950c1e28e71f822dbb/setproctitle-1.1.6.zip" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "b6a46974133016e16f4b8571d6c2afdb", "sha256": "c7fca7ca317e309f4d77649ed94ef296e30f8444a9fa75bfb6483b5e70efa882" }, "downloads": -1, "filename": "setproctitle-1.1.7.tar.gz", "has_sig": false, "md5_digest": "b6a46974133016e16f4b8571d6c2afdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23209, "upload_time": "2013-02-19T23:44:11", "url": "https://files.pythonhosted.org/packages/bb/d0/7dad57205369f04e876b3635aeb74b562fbaa8f8a08869b0a475f7516b62/setproctitle-1.1.7.tar.gz" }, { "comment_text": "", "digests": { "md5": "e89a27ed9c355d4849f2522b293e2129", "sha256": "784f32eb60e8c8bc2634a20691e1982226ee42d809c76fbf60087fb07010ebfa" }, "downloads": -1, "filename": "setproctitle-1.1.7.zip", "has_sig": false, "md5_digest": "e89a27ed9c355d4849f2522b293e2129", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29404, "upload_time": "2013-02-19T23:44:16", "url": "https://files.pythonhosted.org/packages/f0/e9/76743f37769ae6ed953c3ce4c1c139179061621046eafad99de938ddcf08/setproctitle-1.1.7.zip" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "728f4c8c6031bbe56083a48594027edd", "sha256": "b564cf6488217c7a4632a9fe646fc3a3bea2f9712b4e667e9632b870d1a58211" }, "downloads": -1, "filename": "setproctitle-1.1.8.tar.gz", "has_sig": true, "md5_digest": "728f4c8c6031bbe56083a48594027edd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23208, "upload_time": "2013-10-23T21:53:35", "url": "https://files.pythonhosted.org/packages/33/c3/ad367a4f4f1ca90468863ae727ac62f6edb558fc09a003d344a02cfc6ea6/setproctitle-1.1.8.tar.gz" }, { "comment_text": "", "digests": { "md5": "99bd5957546846660a61f30bb87ba24a", "sha256": "011ac1bdfe10d9bf76a0b121b229cc1cb0d9e7072d8bffa3314a1a41683a1115" }, "downloads": -1, "filename": "setproctitle-1.1.8.zip", "has_sig": true, "md5_digest": "99bd5957546846660a61f30bb87ba24a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29207, "upload_time": "2013-10-23T21:53:39", "url": "https://files.pythonhosted.org/packages/b1/ed/dab6755f56e48428a2d951c4a4b8eb7d610da7c11cadf7da1986c032f176/setproctitle-1.1.8.zip" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "95d9e56c69437246460a20804961d70d", "sha256": "1c3414d18f9cacdab78b0ffd8e886d56ad45f22e55001a72aaa0b2aeb56a0ad7" }, "downloads": -1, "filename": "setproctitle-1.1.9.tar.gz", "has_sig": false, "md5_digest": "95d9e56c69437246460a20804961d70d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23576, "upload_time": "2015-07-19T23:21:04", "url": "https://files.pythonhosted.org/packages/ce/5f/65ba1db2a93c0e6faf4daae7c79b5e636bb0474460b964b6db2f2a8b0261/setproctitle-1.1.9.tar.gz" }, { "comment_text": "", "digests": { "md5": "012975e2204b12e3c7c74d006c1df7f4", "sha256": "a1719f0b8cf13c7a6f0fb3d1b9f6a81f6b0c234966847ff34a4d52c4b38d54e4" }, "downloads": -1, "filename": "setproctitle-1.1.9.zip", "has_sig": false, "md5_digest": "012975e2204b12e3c7c74d006c1df7f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29989, "upload_time": "2015-07-19T23:21:08", "url": "https://files.pythonhosted.org/packages/e6/3a/d4f4acfb1365df0ba52c6e89d4d34162875184fe315e2194b698fc0fe0ad/setproctitle-1.1.9.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2dcdd1b761700a5a13252fea3dfd1977", "sha256": "6283b7a58477dd8478fbb9e76defb37968ee4ba47b05ec1c053cb39638bd7398" }, "downloads": -1, "filename": "setproctitle-1.1.10.tar.gz", "has_sig": true, "md5_digest": "2dcdd1b761700a5a13252fea3dfd1977", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24042, "upload_time": "2016-05-11T16:37:52", "url": "https://files.pythonhosted.org/packages/5a/0d/dc0d2234aacba6cf1a729964383e3452c52096dc695581248b548786f2b3/setproctitle-1.1.10.tar.gz" }, { "comment_text": "", "digests": { "md5": "5002e26d06564000db1a45c801b615e9", "sha256": "6a035eddac62898786aed2c2eee7334c28cfc8106e8eb29fdd117cac56c6cdf0" }, "downloads": -1, "filename": "setproctitle-1.1.10.zip", "has_sig": true, "md5_digest": "5002e26d06564000db1a45c801b615e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34120, "upload_time": "2016-05-11T16:38:32", "url": "https://files.pythonhosted.org/packages/8a/b9/058c53e8e55e9d549da8d60bbb7a404aac57b153c7cb815129d726c4cbbb/setproctitle-1.1.10.zip" } ] }