{ "info": { "author": "Maic Siemering", "author_email": "maic@siemering.tech", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Flask", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3 :: Only" ], "description": "|Build Status| |Coverage Status| |Known Vulnerabilities| |PYUP|\n\nOpen Broker API\n===============\n\nA Python package for building Service Brokers supporting API version 2.13+.\n\nFollowing `Open Service Broker\nAPI Spec `__ and `Open\nService Broker API `__\n\nCheck out the documentation_.\n\n.. _documentation: http://openbrokerapi.readthedocs.io/en/latest/\n\nTo find out more about Platform Compatibility for OSBAPI versions, check out\n`Platform Compatibility for OSBAPI `__\n\n Not all features are supported with this library due to conflicting features.\n\nInstallation\n------------\n\nThis package is available for Python 3.6+.\n\n.. code:: bash\n\n pip3 install openbrokerapi\n\n # including gevent as server\n pip3 install openbrokerapi[gevent]\n\nOr install the development version from github:\n\n.. code:: bash\n\n pip3 install git+https://github.com/eruvanos/openbrokerapi.git\n\nUsage\n-----\n\nYou can start with a `skeleton project `__ or just from scratch.\n\n.. code:: python\n\n from typing import Union, List\n\n import openbrokerapi\n from openbrokerapi import api\n from openbrokerapi.api import ServiceBroker\n from openbrokerapi.catalog import ServicePlan\n from openbrokerapi.service_broker import (\n Service,\n ProvisionDetails,\n ProvisionedServiceSpec,\n DeprovisionDetails,\n DeprovisionServiceSpec\n )\n\n\n class MyServiceBroker(ServiceBroker):\n def catalog(self) -> Union[Service, List[Service]]:\n return Service(\n id='service id',\n name='service name',\n description='service description',\n bindable=False,\n plans=[\n ServicePlan(\n id='plan id',\n name='plan name',\n description='plan description',\n )\n ]\n )\n\n def provision(self,\n instance_id: str,\n details: ProvisionDetails,\n async_allowed: bool,\n **kwargs) -> ProvisionedServiceSpec:\n # Create service instance\n # ...\n\n return ProvisionedServiceSpec()\n\n def deprovision(self,\n instance_id: str,\n details: DeprovisionDetails,\n async_allowed: bool,\n **kwargs) -> DeprovisionServiceSpec:\n # Delete service instance\n # ...\n\n return DeprovisionServiceSpec(is_async=False)\n\n print('Start server on 127.0.0.1:5000')\n print('Check the catalog at:')\n print('> curl 127.0.0.1:5000/v2/catalog -H \"X-Broker-API-Version: 2.14\"')\n api.serve(MyServiceBroker(), None)\n\n # Simply start the server\n # api.serve(ExampleServiceBroker(), api.BrokerCredentials(\"\", \"\"))\n\n # or start the server without authentication\n # api.serve(ExampleServiceBroker(), None)\n\n # or start the server with multiple authentication\n # api.serve(ExampleServiceBroker(), [api.BrokerCredentials(\"\", \"\"), api.BrokerCredentials(\"\", \"\")])\n\n # or with multiple service brokers and multiple credentials\n # api.serve_multiple([ExampleServiceBroker(), ExampleServiceBroker()], [api.BrokerCredentials(\"\", \"\"), api.BrokerCredentials(\"\", \"\")])\n\n # or register blueprint to your own FlaskApp instance\n # app = Flask(__name__)\n # logger = basic_config() # Use root logger with a basic configuration provided by openbrokerapi.log_utils\n # openbroker_bp = api.get_blueprint(ExampleServiceBroker(), api.BrokerCredentials(\"\", \"\"), logger)\n # app.register_blueprint(openbroker_bp)\n # app.run(\"0.0.0.0\")\n\nDeployment\n----------\nThe included :code:`api.serve` function provides a server setup for **local usage only**.\n\nFor productive deployments use the blueprint from :code:`api.get_blueprint` to\nsetup a production ready server like `Waitress `__\nor other mentioned in `Flask Deployment Docs `__\n\nError Types\n-----------\n\nOpenbrokerapi defines a handful of error types in errors.py for some\ncommon error cases that your service broker may encounter. Raise these\nfrom your ServiceBroker methods where appropriate, and openbrokerapi\nwill do the \"right thing\" (\u2122), and give Cloud Foundry an appropriate\nstatus code, as per the Service Broker API specification.\n\n\nBugs or Issues\n--------------\n\nPlease report bugs, issues or feature requests to `Github\nIssues`_\n\n\nHow to contribute\n-----------------\n\nYou want to contribute, I really appreciate!\n\nSo let us check how you can contribute:\n\n- Create an issue in the `Github Issues`_. Please provide all information that you think are usefull to solve it.\n- Use the `Github Issues`_ to create a feature request, so we can discuss and find a good interface for that feature.\n- Create a Pull Request. There are some things that will make it easier to review your Pull Request:\n\n - Use a new branch for every Pull Request\n - Include just related commits in this branch\n - Less commits are better, one would be the best (You can squash them.)\n - Always add tests for your feature, if you are not familiar with writing tests, ask for help.\n - Hint: To update your fork with the newest changes, follow `these instructions `_.\n\n.. _Github Issues: https://github.com/eruvanos/openbrokerapi/issues\n\n.. |Build Status| image:: https://travis-ci.org/eruvanos/openbrokerapi.svg?branch=master\n :target: https://travis-ci.org/eruvanos/openbrokerapi\n.. |Coverage Status| image:: https://coveralls.io/repos/github/eruvanos/openbrokerapi/badge.svg?branch=master\n :target: https://coveralls.io/github/eruvanos/openbrokerapi?branch=master\n.. |Known Vulnerabilities| image:: https://snyk.io/test/github/eruvanos/openbrokerapi/badge.svg?targetFile=requirements.txt\n :target: https://snyk.io/test/github/eruvanos/openbrokerapi?targetFile=requirements.txt\n.. |PYUP| image:: https://pyup.io/repos/github/eruvanos/openbrokerapi/shield.svg\n :target: https://pyup.io/repos/github/eruvanos/openbrokerapi/\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/eruvanos/openbrokerapi", "keywords": "cloudfoundry,cfbrokerapi,openbrokerapi,openservicebrokerapi,servicebroker,flask", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "openbrokerapi", "package_url": "https://pypi.org/project/openbrokerapi/", "platform": "", "project_url": "https://pypi.org/project/openbrokerapi/", "project_urls": { "Homepage": "https://github.com/eruvanos/openbrokerapi" }, "release_url": "https://pypi.org/project/openbrokerapi/4.0.1/", "requires_dist": [ "flask", "sphinx (>=1.4) ; extra == 'docs'", "sphinx-rtd-theme ; extra == 'docs'", "gevent ; extra == 'gevent'" ], "requires_python": ">=3.5", "summary": "A python package for the V2 CF Service Broker API and Open Broker API (version 2.13+)", "version": "4.0.1" }, "last_serial": 5964465, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "4b46dd00982bbcc9d01a2152fce8bb40", "sha256": "ca7ebcde3fc77f0a4439fae6f4fc3d78c36d071b882aae5ae556e0a36983acb7" }, "downloads": -1, "filename": "openbrokerapi-0.1.tar.gz", "has_sig": false, "md5_digest": "4b46dd00982bbcc9d01a2152fce8bb40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7783, "upload_time": "2017-05-22T21:53:38", "url": "https://files.pythonhosted.org/packages/4f/7a/8c010c864aa25413500a35bf1713d1e7541bca0219b3308c5d382db92b92/openbrokerapi-0.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "5d9c5ef3cddba4d3fc3aeca9b41eef6c", "sha256": "ebeb0d5526ee87de5895f86e3c149c5e88a3badf83bcd38eb7418567ab976e08" }, "downloads": -1, "filename": "openbrokerapi-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5d9c5ef3cddba4d3fc3aeca9b41eef6c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18592, "upload_time": "2017-05-29T10:59:39", "url": "https://files.pythonhosted.org/packages/5c/0d/92ef0d43171f6f13df51ce251d491a44b91199163fdcf65fb219a91f58c6/openbrokerapi-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff2acdb18fa8aa9815ba5acc6c63016e", "sha256": "fa98832b4f1e5b896392514bef4968190b8e44e3a4e62618fd5701ac9d9f5165" }, "downloads": -1, "filename": "openbrokerapi-0.2.0.tar.gz", "has_sig": false, "md5_digest": "ff2acdb18fa8aa9815ba5acc6c63016e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10279, "upload_time": "2017-05-27T00:00:45", "url": "https://files.pythonhosted.org/packages/7f/9b/4ed694301f3c5f11881b74c7205c27ff1f7befbc004cc143d86ab3e58a70/openbrokerapi-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "c058eac294f854c8505970aa72d9c9d4", "sha256": "ba97c1b044bf6a660f6c282863dc4c3fad42f8c06d7238aabd074e37c3820c7c" }, "downloads": -1, "filename": "openbrokerapi-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c058eac294f854c8505970aa72d9c9d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20675, "upload_time": "2017-06-01T07:45:16", "url": "https://files.pythonhosted.org/packages/74/94/e93b87c4f93e37460a51457da790434b681f6dba6c2fbd9df2bbebe3d09f/openbrokerapi-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08191f530055282b7e1f9036f0be6df4", "sha256": "e11117c088da5cd5208c4f5addb9d7913304d1b41fcde3a3bbe151076c8db453" }, "downloads": -1, "filename": "openbrokerapi-0.3.0.tar.gz", "has_sig": false, "md5_digest": "08191f530055282b7e1f9036f0be6df4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11703, "upload_time": "2017-06-01T07:45:18", "url": "https://files.pythonhosted.org/packages/c3/95/285b8b9a552823980ce6a7f5bff5d63c60f13f88eb817bf329b75c23edb1/openbrokerapi-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "6977ee59f60b1621e3ef3cbc52866202", "sha256": "17172c5f9959bf2a597dcc043e6f7c437b112fe498c30ab0cbbd60593db9a995" }, "downloads": -1, "filename": "openbrokerapi-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6977ee59f60b1621e3ef3cbc52866202", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21264, "upload_time": "2017-06-01T08:14:18", "url": "https://files.pythonhosted.org/packages/4c/6a/1c514ff9926b402b51b460fead2b2f31591c9b82174ace27c53dcac41f24/openbrokerapi-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae8ea47b37d252af43c1be3c5671efd5", "sha256": "948b8eb231a294a331b937afa258667a4a8ac0ef6e95e09e1154f73dd40e670d" }, "downloads": -1, "filename": "openbrokerapi-0.3.1.tar.gz", "has_sig": false, "md5_digest": "ae8ea47b37d252af43c1be3c5671efd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12016, "upload_time": "2017-06-01T08:14:20", "url": "https://files.pythonhosted.org/packages/ee/27/874d5655952d8a1a78ce30a9ea804b053b32f87603810dd720b2e85ed3fd/openbrokerapi-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "b484684a5b4d030ef6b4c7419d5d9746", "sha256": "2fcc788ffcac2c34782d123c048a2e95110a146fc86670cfe32c691ac7a4358a" }, "downloads": -1, "filename": "openbrokerapi-0.4.0.tar.gz", "has_sig": false, "md5_digest": "b484684a5b4d030ef6b4c7419d5d9746", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13289, "upload_time": "2017-10-24T08:48:42", "url": "https://files.pythonhosted.org/packages/49/c8/048a3c037c2b8b34aa4ca45f411f93f7327dc09e3a2da7520afa4d18596f/openbrokerapi-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "de47f1bf1d22146ba59dd7df8c3299f1", "sha256": "91aa49c9a5a4f30df2371327e86277c958d789d6151c4daf1b94bf45afab6225" }, "downloads": -1, "filename": "openbrokerapi-0.4.1.tar.gz", "has_sig": false, "md5_digest": "de47f1bf1d22146ba59dd7df8c3299f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13192, "upload_time": "2017-11-03T13:40:12", "url": "https://files.pythonhosted.org/packages/30/8c/719fce2c6b0ef834d448c7d4c454207124ace2c2beb31835e88aab891a69/openbrokerapi-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "bc0962ebf55e4afae96f8b1b557c2a22", "sha256": "1e8819fff6e4db92223a0fa9d721cf4238c7510740d1e6584105bf210a334a2a" }, "downloads": -1, "filename": "openbrokerapi-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bc0962ebf55e4afae96f8b1b557c2a22", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 21145, "upload_time": "2017-11-06T15:59:54", "url": "https://files.pythonhosted.org/packages/a8/cb/a668953c8299e266ffb24b57c6419bdee1065625f40ad3eff2fd112221f2/openbrokerapi-0.5.0-py3-none-any.whl" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "7fe1100093c9bebf3ec0e83563d3014f", "sha256": "fa86a53905fcab6cb590c5838c5a487ade9d3acad28eb47b451abca36999f1cd" }, "downloads": -1, "filename": "openbrokerapi-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7fe1100093c9bebf3ec0e83563d3014f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 22128, "upload_time": "2017-12-06T09:37:18", "url": "https://files.pythonhosted.org/packages/ef/95/5ee0e13ab3c3e5c88cd09ead4fb35481c2ca01fcead51d8d837ef802773a/openbrokerapi-1.0.0-py3-none-any.whl" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "8cf67e0b181dd2e93962ba2890e6fc76", "sha256": "449262e9b448d46effd124868cd98fe05fedd4a5b4685247a0404a08a6f1ffd5" }, "downloads": -1, "filename": "openbrokerapi-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8cf67e0b181dd2e93962ba2890e6fc76", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 22625, "upload_time": "2018-02-03T19:26:03", "url": "https://files.pythonhosted.org/packages/3a/ff/52c0777eb32bfc2f85f7bf32f674a7be3fd16ec87a03c7f34b3a8d95854c/openbrokerapi-2.0.0-py3-none-any.whl" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "f90f407b7fc829c37bb3083bd5316f94", "sha256": "5336d97e4d9422451ffb4bc53641a4afba3083bb433fc7e5244597669188c8aa" }, "downloads": -1, "filename": "openbrokerapi-3.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f90f407b7fc829c37bb3083bd5316f94", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14485, "upload_time": "2018-10-25T19:50:32", "url": "https://files.pythonhosted.org/packages/15/90/49ef8fbf7ceafb55e89418b65b864947ec24f41d297bb46ebf5bf9930167/openbrokerapi-3.1.0-py3-none-any.whl" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "80668e1dcce383ef67bfa7596ce075a3", "sha256": "9cca55998d39ace11a15db115b6bba89251cc47c2aa7f7cf73be57e8a65f450d" }, "downloads": -1, "filename": "openbrokerapi-3.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "80668e1dcce383ef67bfa7596ce075a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14548, "upload_time": "2018-12-04T10:13:29", "url": "https://files.pythonhosted.org/packages/fb/a4/7bca764731bb99ba888edefb659bf1d453cf1dffdc5394da6bc61f0375a4/openbrokerapi-3.1.1-py3-none-any.whl" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "40c3a8455a4291526c51b748c7ec5120", "sha256": "5a9d380d72121defa3c38bf5a0901af7f760dda50d582fffdb5112105e3c6deb" }, "downloads": -1, "filename": "openbrokerapi-3.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "40c3a8455a4291526c51b748c7ec5120", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14549, "upload_time": "2018-12-04T10:14:25", "url": "https://files.pythonhosted.org/packages/17/28/0b326fb891f4739142f0237a54ace27efba60cc14902e14486e91e0669b6/openbrokerapi-3.2.0-py3-none-any.whl" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "959990e3217d1326576730a9efb2c89e", "sha256": "b16fdac401b3817eb1a834f01cec1c28f00b96837804b2a282c980577abb25e0" }, "downloads": -1, "filename": "openbrokerapi-3.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "959990e3217d1326576730a9efb2c89e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14576, "upload_time": "2018-12-04T10:46:09", "url": "https://files.pythonhosted.org/packages/94/f6/a27b1b53413eeb1784668e59c5f1c457461908a843bdda5b1e0542227207/openbrokerapi-3.2.1-py3-none-any.whl" } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "bab156c653069f5c61e09bf1ededa79f", "sha256": "e46afa6b6b5b5ffe7932a7db8010407375ac44ffe8d25dc6a4bd574d35a03ea2" }, "downloads": -1, "filename": "openbrokerapi-3.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "bab156c653069f5c61e09bf1ededa79f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14619, "upload_time": "2018-12-04T17:03:31", "url": "https://files.pythonhosted.org/packages/6d/07/b686c8ff3e03289512a92b386a4237fdb0f7a9740c5fe839c9eb72fa2c48/openbrokerapi-3.2.2-py3-none-any.whl" } ], "3.2.3": [ { "comment_text": "", "digests": { "md5": "b2f17a75a77974c40cf1af9e0eb702a9", "sha256": "f7a4861e6c801789d1188955ffd42369690b23d4ae7069fba1bc10da67513883" }, "downloads": -1, "filename": "openbrokerapi-3.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b2f17a75a77974c40cf1af9e0eb702a9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14666, "upload_time": "2019-01-15T20:12:27", "url": "https://files.pythonhosted.org/packages/db/55/a95a25c42ca5559a32df9140a75c9a584a6bfebd22e5b575ecfa0504efc7/openbrokerapi-3.2.3-py3-none-any.whl" } ], "3.2.4": [ { "comment_text": "", "digests": { "md5": "7090c510755948169ce87788b99cb498", "sha256": "35fcda24b6615d341a1ccadfad1469833b8a9b0d95b46ae826a25e8b2a705e80" }, "downloads": -1, "filename": "openbrokerapi-3.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "7090c510755948169ce87788b99cb498", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14728, "upload_time": "2019-01-15T20:28:55", "url": "https://files.pythonhosted.org/packages/76/db/131cfcd5a6609e8890e510b9231c848ef875b4ea8dd933ad2aec34c5b51a/openbrokerapi-3.2.4-py3-none-any.whl" } ], "3.2.5": [ { "comment_text": "", "digests": { "md5": "6a7aff0340e64e643e208364b64d52b9", "sha256": "ccdc43ba8e8a9cfc88a8e524bc9cc5593babc35aee5e0c2b368930992b3d3327" }, "downloads": -1, "filename": "openbrokerapi-3.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "6a7aff0340e64e643e208364b64d52b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14740, "upload_time": "2019-01-15T20:42:54", "url": "https://files.pythonhosted.org/packages/72/f3/b3e757fb224e33ca2ba2a0b78cdc600357ca04db86cd134049f690cfbc65/openbrokerapi-3.2.5-py3-none-any.whl" } ], "3.2.6": [ { "comment_text": "", "digests": { "md5": "9857521def9412ee1089c79e9f48cb20", "sha256": "84295873c9a80a58971e3faecef8b65b7727b74b41a307db60511a296e987400" }, "downloads": -1, "filename": "openbrokerapi-3.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "9857521def9412ee1089c79e9f48cb20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 14756, "upload_time": "2019-08-08T10:01:53", "url": "https://files.pythonhosted.org/packages/c7/a9/78f53d9f4f8fbe2eb225d2804528efcb149f6739d6c6afeb1b901aca41af/openbrokerapi-3.2.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25d8aef94216821a6d2aa48cf54b3fc9", "sha256": "353c113265842a50df691727453855546e361e0ecccaffe21b567587cdc6d1c4" }, "downloads": -1, "filename": "openbrokerapi-3.2.6.tar.gz", "has_sig": false, "md5_digest": "25d8aef94216821a6d2aa48cf54b3fc9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 13981, "upload_time": "2019-08-08T10:01:55", "url": "https://files.pythonhosted.org/packages/11/29/37d02a4a909095bd68d15974715f892133d906a0fa09ff83e99d89a878be/openbrokerapi-3.2.6.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "3db8b7d06e68655a87e81a5d7a771444", "sha256": "e87e23fcfd06c3d16817a930c9981958fa13c8d4db442be5cc9d99ee35d14b98" }, "downloads": -1, "filename": "openbrokerapi-4.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3db8b7d06e68655a87e81a5d7a771444", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 16912, "upload_time": "2019-10-12T13:06:52", "url": "https://files.pythonhosted.org/packages/76/48/83b23eb8afec9596695e785ca580fc8a186dd27387764cfc78818a79b067/openbrokerapi-4.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "07a30df664222197843ab961d9816516", "sha256": "f62e6d7d9fca6dd17bfd67425736bc938924f1ab3e32213c607a4a573d643abf" }, "downloads": -1, "filename": "openbrokerapi-4.0.0.tar.gz", "has_sig": false, "md5_digest": "07a30df664222197843ab961d9816516", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 15612, "upload_time": "2019-10-12T13:06:54", "url": "https://files.pythonhosted.org/packages/4b/2a/fe3f9c11dd8c07fe188dfaf2080d6ebadd75a49b3c00cca7a501153b2bd9/openbrokerapi-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "5cea7f2c09f1e0d584d37bb0779417e2", "sha256": "380cc4c48cb59a070e6c2cf775128fc302ebc278bea08adfc99c083e7636c601" }, "downloads": -1, "filename": "openbrokerapi-4.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5cea7f2c09f1e0d584d37bb0779417e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 16808, "upload_time": "2019-10-12T14:26:05", "url": "https://files.pythonhosted.org/packages/2f/66/263cf9f1473cfb717ed5cb3198bef9dfecceab6f0bdfdb3e0d85fd9649aa/openbrokerapi-4.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5aeb73b7437c6a57e9e3b159b3349bf9", "sha256": "51c6748a91fcf3e83a97b949374c8ba4631208f56f98ccf4484fc04a65306762" }, "downloads": -1, "filename": "openbrokerapi-4.0.1.tar.gz", "has_sig": false, "md5_digest": "5aeb73b7437c6a57e9e3b159b3349bf9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 15418, "upload_time": "2019-10-12T14:26:07", "url": "https://files.pythonhosted.org/packages/52/6b/4b8be1ac4e3d57a636e1737f451c6712d07b83880f582b128f994a9db4af/openbrokerapi-4.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5cea7f2c09f1e0d584d37bb0779417e2", "sha256": "380cc4c48cb59a070e6c2cf775128fc302ebc278bea08adfc99c083e7636c601" }, "downloads": -1, "filename": "openbrokerapi-4.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5cea7f2c09f1e0d584d37bb0779417e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 16808, "upload_time": "2019-10-12T14:26:05", "url": "https://files.pythonhosted.org/packages/2f/66/263cf9f1473cfb717ed5cb3198bef9dfecceab6f0bdfdb3e0d85fd9649aa/openbrokerapi-4.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5aeb73b7437c6a57e9e3b159b3349bf9", "sha256": "51c6748a91fcf3e83a97b949374c8ba4631208f56f98ccf4484fc04a65306762" }, "downloads": -1, "filename": "openbrokerapi-4.0.1.tar.gz", "has_sig": false, "md5_digest": "5aeb73b7437c6a57e9e3b159b3349bf9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 15418, "upload_time": "2019-10-12T14:26:07", "url": "https://files.pythonhosted.org/packages/52/6b/4b8be1ac4e3d57a636e1737f451c6712d07b83880f582b128f994a9db4af/openbrokerapi-4.0.1.tar.gz" } ] }