{ "info": { "author": "Birdhouse", "author_email": "wps-dev@dkrz.de", "bugtrack_url": null, "classifiers": [ "Framework :: Buildout", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "**********************************\nbirdhousebuilder.recipe.supervisor\n**********************************\n\n.. image:: https://travis-ci.org/bird-house/birdhousebuilder.recipe.supervisor.svg?branch=master\n :target: https://travis-ci.org/bird-house/birdhousebuilder.recipe.supervisor\n :alt: Travis Build\n\n.. image:: https://img.shields.io/github/license/bird-house/birdhousebuilder.recipe.supervisor.svg\n :target: https://github.com/bird-house/birdhousebuilder.recipe.supervisor/blob/master/LICENSE.txt\n :alt: GitHub license\n\n.. image:: https://badges.gitter.im/bird-house/birdhouse.svg\n :target: https://gitter.im/bird-house/birdhouse?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n :alt: Join the chat at https://gitter.im/bird-house/birdhouse\n\nIntroduction\n************\n\n``birdhousebuilder.recipe.supervisor`` is a `Buildout`_ recipe to configure `Supervisor`_ services with `Anaconda`_.\nThis recipe is used by the `Birdhouse`_ project.\n\n.. _`Buildout`: http://buildout.org/\n.. _`Anaconda`: http://continuum.io/\n.. _`Supervisor`: http://supervisord.org/\n.. _`Birdhouse`: http://bird-house.github.io/\n\n\nUsage\n*****\n\nThe recipe requires that Anaconda is already installed. You can use the buildout option ``anaconda-home`` to set the prefix for the anaconda installation. Otherwise the environment variable ``CONDA_PREFIX`` (variable is set when activating a conda environment) is used as conda prefix.\n\nThe recipe will install the ``supervisor`` package from a conda channel in a conda environment defined by ``CONDA_PREFIX``. It deploys a supervisor configuration for a given service. The intallation folder is given by the ``prefix`` buildout option. The configuration will be deployed in the birdhouse enviroment ``${prefix}/etc/supervisor/conf.d/myapp.conf``. Supervisor can be started with ``${prefix}/etc/init.d/supervisord start``.\n\nThe recipe depends on ``birdhousebuilder.recipe.conda`` and ``zc.recipe.deployment``.\n\nSupported options\n=================\n\nThis recipe supports the following options:\n\n**anaconda-home**\n Buildout option pointing to the root folder of the Anaconda installation. Default: ``$HOME/anaconda``.\n\nBuildout options for ``supervisord``:\n\n**supervisor-port**\n Buildout option to set the supervisor port. Default is 9001.\n\n**supervisor-host**\n Buildout option to set supervisor host. Default is 127.0.0.1.\n\n**supervisor-username**\n Buildout option to set username for http monitor access. Default: None\n\n**supervisor-password**\n Buildout option to set password for http monitor access. Default: None\n\n**supervisor-use-monitor**\n Buildout option wheather to enable http monitor interface. Default: true\n\n**supervisor-loglevel**\n Buildout option for supervisor log level. Default: info\n\nBuildout part options for the program section:\n\n**prefix**\n Deployment option to set the prefix of the installation folder. Default: ``/``\n\n**user**\n Deployment option to set the run user.\n\n**etc-user**\n Deployment option to set the user of the ``/etc`` directory. Default: ``root``\n\n**program**\n The name of the supervisor service.\n\n**command**\n The command to start the service.\n\n**directory**\n The directory where the command is started.\n\n**priority**\n The priority to start service (optional). Default is 999.\n\n**autostart**\n Start service automatically (optional). Default is ``true``.\n\n**autorestart**\n Restart service automatically (optional). Default is ``false``.\n\n**stdout-logfile**\n logfile for stdout (optional). Default is ``${prefix}/var/log/supervisor/${program}.log``\n\n**stderr-logfile**\n logfile for stderr (optional). Default is ``${prefix}/var/log/supervisor/${program}.log``\n\n**startsecs**\n Seconds the service needs to be online before marked as ``started`` (optional). Default is 1.\n\n**stopwaitsecs**\n Seconds to wait before killing service (optional). Default 10.\n\n**killasgroup**\n Kill also child processes (optional). Default ``false``.\n\n.. note::\n\n The ``DAEMON_OPTS`` environment variable can be used to set additional start parameters for supervisord.\n For example ``DAEMON_OPTS=-n`` to start supervisord in foreground.\n\nFor supervisor configuration details see the `documentation `_.\n\nExample usage\n=============\n\nThe following example ``buildout.cfg`` installs a Supervisor configuration for ``myapp`` web application::\n\n [buildout]\n parts = myapp\n\n anaconda-home = /opt/anaconda\n supervisor-host = 127.0.0.1\n supervisor-port = 9001\n supervisor-use-monitor = true\n\n [myapp]\n recipe = birdhousebuilder.recipe.supervisor\n prefix = /\n user = www-data\n program = myapp\n command = ${buildout:bin-directory}/gunicorn -b unix:///tmp/myapp.socket myapp:app\n directory = /tmp\n\nAuthors\n*******\n\nCarsten Ehbrecht ehbrecht at dkrz.de\n\nChanges\n*******\n\n0.4.0 (2018-03-20)\n==================\n\n* cleaned up buildout.cfg (#5).\n\n0.3.5 (2016-12-12)\n==================\n\n* pep8.\n* update MANIFEST.in: ignore temp files.\n\n0.3.4 (2016-07-26)\n==================\n\n* fixed zc.recipe.egg import.\n\n0.3.3 (2016-07-05)\n==================\n\n* sets env: USER, LOGNAME, HOME\n\n0.3.2 (2016-07-04)\n==================\n\n* fixed bool_options.\n\n0.3.1 (2016-07-04)\n==================\n\n* added skip-user option.\n\n0.3.0 (2016-06-30)\n==================\n\n* updated buildout and doctests.\n* enabled travis.\n* replaced conda.makedirs by os.makedirs.\n* using zc.recipe.deployment.\n* using run-directory.\n\n0.2.8 (2015-12-22)\n==================\n\n* fixed use-monitor option.\n\n0.2.7 (2015-12-22)\n==================\n\n* cleaned up configuration files.\n* added more supervisord options: host, port, username, password, use_monitor.\n\n0.2.6 (2015-12-07)\n==================\n\n* remove supervisor config files after uninstall.\n\n0.2.5 (2015-09-21)\n==================\n\n* added DAEMON_OPTS env variable to set additional parameters when starting supervisord.\n\n0.2.4 (2015-07-15)\n==================\n\n* added ``stopsignal`` option.\n* fixed ``stopasgroup`` option.\n\n0.2.2 (2015-06-25)\n==================\n\n* cleaned up templates.\n* added user and chown option.\n\n0.2.1 (2015-05-18)\n==================\n\n* added more options for program configuration.\n* setting default logfile name for service.\n\n0.2.0 (2015-02-24)\n==================\n\n* installing in conda enviroment ``birdhouse``.\n* using ``$ANACONDA_HOME`` environment variable.\n* separation of anaconda-home and installation prefix.\n\n0.1.5 (2015-01-22)\n==================\n\n* bugfix: var/log/supervisor directory is now created.\n\n0.1.4 (2014-12-06)\n==================\n\n* Don't update conda on buildout update.\n\n0.1.3 (2014-07-31)\n==================\n\n* Updated documentation.\n\n0.1.2 (2014-07-24)\n==================\n\n* Removed workaround \"kill nginx\".\n\n0.1.1 (2014-07-22)\n==================\n\n* Not using supervisor-host option.\n\n0.1.0 (2014-07-10)\n==================\n\n* Initial Release.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bird-house/birdhousebuilder.recipe.supervisor.git", "keywords": "buildout recipe supervisor birdhouse conda anaconda", "license": "Apache License 2", "maintainer": "", "maintainer_email": "", "name": "birdhousebuilder.recipe.supervisor", "package_url": "https://pypi.org/project/birdhousebuilder.recipe.supervisor/", "platform": "", "project_url": "https://pypi.org/project/birdhousebuilder.recipe.supervisor/", "project_urls": { "Homepage": "https://github.com/bird-house/birdhousebuilder.recipe.supervisor.git" }, "release_url": "https://pypi.org/project/birdhousebuilder.recipe.supervisor/0.4.0/", "requires_dist": null, "requires_python": "", "summary": "A Buildout recipe to install and configure supervisor for Anaconda.", "version": "0.4.0" }, "last_serial": 3687927, "releases": { "0.1.3": [ { "comment_text": "", "digests": { "md5": "1cd333d4432918413a9d7753b0b57d96", "sha256": "7a2ca531224906ceb7ae43b99080f720432d6ba72f5727fe28753dc1e25c42ba" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.1.3.tar.gz", "has_sig": false, "md5_digest": "1cd333d4432918413a9d7753b0b57d96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7603, "upload_time": "2014-07-31T18:10:54", "url": "https://files.pythonhosted.org/packages/d8/08/b945d57d5024afe40b85fc183903f283cde512baf3999196652bc1f13688/birdhousebuilder.recipe.supervisor-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "7157d465bb42a241191d65d104512083", "sha256": "8c3b93a9ec1eb361960adc99fa7457c83aefc36b1cb81c4b8c39d238f1c9940d" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.1.4.tar.gz", "has_sig": false, "md5_digest": "7157d465bb42a241191d65d104512083", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7443, "upload_time": "2014-12-06T14:39:34", "url": "https://files.pythonhosted.org/packages/f4/e8/194b3cdbfba1a272d7cbd6ce1a8233cd25915a892ba56f046ed94497b318/birdhousebuilder.recipe.supervisor-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "ca3d5bb5a7b09bb462db2bd56504f241", "sha256": "d50b09778cdcd51ad03d328fc8b8c43b44c5003d54eaa9403b8c2c58f9a3d3ae" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.1.5.tar.gz", "has_sig": false, "md5_digest": "ca3d5bb5a7b09bb462db2bd56504f241", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8112, "upload_time": "2015-01-22T16:38:47", "url": "https://files.pythonhosted.org/packages/5d/49/cfe58150582201a85234f17b0ad8ccc7ca552dc20e4814fa1350515ce1f6/birdhousebuilder.recipe.supervisor-0.1.5.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "4421faaa6fe70c8ef6d8e8a88920502a", "sha256": "17e1d5973c67cdbf571d3533c9e275c0e5d2901bfea42415b6947e9f8b666c21" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.0.tar.gz", "has_sig": false, "md5_digest": "4421faaa6fe70c8ef6d8e8a88920502a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9075, "upload_time": "2015-02-24T16:34:25", "url": "https://files.pythonhosted.org/packages/f2/f6/26a37e8123b23ba7c0ebdd023b00119b84139b03b2158f4a3aa88b04ccaf/birdhousebuilder.recipe.supervisor-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "38b04cfefb6dc2c1ef8ffcfccaaff4c5", "sha256": "363b354912c057b56452c1519a52e72ea8664d29983a0f102a6c36286be573f4" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.1.tar.gz", "has_sig": false, "md5_digest": "38b04cfefb6dc2c1ef8ffcfccaaff4c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10015, "upload_time": "2015-05-18T11:38:41", "url": "https://files.pythonhosted.org/packages/fa/97/4b1414912a5b82aca2f072826d16c08d6997ceb299366e17736a7dc18ec5/birdhousebuilder.recipe.supervisor-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4079ba6692d063bf3177b0d42e3e68f1", "sha256": "6b16c9ba892c188d2bced97162a3c9087196dcbf9111aaeb44ba2452af6751f3" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4079ba6692d063bf3177b0d42e3e68f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10196, "upload_time": "2015-06-25T13:09:47", "url": "https://files.pythonhosted.org/packages/2d/9f/7a6435dbbd9cb2218831381f9deed42e37fd314d083b068235e8f9fb8428/birdhousebuilder.recipe.supervisor-0.2.2.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "c973fd342208ff684b508641204d1d7d", "sha256": "602ae5f748a1f3eb42f347e997a360ac76512f110088a68d518b0e197f1686bc" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.4.tar.gz", "has_sig": false, "md5_digest": "c973fd342208ff684b508641204d1d7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10118, "upload_time": "2015-07-15T12:55:16", "url": "https://files.pythonhosted.org/packages/b1/3d/e89fb02eadf1c540592e1bc6000516ef0c5bfcf033f61336d278cfbeef5c/birdhousebuilder.recipe.supervisor-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "01d2cbabb7d0b807f5094eb061829afc", "sha256": "35027c1a45fbcf2a10f9b913c3d4cc849934ee34b88e4859af41ee93ad3e0386" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.5.tar.gz", "has_sig": false, "md5_digest": "01d2cbabb7d0b807f5094eb061829afc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10345, "upload_time": "2015-09-21T14:20:21", "url": "https://files.pythonhosted.org/packages/cc/73/74194cf2a812e401909073bc12293a8e271a3df0ece47f933b2a35cb21c5/birdhousebuilder.recipe.supervisor-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "fd63911737531e85a3d54a692b95cc7c", "sha256": "aec444839c01e31b82d3967827f36cc9e3ad8f9381e7ccb39681adf3b9a21dfc" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.6.tar.gz", "has_sig": false, "md5_digest": "fd63911737531e85a3d54a692b95cc7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10445, "upload_time": "2015-12-07T15:50:12", "url": "https://files.pythonhosted.org/packages/dd/92/d8caa4a6f7bf88f358f3f6cc777d1aec4e4e75d14640918014bfe403da69/birdhousebuilder.recipe.supervisor-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "ca2f48aee0ae3764ff37c4e1e489131d", "sha256": "44472c5f193d6d442f5b6af07b3b7f315cc3467a69601ba4266a2c8708e420a8" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.7-py2-none-any.whl", "has_sig": false, "md5_digest": "ca2f48aee0ae3764ff37c4e1e489131d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12548, "upload_time": "2015-12-22T14:09:45", "url": "https://files.pythonhosted.org/packages/dc/c3/149566a8009f46c7514d3b7514cc3bec558388905511cc12bfef89f28a8c/birdhousebuilder.recipe.supervisor-0.2.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26d12458c2fb7499c99225b959fc2403", "sha256": "3bcb733f43b34647716a665551b302bf6d7960daee5e431759211f1d155f1198" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.7.tar.gz", "has_sig": false, "md5_digest": "26d12458c2fb7499c99225b959fc2403", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10956, "upload_time": "2015-12-22T14:09:32", "url": "https://files.pythonhosted.org/packages/3a/7a/65b65cc951f849f21f41eb8e190488832f7d38b7fb94d63e7cb3030a76ca/birdhousebuilder.recipe.supervisor-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "b264690615321140022a070952a6cbd4", "sha256": "3402c37834795453c01aafeda1322c9cb9b666bf5fcff7ec440ff1636e4f1b60" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.8-py2-none-any.whl", "has_sig": false, "md5_digest": "b264690615321140022a070952a6cbd4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12622, "upload_time": "2015-12-22T14:44:30", "url": "https://files.pythonhosted.org/packages/ba/b4/5ff8dfffb3304c5c5ede844e6a2eda8c0837e60a71a0d280511366eb516c/birdhousebuilder.recipe.supervisor-0.2.8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ddd325b6c8a049c4f15fa82d89a475b0", "sha256": "80e792044aaf09c69ee5ed102f0f6bcaa878baeb77fff269c627e9181d735732" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.2.8.tar.gz", "has_sig": false, "md5_digest": "ddd325b6c8a049c4f15fa82d89a475b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11040, "upload_time": "2015-12-22T14:44:20", "url": "https://files.pythonhosted.org/packages/9e/6b/e1630074f4316b74bc91ed8a37b6298df2f00459b450fc38734ed8a4c700/birdhousebuilder.recipe.supervisor-0.2.8.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "0c8167047c49841ae774de20288b7cd9", "sha256": "9b735816062ea9ac57a199c28c35437f4f1f7bac723153860074257848f875a3" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.0.tar.gz", "has_sig": false, "md5_digest": "0c8167047c49841ae774de20288b7cd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11752, "upload_time": "2016-06-30T14:28:23", "url": "https://files.pythonhosted.org/packages/43/6c/9e05fb238b4f2bbf6bd05a2f23c05014626be33ddf38412e84ebc3a924d5/birdhousebuilder.recipe.supervisor-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "69bed5be7b5b03224a7366fe28023ff2", "sha256": "1c56fd35f033dc6727bc3d34ef57a5fc4cfad8049ce7dcfa02cbf1cdafebba2b" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.1.tar.gz", "has_sig": false, "md5_digest": "69bed5be7b5b03224a7366fe28023ff2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11878, "upload_time": "2016-07-04T14:24:07", "url": "https://files.pythonhosted.org/packages/6a/26/509632208947f22e9318347138dad2ad65eabccd144909cb0cac57b1e585/birdhousebuilder.recipe.supervisor-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "31c13cd691af2cf43e0529ac2a9fa48f", "sha256": "4ee9bb8e36e07b1b52299c03654fd52df66e8bbb424ae59b9723b1b66eaaecac" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.2.tar.gz", "has_sig": false, "md5_digest": "31c13cd691af2cf43e0529ac2a9fa48f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11943, "upload_time": "2016-07-04T15:01:56", "url": "https://files.pythonhosted.org/packages/f1/cc/2824603a97fc98f6f71505a70f2404a9ccc22f6ff5fd97149a12898a4120/birdhousebuilder.recipe.supervisor-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "1064a4c07eedbb44815323de8b75291b", "sha256": "5c133d9c69ef37b1c197c6fffc53dcceb0eb8d6fddd0fcdf6125ed49e73fbe58" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.3.tar.gz", "has_sig": false, "md5_digest": "1064a4c07eedbb44815323de8b75291b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12106, "upload_time": "2016-07-05T09:25:23", "url": "https://files.pythonhosted.org/packages/dd/50/ffaeb15b688c443568e84e2f24f326d1e057e8326954dc6bdc74e594f195/birdhousebuilder.recipe.supervisor-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "8212dc29c279c4292ec5ea2c1632084b", "sha256": "69a495930ae787876548470007b59ea6f41bc1ceece8ee4b078418a62486282a" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.4.tar.gz", "has_sig": false, "md5_digest": "8212dc29c279c4292ec5ea2c1632084b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12164, "upload_time": "2016-07-26T15:38:45", "url": "https://files.pythonhosted.org/packages/5c/32/b0ec9cceb192c6d6c26476ec2f822f9b2537d58dd1fdc981f3d50b278c54/birdhousebuilder.recipe.supervisor-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "62110c90da39f6239a10446ed71163ea", "sha256": "77204ca65ec2a54ced0dd2de90b46fbe5af10a9f7710bc366a8ec8367f305d80" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.5.tar.gz", "has_sig": false, "md5_digest": "62110c90da39f6239a10446ed71163ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12270, "upload_time": "2016-12-12T17:18:49", "url": "https://files.pythonhosted.org/packages/32/47/fbdafffd8d89adaf10afd9579f8f4a5e63a9c912f1848c7ebd187b55c9f9/birdhousebuilder.recipe.supervisor-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "a3358f455ccb8a141fe6f2873da25ec8", "sha256": "9915f3bb4032c745d954bedca97768b86ac500d2810d48eeaecc63c94bf8ace4" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a3358f455ccb8a141fe6f2873da25ec8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14882, "upload_time": "2017-02-01T14:55:42", "url": "https://files.pythonhosted.org/packages/de/23/1a058055a49c3e42316bae506085d0a6d6eb7443426f9cd3d1a57271d77a/birdhousebuilder.recipe.supervisor-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca29b53265aa9f18c4808f2448f347b2", "sha256": "402ea061ff64c8161c5768524fe014e80a0b5027b67b05e143f97351d0c1035d" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.3.6.tar.gz", "has_sig": false, "md5_digest": "ca29b53265aa9f18c4808f2448f347b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12277, "upload_time": "2017-02-01T14:55:29", "url": "https://files.pythonhosted.org/packages/29/aa/9a807cd768b32a796e62e46c9ff677602bd8f392a87fabf5e164fbdc4e63/birdhousebuilder.recipe.supervisor-0.3.6.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "00515163ee5598c05c528484df75ca45", "sha256": "bb1d033a0a46097f284ee38931e334a6e50f29c1e3b6e69bd6750a44ecd185fa" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.4.0.tar.gz", "has_sig": false, "md5_digest": "00515163ee5598c05c528484df75ca45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15867, "upload_time": "2018-03-20T14:24:31", "url": "https://files.pythonhosted.org/packages/79/90/edeb6d6053f94f359498da08db8692944aa454bd10a5ebbc4820e5769e0e/birdhousebuilder.recipe.supervisor-0.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "00515163ee5598c05c528484df75ca45", "sha256": "bb1d033a0a46097f284ee38931e334a6e50f29c1e3b6e69bd6750a44ecd185fa" }, "downloads": -1, "filename": "birdhousebuilder.recipe.supervisor-0.4.0.tar.gz", "has_sig": false, "md5_digest": "00515163ee5598c05c528484df75ca45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15867, "upload_time": "2018-03-20T14:24:31", "url": "https://files.pythonhosted.org/packages/79/90/edeb6d6053f94f359498da08db8692944aa454bd10a5ebbc4820e5769e0e/birdhousebuilder.recipe.supervisor-0.4.0.tar.gz" } ] }