{ "info": { "author": "Zope Foundation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: Zope Public License", "Operating System :: POSIX", "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", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Utilities" ], "description": "*****************************************************\n``zdaemon`` process controller for Unix-based systems\n*****************************************************\n\n``zdaemon`` is a Unix (Unix, Linux, Mac OS X) Python program that wraps\ncommands to make them behave as proper daemons.\n\n.. contents::\n\n===============\n Using zdaemon\n===============\n\nzdaemon provides a script, zdaemon, that can be used to run other\nprograms as POSIX (Unix) daemons. (Of course, it is only usable on\nPOSIX-complient systems.)\n\nUsing zdaemon requires specifying a number of options, which can be\ngiven in a configuration file, or as command-line options. It also\naccepts commands teling it what do do. The commands are:\n\nstart\n Start a process as a daemon\n\nstop\n Stop a running daemon process\n\nrestart\n Stop and then restart a program\n\nstatus\n Find out if the program is running\n\nforeground or fg\n Run a program\n\nkill signal\n Send a signal to the daemon process\n\nreopen_transcript\n Reopen the transcript log. See the discussion of the transcript\n log below.\n\nhelp command\n Get help on a command\n\n\nCommands can be given on a command line, or can be given using an\ninteractive interpreter.\n\nLet's start with a simple example. We'll use command-line options to\nrun the echo command:\n\n sh> ./zdaemon -p 'echo hello world' fg\n echo hello world\n hello world\n\n\nHere we used the -p option to specify a program to run. We can\nspecify a program name and command-line options in the program\ncommand. Note, however, that the command-line parsing is pretty\nprimitive. Quotes and spaces aren't handled correctly. Let's look at\na slightly more complex example. We'll run the sleep command as a\ndaemon :)\n\n sh> ./zdaemon -p 'sleep 100' start\n . .\n daemon process started, pid=819\n\nThis ran the sleep daemon. We can check whether it ran with the\nstatus command:\n\n sh> ./zdaemon -p 'sleep 100' status\n program running; pid=819\n\nWe can stop it with the stop command:\n\n sh> ./zdaemon -p 'sleep 100' stop\n . .\n daemon process stopped\n\n sh> ./zdaemon -p 'sleep 100' status\n daemon manager not running\n Failed: 3\n\nNormally, we control zdaemon using a configuration file. Let's create\na typical configuration file::\n\n \n program sleep 100\n \n\n.. -> text\n\n >>> with open('conf', 'w') as file:\n ... _ = file.write(text)\n\nNow, we can run with the -C option to read the configuration file:\n\n sh> ./zdaemon -Cconf start\n . .\n daemon process started, pid=1136\n\nIf we list the directory:\n\n sh> ls\n conf\n zdaemon\n zdsock\n\nWe'll see that a file, zdsock, was created. This is a unix-domain\nsocket used internally by ZDaemon. We'll normally want to control\nwhere this goes.\n\n sh> ./zdaemon -Cconf stop\n . .\n daemon process stopped\n\nHere's an updated configuration::\n\n \n program sleep 100\n socket-name /tmp/demo.zdsock\n \n\n.. -> text\n\n >>> with open('conf', 'w') as file:\n ... _ = file.write(text.replace('/tmp', tmpdir))\n\nNow, when we run zdaemon:\n\n sh> ./zdaemon -Cconf start\n . .\n daemon process started, pid=1139\n\n sh> ls\n conf\n zdaemon\n\n.. test\n\n >>> import os\n >>> os.path.exists(\"/tmp/demo.zdsock\".replace('/tmp', tmpdir))\n True\n\nThe socket file is created in the given directory.\n\n sh> ./zdaemon -Cconf stop\n . .\n daemon process stopped\n\nIn the example, we included a command-line argument in the program\noption. We can also provide options on the command line::\n\n \n program sleep\n socket-name /tmp/demo.zdsock\n \n\n.. -> text\n\n >>> with open('conf', 'w') as file:\n ... _ = file.write(text.replace('/tmp', tmpdir))\n\nThen we can pass the program argument on the command line:\n\n sh> ./zdaemon -Cconf start 100\n . .\n daemon process started, pid=1149\n\n sh> ./zdaemon -Cconf status\n program running; pid=1149\n\n sh> ./zdaemon -Cconf stop\n . .\n daemon process stopped\n\nEnvironment Variables\n=====================\n\nSometimes, it is necessary to set environment variables before running\na program. Perhaps the most common case for this is setting\nLD_LIBRARY_PATH so that dynamically loaded libraries can be found.\n\n::\n\n \n program env\n socket-name /tmp/demo.zdsock\n \n \n LD_LIBRARY_PATH /home/foo/lib\n HOME /home/foo\n \n\n.. -> text\n\n >>> with open('conf', 'w') as file:\n ... _ = file.write(text.replace('/tmp', tmpdir))\n\nNow, when we run the command, we'll see out environment settings reflected:\n\n sh> ./zdaemon -Cconf fg\n env\n USER=jim\n HOME=/home/foo\n LOGNAME=jim\n USERNAME=jim\n TERM=dumb\n PATH=/home/jim/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin\n EMACS=t\n LANG=en_US.UTF-8\n SHELL=/bin/bash\n EDITOR=emacs\n LD_LIBRARY_PATH=/home/foo/lib\n\nTranscript log\n==============\n\nWhen zdaemon run a program in daemon mode, it disconnects the\nprogram's standard input, standard output, and standard error from the\ncontrolling terminal. It can optionally redirect the output to\nstandard error and standard output to a file. This is done with the\ntranscript option. This is, of course, useful for logging output from\nlong-running applications.\n\nLet's look at an example. We'll have a long-running process that\nsimple tails a data file:\n\n >>> f = open('data', 'w', 1)\n >>> import os\n >>> _ = f.write('rec 1\\n'); f.flush(); os.fsync(f.fileno())\n\nNow, here's out zdaemon configuration::\n\n \n program tail -f data\n transcript log\n \n\n.. -> text\n\n >>> with open('conf', 'w') as file:\n ... _ = file.write(text)\n\nNow we'll start:\n\n sh> ./zdaemon -Cconf start\n . .\n daemon process started, pid=7963\n\n.. Wait a little bit to make sure tail has a chance to work\n\n >>> import time\n >>> time.sleep(0.1)\n\nAfter waiting a bit, if we look at the log file, it contains the tail output:\n\n >>> with open('log') as file:\n ... file.read()\n 'rec 1\\n'\n\nWe can rotate the transcript log by renaming it and telling zdaemon to\nreopen it:\n\n >>> import os\n >>> os.rename('log', 'log.1')\n\nIf we generate more output:\n\n >>> _ = f.write('rec 2\\n'); f.flush(); os.fsync(f.fileno())\n\n.. Wait a little bit to make sure tail has a chance to work\n\n >>> time.sleep(1)\n\nThe output will appear in the old file, because zdaemon still has it\nopen:\n\n >>> with open('log.1') as file:\n ... file.read()\n 'rec 1\\nrec 2\\n'\n\nNow, if we tell zdaemon to reopen the file:\n\n sh> ./zdaemon -Cconf reopen_transcript\n\nand generate some output:\n\n >>> _ = f.write('rec 3\\n'); f.flush(); os.fsync(f.fileno())\n\n.. Wait a little bit to make sure tail has a chance to work\n\n >>> time.sleep(1)\n\nthe output will show up in the new file, not the old:\n\n >>> with open('log') as file:\n ... file.read()\n 'rec 3\\n'\n\n >>> with open('log.1') as file:\n ... file.read()\n 'rec 1\\nrec 2\\n'\n\nClose files and clean up:\n\n >>> f.close()\n\n sh> ./zdaemon -Cconf stop\n . .\n daemon process stopped\n\n\nStart test program and timeout\n==============================\n\nNormally, zdaemon considers a process to have started when the process\nitself has been created. A process may take a while before it is\ntruly up and running. For example, a database server or a web server\nmay take time before they're ready to accept requests.\n\nYou can optionally supply a test program, via the ``start-test-program``\nconfiguration option, that is called repeatedly until it returns a 0\nexit status or until a time limit, ``start-timeout``, has been reached.\n\nReference Documentation\n=======================\n\nThe following options are available for use in the runner section of\nconfiguration files and as command-line options.\n\nprogram\n Command-line option: -p or --program\n\n This option gives the command used to start the subprocess\n managed by zdaemon. This is currently a simple list of\n whitespace-delimited words. The first word is the program\n file, subsequent words are its command line arguments. If the\n program file contains no slashes, it is searched using $PATH.\n (Note that there is no way to to include whitespace in the program\n file or an argument, and under certain circumstances other\n shell metacharacters are also a problem.)\n\nsocket-name\n Command-line option: -s or --socket-name.\n\n The pathname of the Unix domain socket used for communication\n between the zdaemon command-line tool and a daemon-management\n process. The default is relative to the current directory in\n which zdaemon is started. You want to specify\n an absolute pathname here.\n\n This defaults to \"zdsock\", which is created in the directory\n in which zdrun is started.\n\ndaemon\n Command-line option: -d or --daemon.\n\n If this option is true, zdaemon runs in the background as a\n true daemon. It forks a child process which becomes the\n subprocess manager, while the parent exits (making the shell\n that started it believe it is done). The child process also\n does the following:\n\n - if the directory option is set, change into that directory\n\n - redirect stdin, stdout and stderr to /dev/null\n\n - call setsid() so it becomes a session leader\n\n - call umask() with specified value\n\n The default for this option is on by default. The\n command-line option therefore has no effect. To disable\n daemon mode, you must use a configuration file::\n\n \n program sleep 1\n daemon off\n \n\ndirectory\n Command-line option: -z or --directory.\n\n If the daemon option is true (default), this option can\n specify a directory into which zdrun.py changes as part of the\n \"daemonizing\". If the daemon option is false, this option is\n ignored.\n\nbackoff-limit\n Command-line option: -b or --backoff-limit.\n\n When the subprocess crashes, zdaemon inserts a one-second\n delay before it restarts it. When the subprocess crashes\n again right away, the delay is incremented by one second, and\n so on. What happens when the delay has reached the value of\n backoff-limit (in seconds), depends on the value of the\n forever option. If forever is false, zdaemon gives up at\n this point, and exits. An always-crashing subprocess will\n have been restarted exactly backoff-limit times in this case.\n If forever is true, zdaemon continues to attempt to restart\n the process, keeping the delay at backoff-limit seconds.\n\n If the subprocess stays up for more than backoff-limit\n seconds, the delay is reset to 1 second.\n\n This defaults to 10.\n\nforever\n Command-line option: -f or --forever.\n\n If this option is true, zdaemon will keep restarting a\n crashing subprocess forever. If it is false, it will give up\n after backoff-limit crashes in a row. See the description of\n backoff-limit for details.\n\n This is disabled by default.\n\nexit-codes\n Command-line option: -x or --exit-codes.\n\n This defaults to 0,2.\n\n If the subprocess exits with an exit status that is equal to\n one of the integers in this list, zdaemon will not restart\n it. The default list requires some explanation. Exit status\n 0 is considered a willful successful exit; the ZEO and Zope\n server processes use this exit status when they want to stop\n without being restarted. (Including in response to a\n SIGTERM.) Exit status 2 is typically issued for command line\n syntax errors; in this case, restarting the program will not\n help!\n\n NOTE: this mechanism overrides the backoff-limit and forever\n options; i.e. even if forever is true, a subprocess exit\n status code in this list makes zdaemon give up. To disable\n this, change the value to an empty list.\n\nstart-test-program\n A command that tests whether the program is up and running.\n The command should exit with a zero exit statis if the program\n is running and with a non-zero status otherwise.\n\nstart-timeout\n Command-line option: -T or --start-timeout.\n\n If the program takes more than ``start-timeout`` seconds to\n start, then an error is printed and the control script will\n exit with a non-zero exit status.\n\nstop-timeout\n This defaults to 300 seconds (5 minutes).\n\n When a stop command is issued, a SIGTERM signal is sent to the\n process. zdaemon waits for stop-timeout seconds for the\n process to gracefully exit. If the process doesn't exit in\n that time, a SIGKILL signal is sent.\n\nuser\n Command-line option: -u or --user.\n\n When zdaemon is started by root, this option specifies the\n user as who the the zdaemon process (and hence the daemon\n subprocess) will run. This can be a user name or a numeric\n user id. Both the user and the group are set from the\n corresponding password entry, using setuid() and setgid().\n This is done before zdaemon does anything else besides\n parsing its command line arguments.\n\n NOTE: when zdaemon is not started by root, specifying this\n option is an error. (XXX This may be a mistake.)\n\n XXX The zdaemon event log file may be opened *before*\n setuid() is called. Is this good or bad?\n\numask\n Command-line option: -m or --umask.\n\n When daemon mode is used, this option specifies the octal umask\n of the subprocess.\n\ndefault-to-interactive\n If this option is true, zdaemon enters interactive mode\n when it is invoked without a positional command argument. If\n it is false, you must use the -i or --interactive command line\n option to zdaemon to enter interactive mode.\n\n This is enabled by default.\n\nlogfile\n Command-line option: -l or --logfile.\n\n This option specifies a log file that is the default target of\n the \"logtail\" zdaemon command.\n\n NOTE: This is NOT the log file to which zdaemon writes its\n logging messages! That log file is specified by the\n section described below.\n\ntranscript\n Command-line option: -t or --transcript.\n\n The name of a file in which a transcript of all output from\n the command being run will be written to when daemonized.\n\n If not specified, output from the command will be discarded.\n\n This only takes effect when the \"daemon\" option is enabled.\n\nprompt\n The prompt shown by the controller program. The default must\n be provided by the application.\n\n(Note that a few other options are available to support old\nconfiguration files, but aren't needed any more and can generally be\nignored.)\n\nIn addition to the runner section, you can use an eventlog section\nthat specified one or more logfile subsections::\n\n \n \n path /var/log/foo/foo.log\n \n\n \n path STDOUT\n \n \n\nIn this example, log output is sent to a file and to standard out.\nLog output from zdaemon usually isn't very interesting but can be\nhandy for debugging.\n\n==========\nChange log\n==========\n\n4.3 (2018-10-30)\n================\n\n- Add support for Python 3.6 and 3.7.\n\n- Drop support for Python 3.3.\n\n\n4.2.0 (2016-12-07)\n==================\n\n- Add support for Python 3.5.\n\n- Drop support for Python 2.6 and 3.2.\n\n\n4.1.0 (2015-04-16)\n==================\n\n- Add ``--version`` command line option (fixes\n https://github.com/zopefoundation/zdaemon/issues/4).\n\n- ``kill`` now accepts signal names, not just numbers\n (https://github.com/zopefoundation/zdaemon/issues/11).\n\n- Restore ``logreopen`` as an alias for ``kill USR2`` (removed in version\n 3.0.0 due to lack of tests):\n https://github.com/zopefoundation/zdaemon/issues/10.\n\n- Make ``logreopen`` also reopen the transcript log:\n https://github.com/zopefoundation/zdaemon/issues/9.\n\n- Reopen event log on ``logreopen`` or ``reopen_transcript``:\n https://github.com/zopefoundation/zdaemon/issues/8.\n\n- Help message for ``reopen_transcript``\n (https://github.com/zopefoundation/zdaemon/issues/5).\n\n- Fix race condition where ``stop`` would be ignored if the daemon\n manager was waiting before respawning a crashed program.\n https://github.com/zopefoundation/zdaemon/issues/13.\n\n- Partially fix delayed deadlock when the transcript file runs into a\n full disk (https://github.com/zopefoundation/zdaemon/issues/1).\n\n- Fix test suite leaving stale processes behind\n (https://github.com/zopefoundation/zdaemon/issues/7).\n\n\n4.0.1 (2014-12-26)\n==================\n\n- Add support for PyPy. (PyPy3 is pending release of a fix for:\n https://bitbucket.org/pypy/pypy/issue/1946)\n\n- Add support for Python 3.4.\n\n- Add ``-t/--transcript`` command line option.\n\n- zdaemon can now be invoked as a module as in ``python -m zdaemon ...``\n\n4.0.0 (2013-05-10)\n==================\n\n- Add support for Python 3.2.\n\n4.0.0a1 (2013-02-15)\n====================\n\n- Add tox support and MANIFEST.in for proper releasing.\n\n- Add Python 3.3 support.\n\n- Drop Python 2.4 and 2.5 support.\n\n3.0.5 (2012-11-27)\n==================\n\n- Fixed: the status command didn't return a non-zero exit status when\n the program wasn't running. This made it impossible for other\n software (e.g. Puppet) to tell if a process was running.\n\n3.0.4 (2012-07-30)\n==================\n\n- Fixed: The start command exited with a zero exit status even when\n the program being started failed to start (or exited imediately).\n\n3.0.3 (2012-07-10)\n==================\n\n- Fixed: programs started with zdaemon couldn't, themselves, invoke\n zdaemon.\n\n3.0.2 (2012-07-10)\n==================\n\nFail :(\n\n3.0.1 (2012-06-08)\n==================\n\n- Fixed:\n\n The change in 2.0.6 to set a user's supplemental groups broke common\n configurations in which the effective user was set via ``su`` or\n ``sudo -u`` prior to invoking zdaemon.\n\n Now, zdaemon doesn't set groups or the effective user if the\n effective user is already set to the configured user.\n\n3.0.0 (2012-06-08)\n==================\n\n- Added an option, ``start-test-program`` to supply a test command to\n test whether the program managed by zdaemon is up and operational,\n rather than just running. When starting a program, the start\n command doesn't return until the test passes. You could, for\n example, use this to wait until a web server is actually accepting\n connections.\n\n- Added a ``start-timeout`` option to error if a program takes too long to\n start. This is especially useful in combination with the\n ``start-test-program`` option.\n\n- Added an option, stop-timeout, to control how long to wait\n for a graceful shutdown.\n\n Previously, this was controlled by backoff-limit, which didn't make\n much sense.\n\n- Several undocumented, untested, and presumably unused features were removed.\n\n2.0.6 (2012-06-07)\n==================\n\n- Fixed: When the ``user`` option was used to run as a particular\n user, supplemental groups weren't set to the user's supplemental\n groups.\n\n2.0.5 (2012-06-07)\n==================\n\n(Accidental release. Please ignore.)\n\n2.0.4 (2009-04-20)\n==================\n\n- Version 2.0.3 broke support for relative paths to the socket (``-s``\n option and ``socket-name`` parameter), now relative paths work again\n as in version 2.0.2.\n\n- Fixed change log format, made table of contents nicer.\n\n- Fixed author's email address.\n\n- Removed zpkg stuff.\n\n\n2.0.3 (2009-04-11)\n==================\n\n- Added support to bootstrap on Jython.\n\n- If the run directory does not exist it will be created. This allow to use\n `/var/run/mydaemon` as run directory when /var/run is a tmpfs (LP #318118).\n\nBugs Fixed\n----------\n\n- No longer uses a hard-coded file name (/tmp/demo.zdsock) in unit tests.\n This lets you run the tests on Python 2.4 and 2.5 simultaneously without\n spurious errors.\n\n- make -h work again for both runner and control scripts.\n Help is now taken from the __doc__ of the options class users by\n the zdaemon script being run.\n\n2.0.2 (2008-04-05)\n==================\n\nBugs Fixed\n----------\n\n- Fixed backwards incompatible change in handling of environment option.\n\n2.0.1 (2007-10-31)\n==================\n\nBugs Fixed\n----------\n\n- Fixed test renormalizer that did not work in certain cases where the\n environment was complex.\n\n2.0.0 (2007-07-19)\n==================\n\n- Final release for 2.0.0.\n\n2.0a6 (2007-01-11)\n==================\n\nBugs Fixed\n----------\n\n- When the user option was used, it only affected running the daemon.\n\n2.0a3, 2.0a4, 2.0a5 (2007-01-10)\n================================\n\nBugs Fixed\n----------\n\n- The new (2.0) mechanism used by zdaemon to start the daemon manager\n broke some applications that extended zdaemon.\n\n- Added extra checks to deal with programs that extend zdaemon\n and copy the schema and thus don't see updates to the ZConfig schema.\n\n2.0a2 (2007-01-10)\n==================\n\nNew Features\n------------\n\n- Added support for setting environment variables in the configuration\n file. This is useful when zdaemon is used to run programs that need\n environment variables set (e.g. LD_LIBRARY_PATH).\n\n- Added a command to rotate the transcript log.\n\n2.0a1 (2006-12-21)\n==================\n\nBugs Fixed\n----------\n\n- In non-daemon mode, start hung, producing annoying dots\n when the program exited.\n\n- The start command hung producing annoying dots if the daemon failed\n to start.\n\n- foreground and start had different semantics because one used\n os.system and another used os.spawn\n\nNew Features\n------------\n\n- Documentation\n\n- Command-line arguments can now be supplied to the start and\n foreground (fg) commands\n\n- zdctl now invokes itself to run zdrun. This means that it's\n no-longer necessary to generate a separate zdrun script. This\n especially when the magic techniques to find and run zdrun using\n directory sniffing fail to set the path correctly.\n\n- The daemon mode is now enabled by default. To get non-daemon mode,\n you have to use a configuration file and set daemon to off\n there. The old -d option is kept for backward compatibility, but is\n a no-op.\n\n1.4a1 (2005-11-21)\n==================\n\n- Fixed a bug in the distribution setup file.\n\n1.4a1 (2005-11-05)\n==================\n\n- First semi-formal release.\n\nAfter some unknown release(???)\n===============================\n\n- Made 'zdaemon.zdoptions' not fail for --help when __main__.__doc__\n is None.\n\nAfter 1.1\n=========\n\n- Updated test 'testRunIgnoresParentSignals':\n\n o Use 'mkdtemp' to create a temporary directory to hold the test socket\n rather than creating the test socket in the test directory.\n Hopefully this will be more robust. Sometimes the test directory\n has a path so long that the test socket can't be created.\n\n o Changed management of 'donothing.sh'. This script is now created by\n the test in the temporarily directory with the necessary\n permissions. This is to avoids possible mangling of permissions\n leading to spurious test failures. It also avoids management of a\n file in the source tree, which is a bonus.\n\n- Rearranged source tree to conform to more usual zpkg-based layout:\n\n o Python package lives under 'src'.\n\n o Dependencies added to 'src' as 'svn:externals'.\n\n o Unit tests can now be run from a checkout.\n\n- Made umask-based test failures due to running as root emit a more\n forceful warning.\n\n1.1 (2005-06-09)\n================\n\n- SVN tag: svn://svn.zope.org/repos/main/zdaemon/tags/zdaemon-1.1\n\n- Tagged to make better 'svn:externals' linkage possible.\n\nTo-Dos\n======\n\nMore docs:\n\n- Document/demonstrate some important features, such as:\n\n - working directory\n\nBugs:\n\n- help command", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/zopefoundation/zdaemon", "keywords": "", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "zdaemon", "package_url": "https://pypi.org/project/zdaemon/", "platform": "", "project_url": "https://pypi.org/project/zdaemon/", "project_urls": { "Homepage": "https://github.com/zopefoundation/zdaemon" }, "release_url": "https://pypi.org/project/zdaemon/4.3/", "requires_dist": null, "requires_python": "", "summary": "Daemon process control library and tools for Unix-based systems", "version": "4.3" }, "last_serial": 4430746, "releases": { "2.0.0": [ { "comment_text": "", "digests": { "md5": "e14500c1f7c947256a824cb09a5cbb0f", "sha256": "0432b0ce94a0d1d6c332dde88264284cff61a6145e934900459a4be03ec22b9e" }, "downloads": -1, "filename": "zdaemon-2.0.0.tar.gz", "has_sig": false, "md5_digest": "e14500c1f7c947256a824cb09a5cbb0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41581, "upload_time": "2007-07-20T17:00:10", "url": "https://files.pythonhosted.org/packages/7b/70/a1124404cbe6d7bedaa8247b7cc291254418ab06aa2a36616be9baa71aa5/zdaemon-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "1828171835100f74a2f7428c96cd9c66", "sha256": "955b0640b86897a2bd21775f92d3b6796c9f77358bd81eb2ff6c65f3d8a1faea" }, "downloads": -1, "filename": "zdaemon-2.0.1.tar.gz", "has_sig": false, "md5_digest": "1828171835100f74a2f7428c96cd9c66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42719, "upload_time": "2007-10-31T04:46:03", "url": "https://files.pythonhosted.org/packages/65/f4/85c97c0c83c5e2ce6f2e21db338c8e3f7c031192dc6cb8b119412061beda/zdaemon-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "4a20a63bada54e4e46d3f3bcec83ce00", "sha256": "af75fb71b0a1936aa1016b011cacdd79fa7851046b10a7d707b9b8cfc8bf9a00" }, "downloads": -1, "filename": "zdaemon-2.0.2-py2.4.egg", "has_sig": false, "md5_digest": "4a20a63bada54e4e46d3f3bcec83ce00", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 82982, "upload_time": "2008-04-05T17:43:54", "url": "https://files.pythonhosted.org/packages/e7/51/331069cf88f344d7c6d39d2cefff32f59ca7036d04a97145fe594fccb9db/zdaemon-2.0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "edbc188f9fdb3ff866081db1a8c22e00", "sha256": "5cdf181a268e7cc3987f9b79d44e78b80127cc1bab5fa129405ccdb8de1c31c1" }, "downloads": -1, "filename": "zdaemon-2.0.2.tar.gz", "has_sig": false, "md5_digest": "edbc188f9fdb3ff866081db1a8c22e00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40607, "upload_time": "2008-04-05T17:43:53", "url": "https://files.pythonhosted.org/packages/81/61/eeea17e71250bd325f9fd965fdacbaf844c23d53343383622d6632d83d5c/zdaemon-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "9d5796402400462762c8371c49da44fa", "sha256": "85564816681f42428cc906d4a956f20f247935e2890d909ee0cbb2422a6a7000" }, "downloads": -1, "filename": "zdaemon-2.0.3.tar.gz", "has_sig": false, "md5_digest": "9d5796402400462762c8371c49da44fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45324, "upload_time": "2009-04-11T19:49:25", "url": "https://files.pythonhosted.org/packages/a9/5d/9ae61ce79349d632aa2b4ab6f74b37c40e271e95b8d2196d01f0ff1d1cec/zdaemon-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "7d358297df480abe93b6565fc0213c34", "sha256": "37d9ab90128223353e48d1f5684fb2385a9b5b16539f73aeefe7183bdecc59ab" }, "downloads": -1, "filename": "zdaemon-2.0.4.tar.gz", "has_sig": false, "md5_digest": "7d358297df480abe93b6565fc0213c34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42422, "upload_time": "2009-04-20T09:44:03", "url": "https://files.pythonhosted.org/packages/47/98/d543e224c52fed63575008013be0270af92cf7d42a330162f8167c576b15/zdaemon-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "5cfdfa4798d3d883635d78433e9e60b3", "sha256": "007a4ad0b4daa4525c51b11bab5fc2a4f14450eee8efe815c4dfe40a94272c1e" }, "downloads": -1, "filename": "zdaemon-2.0.5.tar.gz", "has_sig": false, "md5_digest": "5cfdfa4798d3d883635d78433e9e60b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50374, "upload_time": "2012-06-07T21:58:33", "url": "https://files.pythonhosted.org/packages/cc/aa/0adca9b51578640e4e287fa6d158f05afa74efe3b83cc178b5169fdbaf7d/zdaemon-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "f81af3d46141521d6a568c91cb3971e9", "sha256": "96358897f8a6e4abe14992d76d0223739a39b1df121acdb58a1f856e6d3d2129" }, "downloads": -1, "filename": "zdaemon-2.0.6.tar.gz", "has_sig": false, "md5_digest": "f81af3d46141521d6a568c91cb3971e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47628, "upload_time": "2012-06-07T22:03:43", "url": "https://files.pythonhosted.org/packages/52/28/bc7c28f5cf1de7e22eaa6c3e3938cb00025897c5cff6acfe4758517859b5/zdaemon-2.0.6.tar.gz" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "291a875f82e812110557eb6704af8afe", "sha256": "28a96152a62823052359bac7d01a375029146d31310877408bd0a91624411eb8" }, "downloads": -1, "filename": "zdaemon-2.0.7.tar.gz", "has_sig": false, "md5_digest": "291a875f82e812110557eb6704af8afe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48037, "upload_time": "2012-06-08T19:45:42", "url": "https://files.pythonhosted.org/packages/b6/63/09aba72e15d7eadb329e976b9b911626491093647197de6e098f2d1cd14e/zdaemon-2.0.7.tar.gz" } ], "2.0a2": [ { "comment_text": "", "digests": { "md5": "bc31a70544b8200d580d81cff683bad6", "sha256": "d268d0e274e90b344d6632b1bda52fbd44d0506098f72fdc6500dcc45e50212a" }, "downloads": -1, "filename": "zdaemon-2.0a2.tar.gz", "has_sig": false, "md5_digest": "bc31a70544b8200d580d81cff683bad6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42034, "upload_time": "2007-01-10T11:47:35", "url": "https://files.pythonhosted.org/packages/a0/96/c4e945f2594fceba3a747fc5d872c4d52ff3237c68bc6c6c36b823c353af/zdaemon-2.0a2.tar.gz" } ], "2.0a6": [ { "comment_text": "", "digests": { "md5": "5ca480f7561147254c674f967112ac3f", "sha256": "07b5aa83f98ce9ac49e45fa9cf77d0df9a396ad32d510c905b793f99ac6b1712" }, "downloads": -1, "filename": "zdaemon-2.0a6.tar.gz", "has_sig": false, "md5_digest": "5ca480f7561147254c674f967112ac3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42582, "upload_time": "2007-01-17T22:07:52", "url": "https://files.pythonhosted.org/packages/22/e4/9badd386089ac92fcf52e2143c64e719c091038cb41eb2babbab82e07e2a/zdaemon-2.0a6.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "5404cc46390beb5c6ce041a0f40d4fce", "sha256": "0033ca81c1840f672d817fa20a262c8b883a05d7ef4590a55737dcfe48e7b2a4" }, "downloads": -1, "filename": "zdaemon-3.0.0.tar.gz", "has_sig": false, "md5_digest": "5404cc46390beb5c6ce041a0f40d4fce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50260, "upload_time": "2012-06-08T16:04:54", "url": "https://files.pythonhosted.org/packages/d3/60/8a46d73a4080fef64641237b1ce57b2dcd3267706ec87348cece9b090ec6/zdaemon-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "d5918c0e782a30a551dd0b46f55fe85e", "sha256": "8e2984045aa4cc6cdd62bbb77c73ba6ca7edba6eabdaf0ce262a990d1587c427" }, "downloads": -1, "filename": "zdaemon-3.0.1.tar.gz", "has_sig": false, "md5_digest": "d5918c0e782a30a551dd0b46f55fe85e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50518, "upload_time": "2012-06-08T19:56:55", "url": "https://files.pythonhosted.org/packages/47/ae/679a12925779e6beba5cd8728b216b18639896129d2c4546ba94d57acf8d/zdaemon-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "77b7878f9591df73d35b9a977165fe4a", "sha256": "26375f957b363db2f3ad8f7dd1063080de234fcd9c61c3705e74dca4f00390d5" }, "downloads": -1, "filename": "zdaemon-3.0.2.tar.gz", "has_sig": false, "md5_digest": "77b7878f9591df73d35b9a977165fe4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50591, "upload_time": "2012-07-10T18:48:04", "url": "https://files.pythonhosted.org/packages/7b/0c/22aea2fa482c8ea09ed482edce41e36a52878a60ba908d6999aee6a9a237/zdaemon-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "ce63763052c4745d7b52abf66277d168", "sha256": "11ab2c0df4c00b8c6b8fc22e182c393628f2642ec980d6d6d5709820a3ddcd6b" }, "downloads": -1, "filename": "zdaemon-3.0.3.tar.gz", "has_sig": false, "md5_digest": "ce63763052c4745d7b52abf66277d168", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50948, "upload_time": "2012-07-10T20:15:45", "url": "https://files.pythonhosted.org/packages/80/41/a7cda1c94f941d8358dfb8ae91939e32227e4030c3a96ae9b48eaa8fa7bc/zdaemon-3.0.3.tar.gz" } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "5ae9b4017f93ea05116e640d5e08f71a", "sha256": "12061192cc70425f860ba525320dfddab8cd73a4b17e295045fe4479050ab246" }, "downloads": -1, "filename": "zdaemon-3.0.4.tar.gz", "has_sig": false, "md5_digest": "5ae9b4017f93ea05116e640d5e08f71a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51133, "upload_time": "2012-07-30T19:49:30", "url": "https://files.pythonhosted.org/packages/f0/98/d307525f065c48ac935e5bb4939ab0434b4dac00c0fe702d973a2c894dc7/zdaemon-3.0.4.tar.gz" } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "975f770544bb4352c5cf32fec22e63c9", "sha256": "c82d06ab77f7f98e7c1da4f7914dc6465adc30075210d7528b1715b19a885559" }, "downloads": -1, "filename": "zdaemon-3.0.5.tar.gz", "has_sig": false, "md5_digest": "975f770544bb4352c5cf32fec22e63c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51297, "upload_time": "2012-11-27T22:38:49", "url": "https://files.pythonhosted.org/packages/6e/3d/f2211e38147b14d903ae711b7b17e0debbaa4ed7de6f828fb2bef75723ff/zdaemon-3.0.5.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "4056e2ea35855695ed15389d9c168b92", "sha256": "82d7eaa4d831ff1ecdcffcb274f3457e095c0cc86e630bc72009a863c341ab9f" }, "downloads": -1, "filename": "zdaemon-4.0.0.tar.gz", "has_sig": false, "md5_digest": "4056e2ea35855695ed15389d9c168b92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55486, "upload_time": "2013-05-10T20:04:46", "url": "https://files.pythonhosted.org/packages/86/34/27021a9479db8067036ce76cd46e27a79cafb6fc35f4525bb93e32053fcf/zdaemon-4.0.0.tar.gz" } ], "4.0.0a1": [ { "comment_text": "", "digests": { "md5": "56799a919bc073bce5289b773ee64595", "sha256": "c01a5fb2d438dcffc5e42aab25fe571c13eb7fbc4b0e3170b77f03aefcafda98" }, "downloads": -1, "filename": "zdaemon-4.0.0a1.zip", "has_sig": false, "md5_digest": "56799a919bc073bce5289b773ee64595", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69115, "upload_time": "2013-02-15T13:40:53", "url": "https://files.pythonhosted.org/packages/c8/1d/59fd41bb5bc4e6b839bad64b3bc4ddca76e872a12b81f27ae67738da7767/zdaemon-4.0.0a1.zip" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "caaebf77ba5e9cf1d1d91bb72a55a1af", "sha256": "baff4d7957b5d614e572b8bd3ba3357fc8fe0ffb68fad887d9a93011879d1b0b" }, "downloads": -1, "filename": "zdaemon-4.0.1.tar.gz", "has_sig": false, "md5_digest": "caaebf77ba5e9cf1d1d91bb72a55a1af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57835, "upload_time": "2014-12-26T14:08:19", "url": "https://files.pythonhosted.org/packages/b9/91/382dbe92c42ff9099527524847a64b822829e2b37e0c2186da65cde5dee6/zdaemon-4.0.1.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "20402a741919ae1e444e1d79e7fc1f11", "sha256": "185b374ab49f928bbcdb7572c5cd7c3a9e75324a005ce73dfee4208ce10ab1f9" }, "downloads": -1, "filename": "zdaemon-4.1.0.zip", "has_sig": false, "md5_digest": "20402a741919ae1e444e1d79e7fc1f11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74287, "upload_time": "2015-04-16T05:29:27", "url": "https://files.pythonhosted.org/packages/cd/db/20dd050d4486cbaeced4f51a381b7f057632c52c3e160be29d9139f6b7cb/zdaemon-4.1.0.zip" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "dec26fbaef46812c998e468bd7b0ed10", "sha256": "ee7b118069e7e6a5ea93df8aabaa0b6549dff4414fda259d0efc036c5c73e1bf" }, "downloads": -1, "filename": "zdaemon-4.2.0.tar.gz", "has_sig": false, "md5_digest": "dec26fbaef46812c998e468bd7b0ed10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56874, "upload_time": "2016-12-07T07:14:25", "url": "https://files.pythonhosted.org/packages/1c/9a/afe605c1b1f42e211ebd7173536de5046697be6f21824817afffa63a2524/zdaemon-4.2.0.tar.gz" } ], "4.3": [ { "comment_text": "", "digests": { "md5": "3965ba14f7beabe7a0d09fc836d69143", "sha256": "f249fc6885646d165d7d6b228a7b71f5170fc7117de9e0688271f8fb97840f72" }, "downloads": -1, "filename": "zdaemon-4.3.tar.gz", "has_sig": false, "md5_digest": "3965ba14f7beabe7a0d09fc836d69143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60661, "upload_time": "2018-10-30T09:11:41", "url": "https://files.pythonhosted.org/packages/cc/ee/da4e7cd4bc5127775de03c41e02b7a95ae3cafea352b28e0701c9a3369ab/zdaemon-4.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3965ba14f7beabe7a0d09fc836d69143", "sha256": "f249fc6885646d165d7d6b228a7b71f5170fc7117de9e0688271f8fb97840f72" }, "downloads": -1, "filename": "zdaemon-4.3.tar.gz", "has_sig": false, "md5_digest": "3965ba14f7beabe7a0d09fc836d69143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60661, "upload_time": "2018-10-30T09:11:41", "url": "https://files.pythonhosted.org/packages/cc/ee/da4e7cd4bc5127775de03c41e02b7a95ae3cafea352b28e0701c9a3369ab/zdaemon-4.3.tar.gz" } ] }