{ "info": { "author": "Asko Soukka", "author_email": "asko.soukka@iki.fi", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Environment :: Web Environment", "Framework :: Sphinx :: Extension", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Documentation", "Topic :: Utilities" ], "description": "sphinxcontrib-httpexample\n=========================\n\n.. image:: https://secure.travis-ci.org/collective/sphinxcontrib-httpexample.png\n :target: http://travis-ci.org/collective/sphinxcontrib-httpexample\n\n.. image:: https://coveralls.io/repos/github/collective/sphinxcontrib-httpexample/badge.svg?branch=master\n :target: https://coveralls.io/github/collective/sphinxcontrib-httpexample?branch=master\n\n.. image:: https://badge.fury.io/py/sphinxcontrib-httpexample.svg\n :target: https://badge.fury.io/py/sphinxcontrib-httpexample\n\n.. image:: https://readthedocs.org/projects/sphinxcontrib-httpexample/badge/?version=latest\n :target: http://sphinxcontrib-httpexample.readthedocs.io/en/latest\n\nsphinxcontrib-httpexample enhances `sphinxcontrib-httpdomain`_, a Sphinx domain extension for describing RESTful HTTP APIs in detail, with a simple call example directive. The new directive provided by this extension generates RESTful HTTP API call examples for different tools from a single HTTP request example.\n\nThe audience for this extension are developers and technical writes documenting their RESTful HTTP APIs. This extension has originally been developed for documenting `plone.restapi`_.\n\n.. _sphinxcontrib-httpdomain: https://pythonhosted.org/sphinxcontrib-httpdomain/\n.. _plone.restapi: http://plonerestapi.readthedocs.org/\n\n\nFeatures\n--------\n\n* Directive for generating various RESTful HTTP API call examples from single HTTP request.\n\n* Supported tools:\n\n - curl_\n - wget_\n - httpie_\n - python-requests_\n\n.. _curl: https://curl.haxx.se/\n.. _wget: https://www.gnu.org/software/wget/\n.. _httpie: https://httpie.org/\n.. _python-requests: http://docs.python-requests.org/\n\n\nExamples\n--------\n\nThis extension has been used at least in the following documentations:\n\n* http://plonerestapi.readthedocs.org/\n* http://sphinxcontrib-httpexample.readthedocs.org/\n* https://guillotina.readthedocs.io/en/latest/\n\n\nDocumentation\n-------------\n\nFull documentation for end users can be found in the \"docs\" folder. It is also available online at http://sphinxcontrib-httpexample.readthedocs.org/\n\n\nInstallation\n------------\n\nAdd sphinxcontrib-httpexample into requirements of your product documentation and into the configuration file of your Sphinx documentation next to sphincontrib-httpdomain as follows:\n\n.. code:: python\n\n extensions = ['sphinxcontrib.httpdomain', 'sphinxcontrib.httpexample']\n\n\nLicense\n-------\n\nThe project is licensed under the GPLv2.\n\nChangelog\n=========\n\n0.10.3 (2019-05-01)\n-------------------\n\n- Re-release 0.10.2 with wheel\n [datakurre]\n\n\n0.10.2 (2019-05-01)\n-------------------\n\n- Add support for inline response examples without HTTP version\n (e.g. `HTTP 200 OK`)\n [datakurre]\n\n- Fix regression where support for reading request examples from\n external files was broken since 0.10.0\n [datakurre]\n\n0.10.1 (2019-03-19)\n-------------------\n\n- Fix issue where it was not possible to request exmples with\n float values in payload JSON [fixes #42]\n [datakurre]\n\n0.10.0 (2018-10-09)\n-------------------\n\n- Add support of the URL query parameters, using the `query` field.\n Given a line `:query param_name: param_value` in an http example\n directive, the key value pair `param_name`, `param_value` will be\n added to the request URL (and excluded from further processing).\n [ludaavics]\n\n Example::\n\n GET /items HTTP/1.1\n Host: localhost\n Accept: application/json\n Authorization: Basic dXNlcjpwYXNzd29yZA==\n\n :query from: 20170101\n :query to: 20171231\n :query user_id: 12\n :query limit: 20\n :query sort: date(asc)\n\n0.9.1 (2018-10-06)\n------------------\n\n- Fix packaging to include setup.cfg in sdist\n [datakurre]\n- Add the guillotina docs (which now uses httpexample)\n [cdevienne]\n\n0.9.0 (2018-07-22)\n------------------\n\n- Add support for inlining responses\n [cdevienne]\n\n0.8.1 (2018-06-27)\n------------------\n\n- Fixed error when parsing top level json lists\n [AWhetter]\n\n0.8.0 (2017-11-18)\n------------------\n\n- Fix to not strip out Accept/Content-Type headers in builders\n [dokai]\n\n- Improve logic to detect a JSON content type\n [dokai]\n\n- Use redirected input to pass request payload to httpie\n [dokai]\n\n- Fix quoting of non-trivial HTTP headers in builders\n [dokai]\n\n- Change to use declarative packaging (setup.cfg instead of setup.py)\n [datakurre]\n\n\n0.7.0 (2017-10-21)\n------------------\n\n- Allow the URL scheme (http or https) to be configured\n [dokai]\n\n- Quote the URL if it contains `&` characters in curl/httpie/wget examples\n [dokai]\n\n\n0.6.1 (2017-05-11)\n------------------\n\n- Release as universal wheel\n [datakurre]\n\n\n0.6.0 (2017-05-11)\n------------------\n\n- Support non-json requests\n [jaroel]\n\n- Support application/json; charset=utf-8\n [skyzyx]\n\n\n0.5.2 (2017-03-09)\n------------------\n\n- Fix packaging to include the files in static #3\n [csenger]\n\n\n0.5.1 (2017-03-05)\n------------------\n\n- Update README and documentation\n [datakurre]\n\n\n0.5.0 (2017-03-05)\n------------------\n\n- Change development status to beta\n [datakurre]\n\n\n0.4.2 (2017-03-05)\n------------------\n\n- Fix issue where wget basic auth required challenge from backend, which is not\n always available\n [datakurre]\n\n\n0.4.1 (2017-03-05)\n------------------\n\n- Fix issue where generate httpie-commands did not always set Accept and\n Content-Type -headers\n [datakurre]\n\n\n0.4.0 (2017-03-05)\n------------------\n\n- Add support for wget\n [datakurre]\n\n\n0.3.0 (2017-03-05)\n------------------\n\n- Add generic 'Authorization'-header support\n [datakurre]\n\n\n0.2.1 (2017-03-05)\n------------------\n\n- Fix issue where Authorization-header was always requires\n [datakurre]\n- Fix raise proper exception when parsing bad requests\n [datakurre]\n- Fix issue where httpie-builder did not quote values with spaces\n [datakurre]\n- Fix link to python-requests' documentation\n [datakurre]\n\n\n0.2.0 (2017-03-05)\n------------------\n\n- Add support for GET requests\n [datakurre]\n\n\n0.1.0 (2017-03-05)\n------------------\n\n- First release\n [datakurre]", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/collective/sphinxcontrib-httpexample", "keywords": "sphinx,extension,http,rest,documentation", "license": "GPL version 2", "maintainer": "", "maintainer_email": "", "name": "sphinxcontrib-httpexample", "package_url": "https://pypi.org/project/sphinxcontrib-httpexample/", "platform": "", "project_url": "https://pypi.org/project/sphinxcontrib-httpexample/", "project_urls": { "Homepage": "https://github.com/collective/sphinxcontrib-httpexample" }, "release_url": "https://pypi.org/project/sphinxcontrib-httpexample/0.10.3/", "requires_dist": null, "requires_python": "", "summary": "Adds example directive for sphinx-contrib httpdomain", "version": "0.10.3" }, "last_serial": 5211638, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "ad0141aa546acae2af1bc8cade42298b", "sha256": "d7f17ee52ed2fa04d8de3bbddbfefdbb787f6be03bc4d589f1959746569c6a80" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.1.0.tar.gz", "has_sig": false, "md5_digest": "ad0141aa546acae2af1bc8cade42298b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13823, "upload_time": "2017-03-04T23:54:19", "url": "https://files.pythonhosted.org/packages/81/6e/25855517435a369091d16add445baeba36a1da652a736124e366d44b934f/sphinxcontrib-httpexample-0.1.0.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "ca89253307b2ffe89e404ebe75f52e35", "sha256": "c0dc9bf17111f84768c048dc844d01f90722b8a711a4b92054bd06f57a575974" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ca89253307b2ffe89e404ebe75f52e35", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15240, "upload_time": "2018-10-09T02:49:49", "url": "https://files.pythonhosted.org/packages/39/f4/7d0970355c3767997f1a3e983763320c8520ce0dd9d369281152886920fb/sphinxcontrib_httpexample-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2e08c32027e8a233657348a4efff49e", "sha256": "8b75163c9da5d551858133f32a89c260c16e4ae8fa3f4be69a31bc9e182e1bb7" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.10.0.tar.gz", "has_sig": false, "md5_digest": "a2e08c32027e8a233657348a4efff49e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33037, "upload_time": "2018-10-09T02:49:48", "url": "https://files.pythonhosted.org/packages/ea/92/147234faf8a5d3079ebfca7fec09661de19e7d3a0f790edf43f4652395e0/sphinxcontrib-httpexample-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "a2c1afd0e66b3c21737b8cf830f2ebc7", "sha256": "f8a56157e0f3266a8553b04096703c5534b99589b63ccf9f55c1efffde9138d5" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2c1afd0e66b3c21737b8cf830f2ebc7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12239, "upload_time": "2019-03-19T17:29:20", "url": "https://files.pythonhosted.org/packages/12/17/76589e766ab1439f7c0de3bf0edb8add358ed30cfe45d35901a5d0b39f25/sphinxcontrib_httpexample-0.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a989249c33f29cd849851073c7f0cf97", "sha256": "5fe57125d2fe9e769299e6207dc350cb8764b55daf726617d692da28ca55d57b" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.10.1.tar.gz", "has_sig": false, "md5_digest": "a989249c33f29cd849851073c7f0cf97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33432, "upload_time": "2019-03-19T17:29:19", "url": "https://files.pythonhosted.org/packages/8b/db/6ad4949845e3c791255e39bb20865167731909d8120e9e207d8f0d0c088e/sphinxcontrib-httpexample-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "6fbeb404d6fec01e120459859d4722b6", "sha256": "3aa665c9803b4676b35550567627f1485918c8966782a022c5bd80513fa58c10" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.10.2.tar.gz", "has_sig": false, "md5_digest": "6fbeb404d6fec01e120459859d4722b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34345, "upload_time": "2019-05-01T06:36:45", "url": "https://files.pythonhosted.org/packages/eb/99/8b7149390032cb4be28a9dbfd8476ba9b9282528ee1842e419cafe4ac07f/sphinxcontrib-httpexample-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "ecb93d68ae70c304e437bb2867d20c3c", "sha256": "2e7705aeaece2c3f4de22500e32fa52d25347c3d4f9026e790633c9c2ba35e57" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecb93d68ae70c304e437bb2867d20c3c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12366, "upload_time": "2019-05-01T06:42:16", "url": "https://files.pythonhosted.org/packages/3f/e3/23736df3ddc60c629a66f2f5b2d4c2218bd43283f393d0911190f65c40bb/sphinxcontrib_httpexample-0.10.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f18333a1d5676abd3b5238f8f7e315c9", "sha256": "77ed3599a1a8e3eff414548066c8b9b7d4ca43694626c33c16a7a443d0d66512" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.10.3.tar.gz", "has_sig": false, "md5_digest": "f18333a1d5676abd3b5238f8f7e315c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34391, "upload_time": "2019-05-01T06:42:14", "url": "https://files.pythonhosted.org/packages/99/91/f9abc1b212b438bbb461296e307ae962635c4d3d14400ce16851959456b4/sphinxcontrib-httpexample-0.10.3.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "18fd39e5b89ccc87900dacd6d6c063d8", "sha256": "b0b36a65762936ce6fb4f15e2367a28749e2fcca8984375e616172f86346844b" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.2.0.tar.gz", "has_sig": false, "md5_digest": "18fd39e5b89ccc87900dacd6d6c063d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14960, "upload_time": "2017-03-05T08:51:57", "url": "https://files.pythonhosted.org/packages/a4/47/058e36f467b56dbcc1db88c235a9a3df677c4ff4686829bbaadb2579df38/sphinxcontrib-httpexample-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "97955658c37b4480392571b54ecfcdd6", "sha256": "908f867eba05ec849940f7be073f9237dde435c7e7ec0addc937df8c2c5c644f" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.2.1.tar.gz", "has_sig": false, "md5_digest": "97955658c37b4480392571b54ecfcdd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15945, "upload_time": "2017-03-05T09:45:30", "url": "https://files.pythonhosted.org/packages/b0/10/234544c3c27727c1327b178f7ab7986f7e0df663eebaa413060eedc10ff2/sphinxcontrib-httpexample-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "2ad3dd96e540fa16d6f7dea5126adbb0", "sha256": "c698823e028a104d4903446a9f43ed6d6c41d387cb8a775c2e2d70c92c197be0" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2ad3dd96e540fa16d6f7dea5126adbb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16753, "upload_time": "2017-03-05T11:07:17", "url": "https://files.pythonhosted.org/packages/5a/d8/32361e61b711c6b37aafa12f3a3a97e2a48ff6b881bcc0154caa49296432/sphinxcontrib-httpexample-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "7ada3dd78f6c3b694b3fcfebc6e3477a", "sha256": "1b975e7dddc0476d9559963bc55830cc1d8ae62924d21d13517b68dc99358e55" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.4.0.tar.gz", "has_sig": false, "md5_digest": "7ada3dd78f6c3b694b3fcfebc6e3477a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17273, "upload_time": "2017-03-05T11:36:34", "url": "https://files.pythonhosted.org/packages/e3/2a/67cac4b014fd79005cfc43deb82393d381a03864b80a726665731bbab89c/sphinxcontrib-httpexample-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "b17f3a124ea817bb342b30462f59687d", "sha256": "92d3fa9d08a16cc69a72b9151f7e3319380355e26ae95910cfef82f254bb1472" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.4.1.tar.gz", "has_sig": false, "md5_digest": "b17f3a124ea817bb342b30462f59687d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17332, "upload_time": "2017-03-05T11:58:09", "url": "https://files.pythonhosted.org/packages/a4/5b/47b810a5769bc81c92ff14ae551f4ffe8eb677b2ee0dbdb4f4110363a645/sphinxcontrib-httpexample-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "8d10bd4ed96d93ba71e2008b953824bc", "sha256": "c3facee62c17cef6e0c7ef87ff56a8f55bcfa34f6326bea63602b99e759448f4" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.4.2.tar.gz", "has_sig": false, "md5_digest": "8d10bd4ed96d93ba71e2008b953824bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17536, "upload_time": "2017-03-05T12:25:48", "url": "https://files.pythonhosted.org/packages/2e/5d/c273858034d70981ccb2982c4c84689192fac1e7a8579ca724f0a745415b/sphinxcontrib-httpexample-0.4.2.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "13485434329940a8210f3d200f5f2286", "sha256": "9991c11ace3564c814978c59d313d76825184f456ae5664966c2b6c3431fee36" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.5.0.tar.gz", "has_sig": false, "md5_digest": "13485434329940a8210f3d200f5f2286", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17575, "upload_time": "2017-03-05T12:34:41", "url": "https://files.pythonhosted.org/packages/a4/8c/11aaffa203494ecbe05a19a37c2bcc80b0a70c64d7a89241a6360547ad2f/sphinxcontrib-httpexample-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "50e3a3d3a2d8d4f49b296cd5b41cd0be", "sha256": "7e34b499b91db593428b7b5712accc570945d3d46f286415a604b5c2ec4f0fc8" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.5.1.tar.gz", "has_sig": false, "md5_digest": "50e3a3d3a2d8d4f49b296cd5b41cd0be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19197, "upload_time": "2017-03-05T15:55:07", "url": "https://files.pythonhosted.org/packages/5c/c3/a6d44bf3f8dd8b59578a758a42af9e153d0d2e21cd1919c085317c189fbc/sphinxcontrib-httpexample-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "737ed995d4287206b7bffb7716ca38f3", "sha256": "4f38b35578d8793921b0a7c9fbca2a5ec3a31deb95a00f6e0711b9651eb423b5" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.5.2.tar.gz", "has_sig": false, "md5_digest": "737ed995d4287206b7bffb7716ca38f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18761, "upload_time": "2017-03-09T12:46:38", "url": "https://files.pythonhosted.org/packages/5e/e2/c4f6bcb7e4d6755bdae4bae8a93ee7af9a777d7e9535170be962f0e3de60/sphinxcontrib-httpexample-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "225b0da1f7bc27e13b9b9e0b9291248a", "sha256": "52659e7ce8e951a236a28646f2e85668f776057da41040313678d0fbae0c4d2b" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "225b0da1f7bc27e13b9b9e0b9291248a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 11930, "upload_time": "2017-05-11T07:34:40", "url": "https://files.pythonhosted.org/packages/19/55/21b21e344209d7934c941b25e932a44c366afd7db2c8986cadab3d7c8c86/sphinxcontrib_httpexample-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3855aa175ff43fe97a31fcd1eb75d38f", "sha256": "baaf0c6365da871a29c5dc895ae55301a1323b8dec123c00f2e903257c93c229" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.6.0.tar.gz", "has_sig": false, "md5_digest": "3855aa175ff43fe97a31fcd1eb75d38f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20153, "upload_time": "2017-05-11T07:34:42", "url": "https://files.pythonhosted.org/packages/9f/d9/e8fb50f99ab50d6f3999b2c2fd303439cba51b3ac66ccc465dd4c3906574/sphinxcontrib-httpexample-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "960b28a72092dad8c03c669d3a151c35", "sha256": "2b7468fda5911d882a390eb4df741b5ec54f558cea71bd5ff9bf2eb6adf5fb6f" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "960b28a72092dad8c03c669d3a151c35", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11978, "upload_time": "2017-05-11T07:40:08", "url": "https://files.pythonhosted.org/packages/2c/5c/7736a2f8f54e30c50293b5d6a2bae2bcef3e16ce0b5e9c7d66cd8a27d6eb/sphinxcontrib_httpexample-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31b7ef93a2abb4a5c43a804a1fd13898", "sha256": "e373f21a9152e7dbd33c808736803e2e93b39ac30d4cffd1106708e2943ffd27" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.6.1.tar.gz", "has_sig": false, "md5_digest": "31b7ef93a2abb4a5c43a804a1fd13898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20214, "upload_time": "2017-05-11T07:40:10", "url": "https://files.pythonhosted.org/packages/b2/19/71155509d2e2735adc1ed0bbe0194196b6305ceca7f94eb099d90b6a4eef/sphinxcontrib-httpexample-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "7b53e89103aca2a935915af07ba57e10", "sha256": "669a9b17d80328f03d5e2339703b1075d6094dc44ca93446b689ae2a1c292521" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b53e89103aca2a935915af07ba57e10", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12282, "upload_time": "2017-10-20T22:45:36", "url": "https://files.pythonhosted.org/packages/fb/32/861dfa6e1d2ca419a751dd5da66e21fe18dfc674442714cfb85d1d48016c/sphinxcontrib_httpexample-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1adaaa0518bf4b83ba283e23ecef539", "sha256": "d1999f322cafdb1b55c6eb849ee99efc26061560b2898c4017a4bc49ae129db9" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.7.0.tar.gz", "has_sig": false, "md5_digest": "b1adaaa0518bf4b83ba283e23ecef539", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21077, "upload_time": "2017-10-20T22:45:38", "url": "https://files.pythonhosted.org/packages/86/98/2b7e82ab759137f7be7bf76ddcc00b28c07254aba000d9079594207ac6dc/sphinxcontrib-httpexample-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e6799a6ed1e228d6d6a69e0a9a6ba963", "sha256": "a592e18da3a416ec35675832f0c206d43c73b5c5c8c4969d03a7325b9f6ed524" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e6799a6ed1e228d6d6a69e0a9a6ba963", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13035, "upload_time": "2017-11-18T14:00:13", "url": "https://files.pythonhosted.org/packages/0c/9f/a2cfc5a86d81d985780c4422108183586505b7bcbb4831d8de731c6149dd/sphinxcontrib_httpexample-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6a3ec63ae7287d7c28082f927e062df", "sha256": "08493d94f8841bae599e2089c570c2d402044082028b16ae65f4f20059cc54d3" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.8.0.tar.gz", "has_sig": false, "md5_digest": "f6a3ec63ae7287d7c28082f927e062df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28970, "upload_time": "2017-11-18T14:00:12", "url": "https://files.pythonhosted.org/packages/38/5f/d58d38d785d85dde8b80b84132066b79a499b06c199cd9ebb7a61f5fe7ca/sphinxcontrib-httpexample-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "f8380044fada44f12d8dbaecf76c88aa", "sha256": "09fa11caa7791c6e4bf674fac9df9d3f6192f193d61cb0c3ec2f692d42c89fd6" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8380044fada44f12d8dbaecf76c88aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13121, "upload_time": "2018-06-27T12:11:02", "url": "https://files.pythonhosted.org/packages/0e/ba/6caeae9abbdcba6aace5f7a2e0f681f0161f34e86826af81bd27f11be4cc/sphinxcontrib_httpexample-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c86c7473d26d93b4017128ecf4fbcc06", "sha256": "82e531b3bde7c5b43cf5f388bea379c419b26b5393f8375182b2f9a82a4e4ad3" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.8.1.tar.gz", "has_sig": false, "md5_digest": "c86c7473d26d93b4017128ecf4fbcc06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28976, "upload_time": "2018-06-27T12:11:00", "url": "https://files.pythonhosted.org/packages/27/b7/ce8a40c0bd83421bee31b260b440ce3f63997534c2aa3725e3c4c6cb240e/sphinxcontrib-httpexample-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "41c6cb38abc12946aa52f77d1bbd18e7", "sha256": "6863273b24a7060d1318cdf5c07db81e0d3df077929b09a1552cd639adcf682d" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "41c6cb38abc12946aa52f77d1bbd18e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10742, "upload_time": "2018-07-22T05:53:55", "url": "https://files.pythonhosted.org/packages/23/81/de1f3d75b2ea53250288dbee19f4e02fc45f58c60763ce1a676411e6f267/sphinxcontrib_httpexample-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77296d7d993f43fb1d1d92f462c5ce7f", "sha256": "e0474d7ab165d0534ea2ab142d788ca005468d497c36e808ad62b3ea716d3624" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.9.0.tar.gz", "has_sig": false, "md5_digest": "77296d7d993f43fb1d1d92f462c5ce7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30118, "upload_time": "2018-07-22T05:53:54", "url": "https://files.pythonhosted.org/packages/a3/69/96b14fbf64d94e7f8cb0ca2d891827068c139d73081d220af4684c33d76e/sphinxcontrib-httpexample-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "2797ba22204e27b73fbeaf05c8649f66", "sha256": "9a755b93f7c2fae9b7056a1df5c59b516e1116d68086df2e52023ce0019fb451" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2797ba22204e27b73fbeaf05c8649f66", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13589, "upload_time": "2018-10-06T16:20:52", "url": "https://files.pythonhosted.org/packages/cc/d4/b987172943144d435397c9e2392862aaf5077ea92d3965330810e4362116/sphinxcontrib_httpexample-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c88fdd90ef51af81a6a6f3664dcb2d8f", "sha256": "8c89adde5a8bc1c3171f4ddbc72467d0e6a8da23724ea6764b799f19043c2c60" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.9.1.tar.gz", "has_sig": false, "md5_digest": "c88fdd90ef51af81a6a6f3664dcb2d8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30749, "upload_time": "2018-10-06T16:20:50", "url": "https://files.pythonhosted.org/packages/fe/2b/45c3aabe1e0608576b55af77bc338b25f038ff5e69587bf9490caa474b30/sphinxcontrib-httpexample-0.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ecb93d68ae70c304e437bb2867d20c3c", "sha256": "2e7705aeaece2c3f4de22500e32fa52d25347c3d4f9026e790633c9c2ba35e57" }, "downloads": -1, "filename": "sphinxcontrib_httpexample-0.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecb93d68ae70c304e437bb2867d20c3c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12366, "upload_time": "2019-05-01T06:42:16", "url": "https://files.pythonhosted.org/packages/3f/e3/23736df3ddc60c629a66f2f5b2d4c2218bd43283f393d0911190f65c40bb/sphinxcontrib_httpexample-0.10.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f18333a1d5676abd3b5238f8f7e315c9", "sha256": "77ed3599a1a8e3eff414548066c8b9b7d4ca43694626c33c16a7a443d0d66512" }, "downloads": -1, "filename": "sphinxcontrib-httpexample-0.10.3.tar.gz", "has_sig": false, "md5_digest": "f18333a1d5676abd3b5238f8f7e315c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34391, "upload_time": "2019-05-01T06:42:14", "url": "https://files.pythonhosted.org/packages/99/91/f9abc1b212b438bbb461296e307ae962635c4d3d14400ce16851959456b4/sphinxcontrib-httpexample-0.10.3.tar.gz" } ] }