{ "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.pywps\n*****************************\n\n.. image:: https://travis-ci.org/bird-house/birdhousebuilder.recipe.pywps.svg?branch=master\n :target: https://travis-ci.org/bird-house/birdhousebuilder.recipe.pywps\n :alt: Travis Build\n\n.. image:: https://img.shields.io/github/license/bird-house/birdhousebuilder.recipe.pywps.svg\n :target: https://github.com/bird-house/birdhousebuilder.recipe.pywps/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.pywps`` is a `Buildout`_ recipe to install and configure `PyWPS`_ with `Anaconda`_. `PyWPS`_ is a Python implementation of a `Web Processing Service`_ (WPS). ``PyWPS`` will be deployed as a `Supervisor`_ service and is available behind a `Nginx`_ web server.\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.. _`Nginx`: http://nginx.org/\n.. _`PyWPS`: http://pywps.org/\n.. _`PyWPS documentation`: http://pywps.readthedocs.io/en/latest/configuration.html\n.. _`Web Processing Service`: https://en.wikipedia.org/wiki/Web_Processing_Service\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\nIt installs the ``pywps`` package from a conda channel in a conda environment defined by ``CONDA_PREFIX``. The location of the intallation is given by the ``prefix`` buildout option. It setups a `PyWPS`_ output folder in ``${prefix}/var/lib/pywps``. It deploys a `Supervisor`_ configuration for ``PyWPS`` in ``${prefix}/etc/supervisor/conf.d/pywps.conf``. Supervisor can be started with ``${prefix}/etc/init.d/supervisor start``.\n\nThe recipe will install the ``nginx`` package from a conda channel and deploy a Nginx site configuration for ``PyWPS``. The configuration will be deployed in ``${prefix}/etc/nginx/conf.d/pywps.conf``. Nginx will be started by supervisor.\n\nBy default ``PyWPS`` will be available on http://localhost:8091/wps?service=WPS&version=1.0.0&request=GetCapabilities.\n\nThe recipe depends on:\n\n* ``birdhousebuilder.recipe.conda``,\n* ``birdhousebuilder.recipe.supervisor``,\n* ``birdhousebuilder.recipe.nginx`` and\n* ``zc.recipe.deployment``.\n\nSupported options\n=================\n\nThe PyWPS options which are configured by buildout are explained in the `PyWPS documentation`_.\n\nThe recipe supports the following buildout options:\n\n**anaconda-home**\n Buildout option pointing to the root folder of the Anaconda installation. Default: ``$HOME/anaconda``.\n\nBuildout options for ``pywps``:\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**name**\n The name of your WPS project (used for config names and folder path).\n\n**hostname**\n The hostname of the ``PyWPS`` service (nginx). Default: ``localhost``\n\n**http-port**\n The http port of the ``PyWPS`` service (nginx). Default: ``8091``\n\n**https-port**\n The https port of the ``PyWPS`` service (nginx). Default: ``28091``\n\n**http-output-port**, **output-port**\n The http port of the ``PyWPS`` output file service (nginx). Default: ``8090``\n\n**https-output-port**\n The https port of the ``PyWPS`` output file service (nginx). Default: ``28090``\n\n**ssl-verify-client**\n Nginx option to verify SSL client certificates. Possible values: ``off`` (default), ``on``, ``optional``.\n `Nginx ssl_verify_client option`_\n\n**ssl-client-certificate**\n Nginx option with the name of the bundle of CA certificates for the client. Default: ``esgf-ca-bundle.crt``.\n `Nginx ssl_client_certificate`_\n\n**ssl-client-certificate-url**\n Optional URL to download a bundle of CA certificates for ``ssl-client-certificate``. Default:\n https://github.com/ESGF/esgf-dist/raw/master/installer/certs/esgf-ca-bundle.crt\n\n**workers**\n The number of gunicorn workers for handling requests. Default: 1\n\n**application**\n PyWPS WSGI Application. Default: ``${name}:application``.\n\n**title**\n Title used for your WPS service.\n\n**abstract**\n Description of your WPS service.\n\n**loglevel**\n Logging level for ``PyWPS``. Default: ``WARN``\n\n**logformat**\n Logging string format for ``PyWPS``. Default: ``%(asctime)s] [%(levelname)s] line=%(lineno)s module=%(module)s %(message)s``\n\n**database**\n Database where the logs about requests/responses is to be stored. Allowed values are ``memory`` or ``sqlite``.\n Default: ``sqlite``.\n\n**parallelprocesses**\n Maximum number of parallel running processes.\n The effective number of parallel running processes is limited by the number of cores\n in the hosting machine. Default: 2\n\n**maxprocesses**\n Maximum number of processes which are accepted in the queue. Default: 30\n\n**maxrequestsize**\n Maximal request size accepted in WPS process. Default: 30mb\n\n**allowedinputpaths**\n List of server paths which are allowed to be accessed by file URL complex input parameters.\n\n**mode**\n Processing mode to run jobs. Allowed values are ``default`` (multiprocessing) and ``slurm``.\n Default: default\n\n\n\nExample usage\n=============\n\nThe following example ``buildout.cfg`` installs ``PyWPS`` with Anaconda::\n\n [buildout]\n parts = pywps\n\n [pywps]\n recipe = birdhousebuilder.recipe.pywps\n name = myproject\n prefix = /\n user = www-data\n hostname = localhost\n http-port = 8091\n https-port = 28091\n\n # pywps options\n processes-import = myproject.processes\n processes-path = ${buildout:directory}/myproject/processes\n title = MyProject ...\n abstract = MyProject does ...\n\nAfter installing with Buildout start the ``PyWPS`` service with::\n\n $ cd ${prefix}\n $ etc/init.d/supervisord start # start|stop|restart\n $ etc/init.d/nginx start # start|stop|restart\n $ bin/supervisorctl status # check that pycsw is running\n $ less var/log/pywps/myproject.log # check log file\n\nOpen your browser with the following URL::\n\n http://localhost:8091/wps?service=WPS&version=1.0.0&request=GetCapabilities\n\nAuthors\n*******\n\nCarsten Ehbrecht ehbrecht at dkrz.de\n\nChange History\n**************\n\n0.10.0 (2018-03-20)\n===================\n\n* cleaned up recipe (#15).\n* update nginx option with ssl-verify option (#13).\n\n0.9.3 (2018-01-24)\n==================\n\n* added outputurl option to overwrite defaults.\n\n0.9.2 (2017-07-28)\n==================\n\n* removed unused ``remotehost`` option.\n* updated ``database`` option.\n\n0.9.1 (2017-06-28)\n==================\n\n* added allowedinputpaths option.\n\n0.9.0 (2017-05-18)\n==================\n\n* cleaned up buildout build ... fixed travis.\n* removed unused options processes-path and processes-import.\n* does not generate etc/pywps/app.py anymore.\n* added application option.\n\n0.8.9 (2017-05-11)\n=================\n\n* added processing options ``mode`` and ``remotehost``.\n\n0.8.8 (2017-04-26)\n==================\n\n* added ``database`` option.\n\n0.8.7 (2017-03-30)\n==================\n\n* added ``logformat`` option.\n\n0.8.6 (2017-02-09)\n==================\n\n* added ``extra-options`` which replaces also the ``archive-root`` option.\n* added test module test_unit.py for unit-testing.\n* updated versions.cfg.\n\n\n0.8.5 (2017-02-01)\n==================\n\n* setting NCARG_ROOT in gunicorn config.\n\n0.8.4 (2017-01-31)\n==================\n\n* added options ``sethomedir`` and ``setworkdir``.\n\n0.8.3 (2017-01-16)\n==================\n\n* added ``archive-root`` cache option.\n\n0.8.2 (2016-12-09)\n==================\n\n* set ``HOME`` in gunicorn config to var/lib/pywps/tmp/${name}.\n* added ``parallelprocesses`` option.\n* added ``https-output-port`` and ``http-output-port`` option.\n* added ``enable-https`` option.\n* updated Readme.\n\n0.8.1 (2016-11-10)\n==================\n\n* fixed wspapp.py template: using processes-import option\n* using proccess-path option.\n* updated Readme.\n\n0.8.0 (2016-10-17)\n==================\n\n* updated to pywps 4.x (new config files)\n\n0.5.1 (2016-07-06)\n==================\n\n* added client_body_max_size to nginx config for uploads.\n\n0.5.0 (2016-06-30)\n==================\n\n* using zc.recipe.deployment.\n* changed cache path to ``var/lib/pywps/cache``.\n* changed tmp path to ``var/lib/pywps/tmp``.\n\n0.4.0 (2016-03-03)\n==================\n\n* update to pywps 3.2.5.\n* fixed wpsapp.py wsgi script.\n* added missing server/debug parameter to pywps.cfg.\n\n0.3.10 (2016-02-12)\n===================\n\n* added ``maxoperations`` and ``maxfilesize`` to options.\n\n0.3.9 (2016-02-08)\n==================\n\n* updated pywps conda dependency.\n\n0.3.8 (2016-02-04)\n==================\n\n* configure pywps logFile in ${prefix}/var/log/pywps/.\n\n0.3.7 (2016-01-22)\n==================\n\n* added environment variables PATH and GDAL_DATA to bin/runwps script.\n\n0.3.6 (2016-01-22)\n==================\n\n* generates bin/runwps script to test pywps service.\n\n0.3.5 (2016-01-21)\n==================\n\n* updated pywps conda dependency.\n\n0.3.4 (2016-01-19)\n==================\n\n* cleaned up templates.\n* added eventlet to the conda dependencies.\n\n0.3.3 (2016-01-18)\n==================\n\n* renamed gunicorn template.\n* updated pywps.cfg for gunicron keywords template.\n\n0.3.2 (2016-01-15)\n==================\n\n* added gunicorn workers parameter.\n* using gevent worker_class.\n* using gunicorn config folder etc/gunicorn/.\n\n0.3.1 (2016-01-05)\n==================\n\n* using cache path var/lib/cache/.\n\n0.3.0 (2015-12-01)\n==================\n\n* updated to latest pywps wsgi app.\n\n0.2.6 (2015-06-25)\n==================\n\n* added user option for supervisor and nginx.\n\n0.2.5 (2015-06-24)\n==================\n\n* enabled https access.\n\n0.2.4 (2015-06-23)\n==================\n\n* removed unused proxyEnabled option.\n* cleaned up templates.\n\n0.2.3 (2015-05-18)\n==================\n\n* updated supervisor config.\n* log pywps to stderr/supervisor.\n\n0.2.2 (2015-04-21)\n==================\n\n* do not set ``HOME`` environment variable in gunicorn.\n\n0.2.1 (2015-03-24)\n==================\n\n* added mako_cache to pywps config.\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.11 (2014-12-08)\n===================\n\n* changed default log level.\n\n0.1.10 (2014-12-06)\n===================\n\n* Don't update conda on buildout update.\n* Sets PYTHONPATH in gunicon.conf.py. Used in PyWPS async processes.\n\n0.1.9 (2014-11-26)\n==================\n\n* Added cache section to pywps.cfg template.\n\n0.1.8 (2014-11-03)\n==================\n\n* GDAL_DATA added to environment in gunicorn.conf.py template.\n\n0.1.7 (2014-08-27)\n==================\n\n* phoenix option added for wpsoutputs.\n\n0.1.6 (2014-08-26)\n==================\n\n* Fixed proxy config for wpsoutputs.\n\n0.1.5 (2014-08-23)\n==================\n\nadded cache path to nginx configuration.\n\n0.1.4 (2014-08-17)\n==================\n\nadded /usr/local/bin to gunicorn path (needed for brew on macosx)\n\n0.1.3 (2014-08-01)\n==================\n\nUpdated documentation.\n\n0.1.2 (2014-07-24)\n==================\n\nFixed hostname in nginx template.\n\n0.1.1 (2014-07-11)\n==================\n\nFixed HOME env in gunicorn template.\n\n0.1.0 (2014-07-10)\n==================\n\nInitial 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.pywps", "keywords": "buildout recipe pywps wps birdhouse conda", "license": "Apache License 2", "maintainer": "", "maintainer_email": "", "name": "birdhousebuilder.recipe.pywps", "package_url": "https://pypi.org/project/birdhousebuilder.recipe.pywps/", "platform": "", "project_url": "https://pypi.org/project/birdhousebuilder.recipe.pywps/", "project_urls": { "Homepage": "https://github.com/bird-house/birdhousebuilder.recipe.pywps" }, "release_url": "https://pypi.org/project/birdhousebuilder.recipe.pywps/0.10.0/", "requires_dist": null, "requires_python": "", "summary": "A Buildout recipe to install and configure PyWPS Web Processing Service with conda.", "version": "0.10.0" }, "last_serial": 3688955, "releases": { "0.1.10": [ { "comment_text": "", "digests": { "md5": "d8b933898914bb70b3ba0d40468594b5", "sha256": "61397ee96eaf33558b0158cdfe2f60c65637faeae423fde4435a27f6f46322d1" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.10.tar.gz", "has_sig": false, "md5_digest": "d8b933898914bb70b3ba0d40468594b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9047, "upload_time": "2014-12-06T14:52:42", "url": "https://files.pythonhosted.org/packages/02/bb/b74d3f127bdd2a65f623ce0ea027392b70b1fb5d7070a057643c8e28794b/birdhousebuilder.recipe.pywps-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "853c39d840c17505a2f6456a874cc368", "sha256": "0d07f7d3c35bf65ee95681f53c3fe47059d82d492ef1618747fb1eb4835fd16a" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.11.tar.gz", "has_sig": false, "md5_digest": "853c39d840c17505a2f6456a874cc368", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9484, "upload_time": "2014-12-08T09:50:07", "url": "https://files.pythonhosted.org/packages/cb/75/df719fec3b42aadd3874d9f0fefa6cbe78322b533801aedd97745e7ee2ee/birdhousebuilder.recipe.pywps-0.1.11.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "3acd6c6a76734b1922bd9909e5d36d15", "sha256": "da8fe5d307bb1508d664a93b9e44891b9fe1b7c2c19ed402c612ebe4ffa6af3c" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.3.tar.gz", "has_sig": false, "md5_digest": "3acd6c6a76734b1922bd9909e5d36d15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8568, "upload_time": "2014-08-01T13:45:07", "url": "https://files.pythonhosted.org/packages/26/56/bed8ba2fc764f830c4fb53bd3a8133b23936d01de934bb7e3ee6948f3a12/birdhousebuilder.recipe.pywps-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "44eaed0e1bb9ec5a2bce8cb07f59507f", "sha256": "1ceedf497c0959a0ed9d239f69e7e667fe2cdcd9b0b001be13414316df1f1fd0" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.4.tar.gz", "has_sig": false, "md5_digest": "44eaed0e1bb9ec5a2bce8cb07f59507f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8293, "upload_time": "2014-08-17T14:51:48", "url": "https://files.pythonhosted.org/packages/0d/fe/c8e3808329725f086632994ff10b2e0d9131c18431b3377a370195b227df/birdhousebuilder.recipe.pywps-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "840b81f8f451a3656f2d8f77c2e20eb8", "sha256": "b64685032386e06f415de77be0eca223c1b6cc26289d683bfdba18bd8e6cfcc5" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.5.tar.gz", "has_sig": false, "md5_digest": "840b81f8f451a3656f2d8f77c2e20eb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8348, "upload_time": "2014-08-23T12:07:12", "url": "https://files.pythonhosted.org/packages/4c/e6/9fedb172807de76fc1617df20e95a261a2a43b7e05cf11a85948105d9d9d/birdhousebuilder.recipe.pywps-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "1a79af6b781bcd8d151801de3df9e60d", "sha256": "2fc543c43b714ed64b61d53aa75928f98fd9b08a8261f1238fc3bc2d3a2f7a09" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.6.tar.gz", "has_sig": false, "md5_digest": "1a79af6b781bcd8d151801de3df9e60d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8789, "upload_time": "2014-08-26T17:30:40", "url": "https://files.pythonhosted.org/packages/c0/43/190ab3a6b4ba337110df3f808e05746584192fe7698869c92f2d62447859/birdhousebuilder.recipe.pywps-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "ef774e5aed1b2bc61b713e7d72621228", "sha256": "17507b8d632210ec1e057e14f632d118c3e64aca66d497b75b33fd356fa69877" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.7.tar.gz", "has_sig": false, "md5_digest": "ef774e5aed1b2bc61b713e7d72621228", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8821, "upload_time": "2014-08-27T13:25:39", "url": "https://files.pythonhosted.org/packages/9f/ef/3cc9d1db358946b3db9c39be7f1552b14337f4ac2c5c010f5a1d97a3c501/birdhousebuilder.recipe.pywps-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "46c07ce44391cb3a8f8ad25e0c92fa33", "sha256": "6ab0c3138bccc63708121e5b606f548ff2efbdcd5f99e61a96921fe09b2fe161" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.8.tar.gz", "has_sig": false, "md5_digest": "46c07ce44391cb3a8f8ad25e0c92fa33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8880, "upload_time": "2014-11-03T14:27:50", "url": "https://files.pythonhosted.org/packages/d0/b2/79315c569a2ba8279a8749a92ad0ef40b06ba196caa1899882115c93abb9/birdhousebuilder.recipe.pywps-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "a3edacbf1fe30af1770d41b3b068052e", "sha256": "c5101e01b8acc5056f191215a559c4f7b875bae187b2909786a0c753da78ff17" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.1.9.tar.gz", "has_sig": false, "md5_digest": "a3edacbf1fe30af1770d41b3b068052e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9070, "upload_time": "2014-11-26T15:57:08", "url": "https://files.pythonhosted.org/packages/1a/85/dfe38709d4481ddd93695fcc659b29c11d8575a84f71f960c056184572fe/birdhousebuilder.recipe.pywps-0.1.9.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "85c1bee84505c0a7c3db48a4723710e7", "sha256": "782be05d3309099a7108bc65a0753c65e40c08b355eb12c8cba41c045ceae43c" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.10.0.tar.gz", "has_sig": false, "md5_digest": "85c1bee84505c0a7c3db48a4723710e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20587, "upload_time": "2018-03-20T18:42:38", "url": "https://files.pythonhosted.org/packages/b4/55/be0bd2bd97ee9c8235812c1ef12c784efb8f65f26fb095bcd4caed0e410e/birdhousebuilder.recipe.pywps-0.10.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "561f5a78dd73da4abd300ff801355cb0", "sha256": "a57b06609df6fd718c34e62590d4cf93ea37cb0c6e18d16aa09c01c9c23c14d2" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.2.0.tar.gz", "has_sig": false, "md5_digest": "561f5a78dd73da4abd300ff801355cb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9296, "upload_time": "2015-02-24T17:02:40", "url": "https://files.pythonhosted.org/packages/7b/e9/30935eaccc6a3870eccc5266923806a174da4fbfc472f5d9ca0e61b7044b/birdhousebuilder.recipe.pywps-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "8e9fd88987200222d3f717e794279523", "sha256": "d39585b69539fe96142a7b7c993e4fcf69391eb797facfed3153c13af7eff8db" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.2.1.tar.gz", "has_sig": false, "md5_digest": "8e9fd88987200222d3f717e794279523", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9351, "upload_time": "2015-03-24T13:22:48", "url": "https://files.pythonhosted.org/packages/bc/57/ce517690b7c54a1bd9cf1633b152bcb57c99422c8d2bb9663baed6c57971/birdhousebuilder.recipe.pywps-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "892d597b6b3d2cb9f8d627b7f0a4077d", "sha256": "b2536a681f96c95771ff53328bc12bc6354928acea52a27fa9ef6418c2a9af35" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.2.2.tar.gz", "has_sig": false, "md5_digest": "892d597b6b3d2cb9f8d627b7f0a4077d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9391, "upload_time": "2015-04-21T13:54:24", "url": "https://files.pythonhosted.org/packages/ac/d2/29236cb9d49ee10aa2f1a6aa5a6477616a05293b5fd94e933ae962edf0c6/birdhousebuilder.recipe.pywps-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "36bbdce5e8b10098eb0170307c9a0b60", "sha256": "bd3b6be51f5e2adcbe26b24e612a3ccb34ada8b70db1cda153f23eeba61d0808" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.2.3.tar.gz", "has_sig": false, "md5_digest": "36bbdce5e8b10098eb0170307c9a0b60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9446, "upload_time": "2015-05-18T12:32:24", "url": "https://files.pythonhosted.org/packages/00/a2/af6e4b510c0c64aaf6bb7b74c37b15a6b2d246abc654b7f2717010918d85/birdhousebuilder.recipe.pywps-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "35af89b22c48a360b4bc8e4125d3875f", "sha256": "90c3c67b3453376b2040ae0bf7953d159c229ba71eddff72ee3fead7d03d13f1" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.2.4.tar.gz", "has_sig": false, "md5_digest": "35af89b22c48a360b4bc8e4125d3875f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9414, "upload_time": "2015-06-23T12:11:47", "url": "https://files.pythonhosted.org/packages/95/01/fc6164df31734a0ce57fea0c85e7121aa6a82d6806006f40d3b36d676400/birdhousebuilder.recipe.pywps-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "ae2e939b22811445bc99aaf4a05eaf2f", "sha256": "247e556a29f5085a0f49f3dfa52524316c1931de0fafd9a3c90ff960f7613875" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.2.5.tar.gz", "has_sig": false, "md5_digest": "ae2e939b22811445bc99aaf4a05eaf2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669, "upload_time": "2015-06-24T11:52:10", "url": "https://files.pythonhosted.org/packages/8d/85/a268a51a585c5c9dfff937e486b2177a0a2ebd173a76ebc0975198b65e06/birdhousebuilder.recipe.pywps-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "0b7f26596243bea5923a423544d1ea1f", "sha256": "2fea99800c65b4493e5866d003d24f3ab5ad8c4edde7627863a5e77c6c3795da" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.2.6.tar.gz", "has_sig": false, "md5_digest": "0b7f26596243bea5923a423544d1ea1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9721, "upload_time": "2015-06-25T13:14:19", "url": "https://files.pythonhosted.org/packages/4f/51/a9cfd84f0ea3ee0a898cad4abbf5506441a84f8d7be582d5e244db45dea6/birdhousebuilder.recipe.pywps-0.2.6.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "07ad3d763974a27143864882aa6deb8c", "sha256": "33fc69f614ed8ec80371088ba5bd89ab838b53aecc2d1b9ccd9af5478233d4b1" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.0.tar.gz", "has_sig": false, "md5_digest": "07ad3d763974a27143864882aa6deb8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9771, "upload_time": "2015-12-01T16:28:45", "url": "https://files.pythonhosted.org/packages/56/64/a983b6b873e6842f28940363717e00cbc1fe8ab1f1ec532395c0fc445aed/birdhousebuilder.recipe.pywps-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "built for Linux-3.16.0-38-generic-x86_64-with-glibc2.2.5", "digests": { "md5": "33c6eafad103bcc4b5d868db1238af2f", "sha256": "f315883414dc2945797c7a31a212d01ec0f79d44c6958896448e2c56e4402fc1" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "33c6eafad103bcc4b5d868db1238af2f", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 12009, "upload_time": "2016-01-05T15:27:09", "url": "https://files.pythonhosted.org/packages/a3/b9/368fd7406bb6a1748ca6c2f3128ff8184091ecaa03e8f70ff0ca19631d6e/birdhousebuilder.recipe.pywps-0.3.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "1e5fd7bac76ce9183b3921ea7b3bb0cd", "sha256": "bf034c71611b8be2bf4746d4c62a299ed8c7880955272519f30effebadb86513" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.1.tar.gz", "has_sig": false, "md5_digest": "1e5fd7bac76ce9183b3921ea7b3bb0cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9810, "upload_time": "2016-01-05T15:24:49", "url": "https://files.pythonhosted.org/packages/dd/2b/0aa5fff2d0dfd1c2c803b205ea45ece8ef7a7212905cbe916437b3ba02cf/birdhousebuilder.recipe.pywps-0.3.1.tar.gz" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "c31486e6a00892a229b42886517d7861", "sha256": "70230decdfdc6e13a7361d8e5cabdde0dd032812e870e8305dd9f67960e31570" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.10.tar.gz", "has_sig": false, "md5_digest": "c31486e6a00892a229b42886517d7861", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10651, "upload_time": "2016-02-12T16:34:42", "url": "https://files.pythonhosted.org/packages/cb/fc/602878d1d67579752898c67a499eefc7c3c74270364cc5ca21c57c61d131/birdhousebuilder.recipe.pywps-0.3.10.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "952d30cbb94f26de8d243409ae0ae4ea", "sha256": "73339b6dbc1dee9b82b9f9ff9399351edd050925e222eac290a4e7511486a84a" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.2.tar.gz", "has_sig": false, "md5_digest": "952d30cbb94f26de8d243409ae0ae4ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10050, "upload_time": "2016-01-15T14:35:44", "url": "https://files.pythonhosted.org/packages/16/c6/aa45fe7fcbda9469f70d40a79bd4d90a038f566e3d6b3bebcfb4feb1e066/birdhousebuilder.recipe.pywps-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "3fe7230db8460e9bc5f4e8f71eeac614", "sha256": "7eb6c817b7da793ff96affa0acd71a760e5ca8262c88dfb112ddeabaed43326e" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.3.tar.gz", "has_sig": false, "md5_digest": "3fe7230db8460e9bc5f4e8f71eeac614", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10027, "upload_time": "2016-01-18T15:40:57", "url": "https://files.pythonhosted.org/packages/8d/f5/590e1fb3ed0d21a96ae5eca6b4ca6b21334c76268faee52a93becff742aa/birdhousebuilder.recipe.pywps-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "e5a8b37c52a56bbcf55ae331c8778faa", "sha256": "1c50a232e660d160cef6852be0774dd5e0b01b3d85cf8a60c02eafceaf12fee8" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.4.tar.gz", "has_sig": false, "md5_digest": "e5a8b37c52a56bbcf55ae331c8778faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10180, "upload_time": "2016-01-19T13:55:35", "url": "https://files.pythonhosted.org/packages/cb/4b/4848817b4bde55f09c7394cf96a8a5560a3e106285cec4659b224a6d046e/birdhousebuilder.recipe.pywps-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "d90b892d49f5f1d0b1631d9f600cda37", "sha256": "50a8a5a816e356af0ba59d15a26b8de3d6e3abc692dfcd47e7acb6e42554bbd7" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.5.tar.gz", "has_sig": false, "md5_digest": "d90b892d49f5f1d0b1631d9f600cda37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10201, "upload_time": "2016-01-21T17:00:40", "url": "https://files.pythonhosted.org/packages/b5/32/1d78f75f97f74148331ec70cb8baf7b21da6fedd6957f024c1069a0ef801/birdhousebuilder.recipe.pywps-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "439c1f1f5720b66b4d801d4336724b4e", "sha256": "5e346374df3563f30c40c0202b05d68b65ad2b7246cf929fb1d0a602924cd80f" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.6.tar.gz", "has_sig": false, "md5_digest": "439c1f1f5720b66b4d801d4336724b4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10404, "upload_time": "2016-01-22T13:57:53", "url": "https://files.pythonhosted.org/packages/ff/8b/eae3fb56dce8bbc7bd3d46def3b484661ebf21e9106daeaed51455c5f87e/birdhousebuilder.recipe.pywps-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "e7d5d7c200e3c2e8031cb417db8011cb", "sha256": "a59af978b85c97e2b83422778108bdbe17d5c08dbf52bd25c9c828f4f935fa57" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.7.tar.gz", "has_sig": false, "md5_digest": "e7d5d7c200e3c2e8031cb417db8011cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10456, "upload_time": "2016-01-22T15:08:46", "url": "https://files.pythonhosted.org/packages/c4/83/21839a4cb24c7c9955f25949415f3964d32cca72e7501d8c39696a470139/birdhousebuilder.recipe.pywps-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "7617d5457c0a3cc79ab304efb56dcf1a", "sha256": "ce4b721607572268f1058f11df1a7c20eb81fcda83a42c265e7edd08a7348885" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.8.tar.gz", "has_sig": false, "md5_digest": "7617d5457c0a3cc79ab304efb56dcf1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10489, "upload_time": "2016-02-04T16:30:40", "url": "https://files.pythonhosted.org/packages/d6/52/7dab64bc62d8240da3b90c74f4de9f71555b396ee34608aa93acba47b10f/birdhousebuilder.recipe.pywps-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "d7d97090724695543ed164490b286fac", "sha256": "177e735259a450d2065fb7445b9ac44f64c422ce96d8b60e0a8dcbd82b8b7ae9" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.3.9.tar.gz", "has_sig": false, "md5_digest": "d7d97090724695543ed164490b286fac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10512, "upload_time": "2016-02-08T09:37:11", "url": "https://files.pythonhosted.org/packages/7a/20/37ef76e39060938c5edbbf177602f824a5dfcf44b921f3467d4a0b42e0bb/birdhousebuilder.recipe.pywps-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "e9def6044a3eb41044081ecfc33b2d99", "sha256": "9d6e50143944ed23ac1b07f9f782d38d2826cc7dd4df8f71c070947a91bc81fa" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.4.0.tar.gz", "has_sig": false, "md5_digest": "e9def6044a3eb41044081ecfc33b2d99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10933, "upload_time": "2016-03-03T15:02:39", "url": "https://files.pythonhosted.org/packages/b8/a9/5c6487b32f63796052a87c27287dbbe490ad27c686cc03fc61b871fdb546/birdhousebuilder.recipe.pywps-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "329f4f14d688664fe01aa6fad896a4cb", "sha256": "80843057561c1d2454753af213effdced7f35853a85b69413d42f9a2c6eefce4" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.5.0.tar.gz", "has_sig": false, "md5_digest": "329f4f14d688664fe01aa6fad896a4cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11306, "upload_time": "2016-06-30T15:40:02", "url": "https://files.pythonhosted.org/packages/f1/99/b35e6c3d73b771a884da712c352d77656c17d4bbe0aeee92e75427a0b25a/birdhousebuilder.recipe.pywps-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "0b4e56fb6c45b7148f0962b3f9a1cde0", "sha256": "863dac46ad3a57b2773f84df15c159b09a46af87be65971647283a968d6f6415" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.5.1.tar.gz", "has_sig": false, "md5_digest": "0b4e56fb6c45b7148f0962b3f9a1cde0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11482, "upload_time": "2016-07-06T08:43:04", "url": "https://files.pythonhosted.org/packages/20/e4/d6b10e82004c8127e8d91a47a97440a006109de287a1563a508b51300f82/birdhousebuilder.recipe.pywps-0.5.1.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "43a0a42cf1046dbee69bdcf355550ecc", "sha256": "54c09b41cdaf2ef6f16d1d685330fbc107806fb32da9a2506becbdca53c7209c" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.0.tar.gz", "has_sig": false, "md5_digest": "43a0a42cf1046dbee69bdcf355550ecc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10422, "upload_time": "2016-10-17T15:46:46", "url": "https://files.pythonhosted.org/packages/bb/96/c7a5b5d0af3a06c8a3d5b57aa37b2ca154480c07db675ba69d4423fb11f2/birdhousebuilder.recipe.pywps-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "33a993ef4800ee00b3b615b241c2d243", "sha256": "86a0d34039dd59ef07e2011b0ada6d6b8f3b4eddb98e172238a4d730e048db9a" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.1.tar.gz", "has_sig": false, "md5_digest": "33a993ef4800ee00b3b615b241c2d243", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10502, "upload_time": "2016-11-10T13:34:27", "url": "https://files.pythonhosted.org/packages/8f/8d/11b49618ccd68d1370540c2a3fe469d01d6a9faaf20cf61b8b2a534bff45/birdhousebuilder.recipe.pywps-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "406ae65cb26e166b87e158f07b028786", "sha256": "6f92de109da919affefbf9da967b846d0e717146825568285a816b01fd80c1a1" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.2.tar.gz", "has_sig": false, "md5_digest": "406ae65cb26e166b87e158f07b028786", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10928, "upload_time": "2016-12-09T16:10:44", "url": "https://files.pythonhosted.org/packages/8e/ed/469c1ce7c1fc8e15753e3fbd3e3e7b5f071032fe946e142d6c423c1d7b00/birdhousebuilder.recipe.pywps-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "6905cfb63e64d37da029d0d79fcbc74c", "sha256": "de89ad0cfb488819ce672e7cec0e084385ea5a533fe9addea4d54c75f3c32e74" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6905cfb63e64d37da029d0d79fcbc74c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19210, "upload_time": "2017-01-16T12:22:56", "url": "https://files.pythonhosted.org/packages/52/86/60ce94c4df5bc7854ac40b5b31e422bda2e6f31c64edb658c085e89dced5/birdhousebuilder.recipe.pywps-0.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c6a11339993e2e2abb172d8e782ec0b", "sha256": "19d7b4ad209f449c4b9f92e52550518f51b108ff7a8c98113eda553522eef927" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.3.tar.gz", "has_sig": false, "md5_digest": "2c6a11339993e2e2abb172d8e782ec0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11031, "upload_time": "2017-01-16T12:22:31", "url": "https://files.pythonhosted.org/packages/d6/55/cd7ad58ae8073f98b4b751095257f2767745da78c35f067e3dd278a7e413/birdhousebuilder.recipe.pywps-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "3f7a17fda87f1bf17369ef90de77b2ce", "sha256": "1123d6ae1a53a4b1f4447e196f65244b172185c074a99a5c5a8627fa0a38b7bf" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f7a17fda87f1bf17369ef90de77b2ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19293, "upload_time": "2017-01-31T18:12:17", "url": "https://files.pythonhosted.org/packages/ce/86/bb648f4303f721a65968340ca61392014b8c5adb96a29c4c38ce7c61c286/birdhousebuilder.recipe.pywps-0.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f75feefd113bb5f5116d04108df29c2", "sha256": "b5331d919413b754313211bffe3635f2f154224f3d0216270c98ec5e9f28d3a5" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.4.tar.gz", "has_sig": false, "md5_digest": "1f75feefd113bb5f5116d04108df29c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11093, "upload_time": "2017-01-31T18:12:01", "url": "https://files.pythonhosted.org/packages/3b/f0/bd65ad8bb36e82a3bda79c93285596b5ba98d905db08e334d90e563500d2/birdhousebuilder.recipe.pywps-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "bf01ebeced93beb7dd52efed088e1950", "sha256": "e26287c1a25a75f005cf1b392ac0a51cd15b078f4c2b50373ecb9f444529539d" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf01ebeced93beb7dd52efed088e1950", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19362, "upload_time": "2017-02-01T17:52:28", "url": "https://files.pythonhosted.org/packages/61/0b/6a3f5900bb90e24361c7278ba439d368cb6b6a641a3ddb451574a3524a3e/birdhousebuilder.recipe.pywps-0.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d05b21673f5b72c701f8029110087b6", "sha256": "c9aa2763070412073d92a38118cd20ad520002ee0b18ddb67ad2a2017a4d9333" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.5.tar.gz", "has_sig": false, "md5_digest": "4d05b21673f5b72c701f8029110087b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11155, "upload_time": "2017-02-01T17:52:21", "url": "https://files.pythonhosted.org/packages/a5/2d/693d316ff4bafad054814d8d06c98401dac562457fa1d34ff9ad9129cdd3/birdhousebuilder.recipe.pywps-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "f3087c7d2235a7e88d9b7a14efe0286e", "sha256": "301c91d3cd1d5523b4a06233334497d4d1cb54bcb9f88c265988ef9934f8c236" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3087c7d2235a7e88d9b7a14efe0286e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17451, "upload_time": "2017-02-09T12:27:23", "url": "https://files.pythonhosted.org/packages/ff/5a/51bc10df4f0e957be18848450fbd36dff87b87580f330b9d81bb7300efbd/birdhousebuilder.recipe.pywps-0.8.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ea796ea7a8898626f9a374bbadbeabe", "sha256": "2273ea760137c6b6b5b264e49769f0e3cb926eb3b66215a79cf740995f2135bc" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.6.tar.gz", "has_sig": false, "md5_digest": "0ea796ea7a8898626f9a374bbadbeabe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13725, "upload_time": "2017-02-09T12:27:01", "url": "https://files.pythonhosted.org/packages/55/43/c9447899bc871a1943651802128cb401767c9c41a0a59b080ec8a4e09bfb/birdhousebuilder.recipe.pywps-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "ed32d9bdb60ce8b3fd3507cd90b9f8ec", "sha256": "2a8b7f1da2d2b571539ae4f48c665afdb57515236c1daf669e7e0f0b8c7c9cae" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed32d9bdb60ce8b3fd3507cd90b9f8ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20572, "upload_time": "2017-03-30T11:32:52", "url": "https://files.pythonhosted.org/packages/4c/f0/6a2f5dadaad36d3b9ab80f418a8f15cc809f7d7a782d527325d4ff84448c/birdhousebuilder.recipe.pywps-0.8.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "856ef8909788df86833e77f2dc7f24e7", "sha256": "6625973273ed5fa0c334b115a68ae63f372b579b0886d8b607d3c9c77d62c29a" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.7.tar.gz", "has_sig": false, "md5_digest": "856ef8909788df86833e77f2dc7f24e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11880, "upload_time": "2017-03-30T11:32:36", "url": "https://files.pythonhosted.org/packages/03/45/79cbc323bb9c83fd03898e1929559b64ab229b13de70ed82cd5ca184df1e/birdhousebuilder.recipe.pywps-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "47e417747fca2f79aae756701c176008", "sha256": "e2511379a397febecab34fd7e6986cf7de7a8bb8e918e5806b821b85707b9ea8" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "47e417747fca2f79aae756701c176008", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17916, "upload_time": "2017-04-26T09:13:29", "url": "https://files.pythonhosted.org/packages/71/6a/7bd6726da6ec7456eac72ac3cd18d7a053faedec0bd0de9d10856116e47c/birdhousebuilder.recipe.pywps-0.8.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8ccb2222c380155f68b7046232a836e", "sha256": "5fb98d37ac848319467e00fad9d8c9dece9fb4dca9a353d62d44a3d2e9cf823d" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.8.tar.gz", "has_sig": false, "md5_digest": "b8ccb2222c380155f68b7046232a836e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11981, "upload_time": "2017-04-26T09:13:20", "url": "https://files.pythonhosted.org/packages/a3/39/f32ed191aecd3a7bb5e6a76697848a0b9f811db138124c8a6b59e0a60a04/birdhousebuilder.recipe.pywps-0.8.8.tar.gz" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "f42cfba059ff32c48321d782e90c21af", "sha256": "043d001b2f0d44604640f9765122e16c47605e3891494a92c99bed9e8515cf6f" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.8.9.tar.gz", "has_sig": false, "md5_digest": "f42cfba059ff32c48321d782e90c21af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12153, "upload_time": "2017-05-11T14:22:10", "url": "https://files.pythonhosted.org/packages/e3/4e/38ce42f9a1038a4b668dbdf05e03abb71996bd588534282f63b999e2e4b8/birdhousebuilder.recipe.pywps-0.8.9.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "f9bbd6d9f6e4091c439fe3f5bd69be65", "sha256": "9a21107fa70eb854e50be2fc3e5c6d73e73e8cd39dd665ab52e3645865d8d009" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f9bbd6d9f6e4091c439fe3f5bd69be65", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18212, "upload_time": "2017-05-18T14:41:32", "url": "https://files.pythonhosted.org/packages/a7/5f/ad704e01e181b8313784083a6e3e9fb53e6b5a86fdbc43146e11fa766411/birdhousebuilder.recipe.pywps-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d9d7227ed0299de563af619839819a1", "sha256": "7a7e415300bc5e48aafa63185fe084ef9db1232fd6fce259ea4defb6f9732735" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.9.0.tar.gz", "has_sig": false, "md5_digest": "6d9d7227ed0299de563af619839819a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12054, "upload_time": "2017-05-18T14:41:19", "url": "https://files.pythonhosted.org/packages/c0/33/5a660ab6808e931a07f253f2850d24c04b25991665109e5aaa1f7a791f53/birdhousebuilder.recipe.pywps-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "b7f57811bf42f887241e883d630be6d8", "sha256": "031e887b497d538aa16a7bd085d3fdd15390597c2b52eb5e2eef7df43dd0ef76" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.9.1.tar.gz", "has_sig": false, "md5_digest": "b7f57811bf42f887241e883d630be6d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12170, "upload_time": "2017-06-28T15:29:40", "url": "https://files.pythonhosted.org/packages/fb/8b/ad9669c84d09b73a1550c9ec7454bd7d4c1a1fdf4d61e521074e531c1144/birdhousebuilder.recipe.pywps-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "6bb6f3828473e28fee51e71f340e5a9e", "sha256": "260d44b9fd253402ff92b1aeb95847390270c856367c64f838e0a06f99c996aa" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.9.2.tar.gz", "has_sig": false, "md5_digest": "6bb6f3828473e28fee51e71f340e5a9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12104, "upload_time": "2017-07-28T15:26:12", "url": "https://files.pythonhosted.org/packages/42/84/31f014fafa82e4ec72cb1a4c93320b39b3317f4d5a1b929321fffd59dc2d/birdhousebuilder.recipe.pywps-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "7262913389011b3ef8c3f37048d89d38", "sha256": "b443a4b59a1beb7818918378335fbea1b811616709259ed407fd88de28074637" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.9.3.tar.gz", "has_sig": false, "md5_digest": "7262913389011b3ef8c3f37048d89d38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15624, "upload_time": "2018-01-25T09:45:52", "url": "https://files.pythonhosted.org/packages/91/5b/38cec9fa41ec95c467628b1f84a2eda654460e6e96db16032d126f8178d2/birdhousebuilder.recipe.pywps-0.9.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "85c1bee84505c0a7c3db48a4723710e7", "sha256": "782be05d3309099a7108bc65a0753c65e40c08b355eb12c8cba41c045ceae43c" }, "downloads": -1, "filename": "birdhousebuilder.recipe.pywps-0.10.0.tar.gz", "has_sig": false, "md5_digest": "85c1bee84505c0a7c3db48a4723710e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20587, "upload_time": "2018-03-20T18:42:38", "url": "https://files.pythonhosted.org/packages/b4/55/be0bd2bd97ee9c8235812c1ef12c784efb8f65f26fb095bcd4caed0e410e/birdhousebuilder.recipe.pywps-0.10.0.tar.gz" } ] }