{ "info": { "author": "Asko Soukka", "author_email": "asko.soukka@iki.fi", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 2", "Programming Language :: Python :: 3" ], "description": "Introduction\n------------\n\nThis package provides a Sphinx-extension to embed Robot Framework test suites,\ntest cases, or user keywords in into Sphinx-documents in spirit of the autodoc\nSphinx-extension.\n\n\nWhen to use?\n------------\n\nConsider not using this package.\n\nThis package was created before Robot Framework plain text syntax lexer\n(highlighting support) was implemented and included into Pygments (>= 1.6rc1).\nThis package was also created before Robot Framework's built-in libdoc-tool got\nReST-syntax support for embedded documentation syntax (>=1.7.5) and Robot\nFramework got new ReST-support (>= 1.8.2).\n\nNowadays, the easies way to embed Robot Framework code (plain text syntax) into\nSphinx-document should be to simply use the standard ``.. code-block::\nrobotframework`` or include libdoc-generated html with ``:download:``-syntax.\nYet, there may be some edge cases where this is the most convenient way to\nembed external Robot examples into your documentation.\n\n\nUsage\n-----\n\nAdd ``sphinxcontrib_robotdoc`` into the extensions list of your Sphinx\nconfiguration (``conf.py``)::\n\n extensions = [\n \"sphinxcontrib_robotdoc\",\n ]\n\nEmbed test cases and user keywords into your documentation with the\nfollowing custom Docutils-directives::\n\n .. robot-tests:: Test case title or RegExp.*\n :source: my_package:tests/acceptance/my_suite.robot\n :tags: bugs, new\n\n .. robot-keywords:: Keyword title or RegExp.*\n :source: my_package:tests/acceptance/my_suite.txt\n\nBoth directives (``robot-tests`` and ``robot-keywords``) take a regular\nexpression as their main option (or *content* in Docutils' terms) to filter the\nembeded test cases or keywords found from the given ``source``-resource (or\nrelative path). If no regular expression is given, all found tests or keywords\nwill be embedded (like having ``.*`` as the default).\n\nPath given to the mandatory ``source``-option must be either be a package\nresources (using syntax *package_name:resource/path/in/package*) or a relative\npath from the current document.\n\nThe test case directive (``robot-tests``) accepts also an option ``tags``,\nwhich is optional. It should inclue a comma separated list of the tags to be\nused when filtering the tests to be embedded.\n\nBoth directives take an optional ``style``-option. When ``style`` is set\nto ``expanded`` the output will include headings such as the table name and\ntest case or keyword name. When ``style`` is set to ``minimal`` the output\nwill include only the target documentation strings without any robot syntax.\n\nPlease, note that he documentation found from the embedded test is parsed\nusing Docutils, as a part of the target document. This differs from `Robot\nFramework`_'s own documentation tools, which expect its own custom markup.\n\n.. _Robot Framework: http://pypi.python.org/pypi/robotframework\n\n\nOther directives\n----------------\n\n``robot-source`` will embed a complete test suite or resource file with\nsyntax highlighting::\n\n .. robot-source::\n :source: my_package:tests/acceptance/my_suite.txt\n\n``robot-settings`` will embed a syntax highlighted settings table (with\ndocumentation parsed as reStructuredText) for a test suite a resource file::\n\n .. robot-settings::\n :source: my_package:tests/acceptance/my_suite.txt\n\n``robot-variables`` will embed a syntax highlighted variables table (with\ndocumentation parsed as reStructuredText) for a test suite a resource file::\n\n .. robot-variables::\n :source: my_package:tests/acceptance/my_suite.txt\n\nAlso directives ``robot-settings`` and ``robot-variables`` take an optional\n``style``-option. When ``style`` is set to ``expanded`` the output will\ninclude the table name.\n\n\nLaTeX output\n------------\n\nLaTeX output is based on Pygments LatexFormatter, which requires custom\nstyle definitions to be injeced into latex document preamble. That's done by\ndefault, but when Sphinx ``latex_preamble`` setting is set manually, it\nshould include the following::\n\n from pygments.formatters import LatexFormatter\n\n latex_elements['latex_preamble'] = '''\\\n \\usepackage{fancyvrb}\n \\usepackage{color}\n ''' + LatexFormatter().get_style_defs()\n\nChangelog\n=========\n\n0.10.0 (2018-05-11)\n-------------------\n\n- Add to release as universal wheel\n [Asko Soukka]\n- Changes for newer sphinx versions\n [Stein Heselmans]\n\n\n0.9.1 (2017-05-31)\n------------------\n\n- Allow for tabs in documentation of robot files\n [Stein Heselmans]\n\n\n0.9.0 (2017-05-21)\n------------------\n\n- Python 3 support\n [Stein Heselmans]\n\n\n0.8.0 (2015-10-09)\n------------------\n\n- Change to separate tags with double space instead comma\n [Asko Soukka]\n\n\n0.7.3 (2014-06-13)\n------------------\n\n- Added documentation generating for test-cases, keywords tags in expanded style.\n [Tomasz Kolek]\n\n\n0.7.2 (2013-10-19)\n------------------\n\n- Fix to use RobotFrameworkLexer from Pygments. Require Pygments >= 1.6rc1\n [Asko Soukka]\n- Drop dependency on robotframeworklexer, because it's included in Pygments\n [Asko Soukka]\n\n0.7.0 (2013-10-16)\n------------------\n\n- Rename directives to ``robot-source``, ``robot-settings``,\n ``robot-variables``, ``robot-tests`` and ``robot-keywords``, but keep\n the old directives for backwards compatibility.\n\n0.6.0 (2013-09-28)\n------------------\n\n- Add 'minimal' style for keywords directive to show keywords without\n their step definitions\n [Asko Soukka]\n\n0.5.1 (2013-08-13)\n------------------\n\n- Fix bug where multiline documentation in settings-part was not completely\n included\n [Pawel Sabat]\n\n0.5.0 (2013-05-17)\n------------------\n\n- Add support for resolving 'package:filename.robot'-paths using\n pkg_resources.resource_filename-method\n [Asko Soukka]\n- Fix bug where source directive resulted escaped html markup\n [Asko Soukka]\n\n0.4.1 (2013-03-24)\n------------------\n\n- Add Pygments-formatted output also for LaTex output [fixes #4]\n\n0.4.0 (2013-03-10)\n------------------\n\n- Add new directives robot_source, robot_settings and robot_variables\n- Fix relative path issue [fixes #2]\n- Refactor and add support for ForLoop-nodes [fixes #1]\n- Add align for BDD-keywords\n- Add syntax highlighting\n\n0.3.4 (2012-10-21)\n------------------\n\n- Fixed to use correct title style for test case and keyword titles.\n\n0.3.3 (2012-10-21)\n------------------\n\n- Fixed a bug where an empty/missing tags option is not parsed correctly.\n\n0.3.2 (2012-10-20)\n------------------\n\n- Refactored to use Docutils' nested_parse instead of publish_string (no more\n lxml and some support for inter-linking).\n\n0.3.1 (2012-10-18)\n------------------\n\n- Refactored to parse test/keyword documentation with\n docutils.core.publish_string (and append them as raw nodes) instead of trying\n to parse them into sphinx document tree.\n\n0.3.0 (2012-10-18)\n------------------\n\n- Added support for inline rst in test and keyword documentations.\n- Added support for *tags*.\n- Added alternative *source* option as an alias for *suite* option in tests.\n- Added alternative *source* and *resource* options as an alias for *suite*\n option in keywords.\n- Fixed to filter comment lines from steps.\n\n0.2.0 (2012-10-14)\n------------------\n\n- Fixed node adapters to return section instead of topics.\n\n0.1.1 (2012-10-14)\n------------------\n\n- Fixed parsing of resource-only files for keywords.\n\n0.1.0 (2012-10-14)\n------------------\n\n- Proof of concept.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/datakurre/sphinxcontrib-robotdoc/", "keywords": "", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "sphinxcontrib-robotdoc", "package_url": "https://pypi.org/project/sphinxcontrib-robotdoc/", "platform": "", "project_url": "https://pypi.org/project/sphinxcontrib-robotdoc/", "project_urls": { "Homepage": "https://github.com/datakurre/sphinxcontrib-robotdoc/" }, "release_url": "https://pypi.org/project/sphinxcontrib-robotdoc/0.10.0/", "requires_dist": null, "requires_python": "", "summary": "Sphinx extension to embed Robot Framework test cases and user keywords into Sphinx documents", "version": "0.10.0" }, "last_serial": 3855040, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "5f1dc773a90f35c14dab3ad50e05ed2d", "sha256": "8d302a385a50ac172557903377840878e05f0010eb912cdee277bdefe6c24048" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.1.0.zip", "has_sig": false, "md5_digest": "5f1dc773a90f35c14dab3ad50e05ed2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5404, "upload_time": "2012-10-14T18:42:13", "url": "https://files.pythonhosted.org/packages/dd/1e/5ccc380790998ecd53ff6b6301b83691ebab9d8714d9a770afd8b4f7432a/sphinxcontrib-robotdoc-0.1.0.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "c5e73aa69b322f5ac0678879ebfd1887", "sha256": "8d9f12f50a66e798d931fa1c6e25f001ecc8cf357cc4a4f32697baeafa76bd71" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.1.1.zip", "has_sig": false, "md5_digest": "c5e73aa69b322f5ac0678879ebfd1887", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5571, "upload_time": "2012-10-14T19:33:51", "url": "https://files.pythonhosted.org/packages/94/dc/19f6830a8f9ec4b959989a08135afdcfa0138d2de2ad9234bb2cae41a12a/sphinxcontrib-robotdoc-0.1.1.zip" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "b0fd2eb2b0d433ec0552b770273149e4", "sha256": "2581af345ca6ad9a4c72b720380af4b9ae5c9b04db701f00776574d194bf4125" }, "downloads": -1, "filename": "sphinxcontrib_robotdoc-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0fd2eb2b0d433ec0552b770273149e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11272, "upload_time": "2018-05-11T18:33:25", "url": "https://files.pythonhosted.org/packages/9d/ec/c89e5a0fc87f0e6db069489d2761f465ec702e0194f75a6e24d47be403b3/sphinxcontrib_robotdoc-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bafea883a73cc6b6eb5cc905420aab24", "sha256": "85ec95ca634d87f87299e4a63369780c286aca93f058f1aeb3eee4589c2f4431" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.10.0.tar.gz", "has_sig": false, "md5_digest": "bafea883a73cc6b6eb5cc905420aab24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9431, "upload_time": "2018-05-11T18:33:23", "url": "https://files.pythonhosted.org/packages/10/fa/e7c10983539e359f53f5fe254d983051bcb666db143db5a788676b9d4952/sphinxcontrib-robotdoc-0.10.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "c5c806ce530a285bf099b6b4983a2310", "sha256": "bf69934a90755455d184dd6270807ed8c1f43354c14fa733179b210d19be5bf3" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.2.0.zip", "has_sig": false, "md5_digest": "c5c806ce530a285bf099b6b4983a2310", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5700, "upload_time": "2012-10-14T20:20:22", "url": "https://files.pythonhosted.org/packages/7b/2e/ef3e233132016505b0b50000bb884ce2f627a908d9aa611208bb6728548f/sphinxcontrib-robotdoc-0.2.0.zip" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "e1ffd1ff3f537280e1216182911b7d4e", "sha256": "efc7b14c77b46c908abcf024853bf1c604f72255d47825d74712eb5c1cbd0e60" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.3.0.zip", "has_sig": false, "md5_digest": "e1ffd1ff3f537280e1216182911b7d4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6420, "upload_time": "2012-10-18T05:03:36", "url": "https://files.pythonhosted.org/packages/fe/53/fdcc2a300064be0f8ad1e1c9972009b13e6d093b7d5b5a90b147badad100/sphinxcontrib-robotdoc-0.3.0.zip" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "b4a7d54ae0256f9b88844b00a34dab0b", "sha256": "a4216ee18d3276b74a0b9cb2643fdc147296bbf7142faf4272c20b0645f922ca" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.3.1.zip", "has_sig": false, "md5_digest": "b4a7d54ae0256f9b88844b00a34dab0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7003, "upload_time": "2012-10-18T15:28:37", "url": "https://files.pythonhosted.org/packages/78/d5/80c323209534bd3ab8bfb528f646295b114fd69860ed254cae6b2f3312db/sphinxcontrib-robotdoc-0.3.1.zip" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "9f14036e8bbce4b1d07b29e6e93f7358", "sha256": "d0046dcca0ecf846153781a1d1b2edabd501e35eb32f53a9c4ac413e67aef945" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.3.2.zip", "has_sig": false, "md5_digest": "9f14036e8bbce4b1d07b29e6e93f7358", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6995, "upload_time": "2012-10-20T06:52:26", "url": "https://files.pythonhosted.org/packages/f0/5f/edb7593b511c274a15e2e0ce08b40ba088bd114430c74360b5ca144d9744/sphinxcontrib-robotdoc-0.3.2.zip" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "c4ae9e98d4a02fce882af96fd494e346", "sha256": "408147006249e7bba7ac4cd1905d48b00840c28231e8f3d09b030ea8ecf38bf8" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.3.3.zip", "has_sig": false, "md5_digest": "c4ae9e98d4a02fce882af96fd494e346", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7141, "upload_time": "2012-10-21T07:23:18", "url": "https://files.pythonhosted.org/packages/c3/7d/8d758050f3838b827617fe820c19df1a865f013d1ad8ee00b317808c25ae/sphinxcontrib-robotdoc-0.3.3.zip" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "cf76e0a13a3b30aa7f063255fd141dcf", "sha256": "8930959d318cb011d4133479277edcbf605a5f42724d86f4ea587fef8369092c" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.3.4.zip", "has_sig": false, "md5_digest": "cf76e0a13a3b30aa7f063255fd141dcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9088, "upload_time": "2012-10-21T10:32:36", "url": "https://files.pythonhosted.org/packages/61/83/d5620dbf5bc8dd279d6ebf9bd1cd8f49ed13d1f4363332eab2330826202c/sphinxcontrib-robotdoc-0.3.4.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "9d186e10ad8ca5dba41eb3e77d0bf8ee", "sha256": "e5947e99656c2581c90ce36870011b7f19b6cc0db4a58b7d44ee36aaecd89b64" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.4.0.zip", "has_sig": false, "md5_digest": "9d186e10ad8ca5dba41eb3e77d0bf8ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11537, "upload_time": "2013-03-10T06:20:01", "url": "https://files.pythonhosted.org/packages/bc/2d/be6b5e76b1cd0271f71c3e37fab21342abd6cb1d7bb1ca655ac332b4e762/sphinxcontrib-robotdoc-0.4.0.zip" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7d15427cb762adf895207edaa68a9eba", "sha256": "050daef05db15467e0948680abeae02dafb7fc6bd0be72595b6887699f08f688" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.4.1.zip", "has_sig": false, "md5_digest": "7d15427cb762adf895207edaa68a9eba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12626, "upload_time": "2013-03-24T19:45:52", "url": "https://files.pythonhosted.org/packages/5b/d4/ce2e6e83b36b34359cf3a190de792cb96d2b7f9f8065d50cfb2ed78cb98a/sphinxcontrib-robotdoc-0.4.1.zip" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "d902c67743a1b4e6bf2ebd365c1fff0a", "sha256": "52c0608fe55f2111691379ce786e7eef2c072ad1459228f56a4280a0779ddb93" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.5.0.zip", "has_sig": false, "md5_digest": "d902c67743a1b4e6bf2ebd365c1fff0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13235, "upload_time": "2013-05-17T16:13:22", "url": "https://files.pythonhosted.org/packages/14/8b/ad31cc0b2008d51fe8c00f902ef9de1a431af2fedb358b39735e414d244a/sphinxcontrib-robotdoc-0.5.0.zip" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "05ca166ede635e634869ad25e8170f7d", "sha256": "8cb868baf196f71f6c620d954a09b9c68a7487cc7149d72b7c2ed13fb7510b61" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.5.1.zip", "has_sig": false, "md5_digest": "05ca166ede635e634869ad25e8170f7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13435, "upload_time": "2013-08-13T14:02:43", "url": "https://files.pythonhosted.org/packages/d5/ca/766d8114945241d4dcadb8ef4d73f38f25d4b1566548f7dbeaebc836dcf5/sphinxcontrib-robotdoc-0.5.1.zip" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "30f032e8b27470819ed29fbfa0ccdc6c", "sha256": "a081a2428f0706bc35f65e5fcdef48274ab9429ffa5298733901cb574a15d681" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.6.0.zip", "has_sig": false, "md5_digest": "30f032e8b27470819ed29fbfa0ccdc6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13603, "upload_time": "2013-09-28T09:53:23", "url": "https://files.pythonhosted.org/packages/45/17/fc41e2c1fad6ac5d547db5be438fc6b92b79f0864e2e377b169f61ca5fdd/sphinxcontrib-robotdoc-0.6.0.zip" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "69dc8c29601ecd0c09cb65f757092052", "sha256": "d0026041214e48231d72cb7d1fe2842ccb8fb8ddd900509db1cc5b1434acff03" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.7.0.zip", "has_sig": false, "md5_digest": "69dc8c29601ecd0c09cb65f757092052", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14802, "upload_time": "2013-10-16T04:20:08", "url": "https://files.pythonhosted.org/packages/aa/65/4107ab8e1824a9f3ba55391175172504410ad7f02c22bc29ac397409af5a/sphinxcontrib-robotdoc-0.7.0.zip" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "f0633b367b261314b76d07a650794880", "sha256": "9b908b529875b58f9b9e107c3c01ada8c4c0e34616e540ffad6db7136429ecd1" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.7.1.zip", "has_sig": false, "md5_digest": "f0633b367b261314b76d07a650794880", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14909, "upload_time": "2013-10-18T18:26:55", "url": "https://files.pythonhosted.org/packages/68/9b/df6eb89b0cde7e95e865c8eb04ac5992a7cb42aa8709d77c355e91115521/sphinxcontrib-robotdoc-0.7.1.zip" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "edf3553680f9082e23911bdea54ce9ba", "sha256": "31d5ee8e7fe405c4f01c8e349b242420af09296be8776f07ec8205af901ed50a" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.7.2.zip", "has_sig": false, "md5_digest": "edf3553680f9082e23911bdea54ce9ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15041, "upload_time": "2013-10-19T04:54:05", "url": "https://files.pythonhosted.org/packages/5c/6a/c7384afed59dc052eea5deba1734e52c2bfcb61e884e111e7f7adfeb7344/sphinxcontrib-robotdoc-0.7.2.zip" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "9f4e56467547c9070e8be629df445052", "sha256": "095e0084e81508df33cbe30f82b6baef09022311cc26c034a6a4f1a70dcd5261" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.7.3.zip", "has_sig": false, "md5_digest": "9f4e56467547c9070e8be629df445052", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15578, "upload_time": "2014-06-13T06:58:01", "url": "https://files.pythonhosted.org/packages/99/3e/ebdf678481fe999e010f8a487a6c27bea160c843e7c067c61bee5d47c0bc/sphinxcontrib-robotdoc-0.7.3.zip" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "66bacf05344d25c97a7e1b4b55f2b78a", "sha256": "7ece7afc3c3de332d4336a693b07ed7c7215cd62de851c796b7470198a62a45f" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.7.4.zip", "has_sig": false, "md5_digest": "66bacf05344d25c97a7e1b4b55f2b78a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15636, "upload_time": "2014-09-05T08:26:54", "url": "https://files.pythonhosted.org/packages/d3/9f/6564302c94d8aad3b59d795805c52eef724562d06a5ec556c351b22581bf/sphinxcontrib-robotdoc-0.7.4.zip" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "875c2718bd6466eec62e2b63ec7a34bc", "sha256": "b5e1608d5216b1b08c7c7a8d076c1915f3c91acbc3059ced3d71f6dfe6a5ec7f" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.8.0.tar.gz", "has_sig": false, "md5_digest": "875c2718bd6466eec62e2b63ec7a34bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7812, "upload_time": "2015-10-09T11:12:07", "url": "https://files.pythonhosted.org/packages/bd/03/6105275a3b2db05fe7ea799b504af76a78199bf89f1ebdeb62583fce8fb6/sphinxcontrib-robotdoc-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "3df3cdbc8180a8254b9231aad7e2dab0", "sha256": "dab3b900842944af035548f40ce76afb396386517933d7216aca42ad4c963287" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.9.0.tar.gz", "has_sig": false, "md5_digest": "3df3cdbc8180a8254b9231aad7e2dab0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9221, "upload_time": "2017-05-21T11:14:51", "url": "https://files.pythonhosted.org/packages/5c/ea/b77e3cab46760d99e043d813393c1fd4e1c93ab6f3927a501be50c6ab3ab/sphinxcontrib-robotdoc-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "bb6f8759cc7848d279b80a4256c3f631", "sha256": "b6b5a759d324f3cca8665c881e5a77fa1425a87a1863e0d83d81cba69c09fabd" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.9.1.tar.gz", "has_sig": false, "md5_digest": "bb6f8759cc7848d279b80a4256c3f631", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7939, "upload_time": "2017-05-31T17:41:18", "url": "https://files.pythonhosted.org/packages/80/0e/9b717d8afbc286a886d38cb58e080a29fadaa8d289015f5315c21210db40/sphinxcontrib-robotdoc-0.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b0fd2eb2b0d433ec0552b770273149e4", "sha256": "2581af345ca6ad9a4c72b720380af4b9ae5c9b04db701f00776574d194bf4125" }, "downloads": -1, "filename": "sphinxcontrib_robotdoc-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0fd2eb2b0d433ec0552b770273149e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11272, "upload_time": "2018-05-11T18:33:25", "url": "https://files.pythonhosted.org/packages/9d/ec/c89e5a0fc87f0e6db069489d2761f465ec702e0194f75a6e24d47be403b3/sphinxcontrib_robotdoc-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bafea883a73cc6b6eb5cc905420aab24", "sha256": "85ec95ca634d87f87299e4a63369780c286aca93f058f1aeb3eee4589c2f4431" }, "downloads": -1, "filename": "sphinxcontrib-robotdoc-0.10.0.tar.gz", "has_sig": false, "md5_digest": "bafea883a73cc6b6eb5cc905420aab24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9431, "upload_time": "2018-05-11T18:33:23", "url": "https://files.pythonhosted.org/packages/10/fa/e7c10983539e359f53f5fe254d983051bcb666db143db5a788676b9d4952/sphinxcontrib-robotdoc-0.10.0.tar.gz" } ] }