{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Other Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Documentation", "Topic :: Documentation :: Sphinx", "Topic :: Software Development", "Topic :: Software Development :: Documentation", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "=====================\nBeanbag Doc Utilities\n=====================\n\nThis is a collection of utilities to help with generating documentation for\nBeanbag-related products, including:\n\n* `Review Board`_ - Our widely-used open source code review product.\n* RBCommons_ - Our Review Board SaaS.\n* Djblets_ - A set of utilities and infrastructure for Django-based projects.\n* RBTools_ - Command line tools for Review Board and RBCommons.\n\n\n.. _Review Board: https://www.reviewboard.org/\n.. _RBCommons: https://www.rbcommons.com/\n.. _Djblets: https://github.com/djblets/djblets/\n.. _RBTools: https://github.com/reviewboard/rbtools/\n\n\nSphinx Extensions\n=================\n\nWe use Sphinx_ for our documentation, and have a number of extensions to help\nwith the generation of docs.\n\n\n.. _Sphinx: http://www.sphinx-doc.org/\n\n\nautodoc_utils\n-------------\n\nEnhances autodoc support for Beanbag's docstring format and to allow for\nexcluding content from docs.\n\n\nBeanbag's Docstrings\n~~~~~~~~~~~~~~~~~~~~\n\nBy setting ``napoleon_beanbag_docstring = True`` in :file:`conf.py`, and\nturning off ``napoleon_google_docstring``, Beanbag's docstring format can be\nused.\n\nThis works just like the Google docstring format, but with a few additions:\n\n* A new ``Context:`` section to describe what happens within the context of a\n context manager (including the variable).\n\n* New ``Model Attributes:`` and ``Option Args:`` sections for defining the\n attributes on a model or the options in a dictionary when using JavaScript.\n\n* New ``Deprecated:``, ``Version Added:``, and ``Version Changed:`` sections\n for defining version-related information.\n\n* Parsing improvements to allow for wrapping argument types across lines,\n which is useful when you have long module paths that won't fit on one line.\n\nThis requires the ``sphinx.ext.napoleon`` module to be loaded.\n\n\nExcluding Content\n~~~~~~~~~~~~~~~~~\n\nA module can define top-level ``__autodoc_excludes__`` or ``__deprecated__``\nlists. These are in the same format as ``__all__``, in that they take a list\nof strings for top-level classes, functions, and variables. Anything listed\nhere will be excluded from any autodoc code.\n\n``__autodoc_excludes__`` is particularly handy when documenting an\n``__init__.py`` that imports contents from a submodule and re-exports it\nin ``__all__``. In this case, autodoc would normally output documentation both\nin ``__init__.py`` and the submodule, but that can be avoided by setting::\n\n __autodoc_excludes = __all__\n\nExcludes can also be defined globally, filtered by the type of object the\ndocstring would belong to. See the documentation for autodoc-skip-member_ for\nmore information. You can configure this in ``conf.py`` by doing::\n\n autodoc_excludes = {\n # Applies to modules, classes, and anything else.\n '*': [\n '__dict__',\n '__doc__',\n '__module__',\n '__weakref__',\n ],\n 'class': [\n # Useful for Django models.\n 'DoesNotExist',\n 'MultipleObjectsReturned',\n 'objects',\n\n # Useful forms.\n 'base_fields',\n 'media',\n ],\n }\n\nThat's just an example, but a useful one for Django users.\n\nTo install this extension, add the following to your ``conf.py``::\n\n extensions = [\n ...\n 'beanbag_docutils.sphinx.ext.autodoc_utils',\n ...\n ]\n\n.. _autodoc-skip-member:\n http://www.sphinx-doc.org/en/stable/ext/autodoc.html#event-autodoc-skip-member\n\n\ncollect_files\n-------------\n\nCollects additional files in the build directory.\n\nThis is used to copy files (indicated by glob patterns) from the source\ndirectory into the destination build directory. Each destination file will be\nin the same relative place in the tree.\n\nThis is useful when you have non-ReST/image files that you want part of your\nbuilt set of files, perhaps containing metadata or packaging that you want to\nship along with the documentation.\n\nTo use this, you just need to add the extension in :file:`conf.py`::\n\n extensions = [\n ...\n 'beanbag_docutils.sphinx.ext.collect_files',\n ...\n ]\n\nAnd then configure ``collect_file_patterns`` to be a list of\nfilenames/glob patterns, like::\n\n collect_file_patterns = ['metadata.json', '*.pdf']\n\n\ndjango_utils\n------------\n\nAdds some improvements when working with Django-based classes in autodocs, and\nwhen referencing Django documentation.\n\nFirst, this will take localized strings using ``ugettext_lazy`` and turn them\ninto actual strings, which is useful for forms and models.\n\nSecond, this adds linking for setting-based documentation, allowing custom\nsettings (from ``django.conf.settings``) to be documented and referenced,\nlike so:\n\n.. code-block:: rst\n\n .. setting:: MY_SETTING\n\n Settings go here.\n\n And then to reference it: :setting:`MY_SETTING`.\n\nTo install this extension, add the following to your ``conf.py``::\n\n extensions = [\n ...\n 'beanbag_docutils.sphinx.ext.django_utils',\n ...\n ]\n\n\ngithub_linkcode\n---------------\n\nLinks source code for modules, classes, etc. to the correct line on GitHub.\nThis prevents having to bundle the source code along with the documentation,\nand better ties everything together.\n\nTo use this, simply add the following to ``conf.py``::\n\n from beanbag_docutils.sphinx.ext.github import github_linkcode_resolve\n\n extensions = [\n ...\n 'sphinx.ext.linkcode',\n ...\n ]\n\n linkcode_resolve = github_linkcode_resolve\n\n\nhttp_role\n---------\n\nProvides references for HTTP codes, linking to the matching docs on Wikipedia.\n\nTo create a link, simply do::\n\n This is :http:`404`.\n\nIf you want to use a different URL, you can add the following to\n``conf.py``::\n\n http_status_codes_url = 'http://mydomain/http/%s'\n\nWhere ``%s`` will be replaced by the HTTP code.\n\nTo install this extension, add the following to your ``conf.py``::\n\n extensions = [\n ...\n 'beanbag_docutils.sphinx.ext.http_role',\n ...\n ]\n\n\nintersphinx_utils\n-----------------\n\nEnhances Intersphinx by fixing issues with ``option`` references and by\nadding a new directive for setting a priority order for Intersphinx\ndocumentation sets to use.\n\nTo set the directives, use::\n\n .. default-intersphinx:: myapp1.5 python\n\n :ref:`some-reference`\n\nThis would ensure that references using Intersphinx without an explicit prefix\nwould first try ``myapp1.5`` and then ``python``. No other Intersphinx sets\nwould be used.\n\nTo install this extension, add the following to your ``conf.py``::\n\n extensions = [\n ...\n 'sphinx.ext.intersphinx',\n 'beanbag_docutils.sphinx.ext.intersphinx',\n ...\n ]\n\nNote that these extensions must be listed in this order.\n\n\nref_utils\n---------\n\nThis enhances references, allowing both Python and JavaScript references to\nbreak paths (like ``foo.bar.MyClass``) across multiple lines.\n\nTo install this extension, add the following to your ``conf.py``::\n\n extensions = [\n ...\n 'beanbag_docutils.sphinx.ext.ref_utils',\n ...\n ]\n\n\nretina_images\n-------------\n\nCopies all Retina versions of images (any with a ``@2x`` filename) into the\nbuild directory for the docs. This works well with scripts like retina.js_.\n\nTo install this extension, add the following to your ``conf.py``::\n\n extensions = [\n ...\n 'beanbag_docutils.sphinx.ext.retina_images',\n ...\n ]\n\n\n.. _retina.js: https://imulus.github.io/retinajs/\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/beanbaginc/beanbag-docutils", "keywords": "", "license": "MIT", "maintainer": "Christian Hammond", "maintainer_email": "christian@beanbaginc.com", "name": "beanbag-docutils", "package_url": "https://pypi.org/project/beanbag-docutils/", "platform": "", "project_url": "https://pypi.org/project/beanbag-docutils/", "project_urls": { "Homepage": "https://github.com/beanbaginc/beanbag-docutils" }, "release_url": "https://pypi.org/project/beanbag-docutils/1.7/", "requires_dist": [ "six", "Sphinx (>=1.7.1)" ], "requires_python": "", "summary": "Sphinx utility modules for Beanbag's documentation format.", "version": "1.7" }, "last_serial": 4961567, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "d616a95114b7b21436eca2cd3a614808", "sha256": "9836dc81290843d33e0952ce22dc670ba77b60d6f71d0e437e655daba393bb5f" }, "downloads": -1, "filename": "beanbag_docutils-1.0-py2.6.egg", "has_sig": true, "md5_digest": "d616a95114b7b21436eca2cd3a614808", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 24684, "upload_time": "2016-07-20T06:43:12", "url": "https://files.pythonhosted.org/packages/93/5c/d1b3bb359f78845727909fd6101ee5ff8b9371315f0ef54c05717958b780/beanbag_docutils-1.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "2ff67bddf0fc3392ad81abf106ad41a2", "sha256": "271240af4f29735e2b8bfff4966521fe54eecbf48ed4d3b2ee793cfa90ec9e8a" }, "downloads": -1, "filename": "beanbag_docutils-1.0-py2.7.egg", "has_sig": true, "md5_digest": "2ff67bddf0fc3392ad81abf106ad41a2", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24613, "upload_time": "2016-07-20T06:43:14", "url": "https://files.pythonhosted.org/packages/8a/7f/9a76885322e0e93074e862449b07c13572552ca927107e881fd02d0ac7c9/beanbag_docutils-1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e27067b91d6276414a1d15c20274b464", "sha256": "732ffa9510d59dbc36ecfa9b5cf165133ec2da5dc3991acf001f61b63ac76375" }, "downloads": -1, "filename": "beanbag_docutils-1.0-py2-none-any.whl", "has_sig": true, "md5_digest": "e27067b91d6276414a1d15c20274b464", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 15563, "upload_time": "2016-07-20T06:43:09", "url": "https://files.pythonhosted.org/packages/f9/5e/4e48ecc85b5b497e6c02a6ff84040773b6fe1e1eec377118a369dd1cc0a5/beanbag_docutils-1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5f34a57e511e61f581d8662ce5304a1", "sha256": "c36b8da70de635d483664024dc748d41bb1db2b893a92c4254231395f7fc85f0" }, "downloads": -1, "filename": "beanbag-docutils-1.0.tar.gz", "has_sig": true, "md5_digest": "b5f34a57e511e61f581d8662ce5304a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9705, "upload_time": "2016-07-20T06:43:16", "url": "https://files.pythonhosted.org/packages/06/5f/179d176f4d24d6f9973d79b1033edd928aa54136559cb3f3f4d9ba92cada/beanbag-docutils-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "8c2a9a4f677462126c1b619f27cda236", "sha256": "fd80d94c8b50f9c236786c977178647652e9b7cfb2d776e9a00b9feb02560198" }, "downloads": -1, "filename": "beanbag_docutils-1.1-py2.6.egg", "has_sig": true, "md5_digest": "8c2a9a4f677462126c1b619f27cda236", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 27987, "upload_time": "2016-11-18T10:41:52", "url": "https://files.pythonhosted.org/packages/d3/9f/c4a7001518b1864680b98780290158b294c324a5fd0c666a5b3dce06033c/beanbag_docutils-1.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "bdaf6c7e5d2e26f7a42001c5be451759", "sha256": "4b553c7ed71a96a8f4562016eb87c002b4046388510f1820f73ed995a35a01e7" }, "downloads": -1, "filename": "beanbag_docutils-1.1-py2.7.egg", "has_sig": true, "md5_digest": "bdaf6c7e5d2e26f7a42001c5be451759", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 27919, "upload_time": "2016-11-18T10:41:55", "url": "https://files.pythonhosted.org/packages/af/16/ec01e58e055cd3321afd4a41fa864db13d67f73a0a894ce96c6f488299be/beanbag_docutils-1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2442c70996946975e683693eb21ef4b0", "sha256": "534eef69098df123b1742c9fcca6e01814df0ca6f3411951c04d04f21e29fd91" }, "downloads": -1, "filename": "beanbag_docutils-1.1-py2-none-any.whl", "has_sig": true, "md5_digest": "2442c70996946975e683693eb21ef4b0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16995, "upload_time": "2016-11-18T10:41:49", "url": "https://files.pythonhosted.org/packages/bc/71/ac6d0fe6c401e861546d29cfd98c938ac5987da4881c7f912fc6547b849c/beanbag_docutils-1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed51e6abd40ad73def4257aa8f70e7ba", "sha256": "a5718d559c744f2d6d95a196980340361c851258067b12f2d5bb8e14fd9b9b31" }, "downloads": -1, "filename": "beanbag-docutils-1.1.tar.gz", "has_sig": true, "md5_digest": "ed51e6abd40ad73def4257aa8f70e7ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10663, "upload_time": "2016-11-18T10:41:58", "url": "https://files.pythonhosted.org/packages/e3/d4/f5bde31074a29f5ae4a85267bf46e190a873796b91029cd47637fba6b9c3/beanbag-docutils-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "01e8abcccc2513332d05096c9bc1a528", "sha256": "eb8f9bfe2ff4bbe27995bd94aff290d803f5af2916082101de6db6b388cde4b9" }, "downloads": -1, "filename": "beanbag_docutils-1.2-py2.6.egg", "has_sig": true, "md5_digest": "01e8abcccc2513332d05096c9bc1a528", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 31010, "upload_time": "2017-01-21T23:42:01", "url": "https://files.pythonhosted.org/packages/ec/b7/7bebf0372a51fa60f7eaf1f874d9ed3321580feffd7ff831735d44d61a80/beanbag_docutils-1.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a324185509a4aae08bb531b7979db63e", "sha256": "2405f4a2277ac19d31af2e6b0576ebbbbad5f5a832507872e98c2aceaf036f17" }, "downloads": -1, "filename": "beanbag_docutils-1.2-py2.7.egg", "has_sig": true, "md5_digest": "a324185509a4aae08bb531b7979db63e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 30933, "upload_time": "2017-01-21T23:42:03", "url": "https://files.pythonhosted.org/packages/15/14/418d62ac409d097d8b87d01538df9114bc5ba77f385949d645e0082e3a67/beanbag_docutils-1.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "87a80f1c4c0ae08846635126dfe95f4d", "sha256": "9b311fdc406a0a5a21691f046ec644db73822f9c138779c9ed03485a425222f6" }, "downloads": -1, "filename": "beanbag_docutils-1.2-py2-none-any.whl", "has_sig": true, "md5_digest": "87a80f1c4c0ae08846635126dfe95f4d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 18740, "upload_time": "2017-01-21T23:41:59", "url": "https://files.pythonhosted.org/packages/3e/6c/faad5ec51932f968dd347e708a367247ceea863ff6a6ab35f8511b4e762c/beanbag_docutils-1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8b8861b08d153163a96b4df62543f00", "sha256": "003bfa2f7ec0edbee7916957fbe1ca4c4b48e9f8cddb504fa2013c2ff4777036" }, "downloads": -1, "filename": "beanbag-docutils-1.2.tar.gz", "has_sig": true, "md5_digest": "f8b8861b08d153163a96b4df62543f00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11661, "upload_time": "2017-01-21T23:42:06", "url": "https://files.pythonhosted.org/packages/26/a0/7d3c48f4ed02b75a097bdff48d5558397802da3de7580b4e3f17f1315033/beanbag-docutils-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "2d94229656f8f0bafe67f3f69be92298", "sha256": "a7530808cce4503521f30086282589a4f64921fe22aed3b6baad407ae6a2f20a" }, "downloads": -1, "filename": "beanbag_docutils-1.3-py2.6.egg", "has_sig": true, "md5_digest": "2d94229656f8f0bafe67f3f69be92298", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 36113, "upload_time": "2017-05-24T04:18:22", "url": "https://files.pythonhosted.org/packages/63/57/384883e0385006d5d007eccdbb1aaaeab3771706f1f236ca6bfece2cc0a0/beanbag_docutils-1.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9871b451a4b760bdc0806a1c63751f2e", "sha256": "98f7d12607dfdca33db20d59af96bf881db4347b52fa17eed5e714aea99c9b6a" }, "downloads": -1, "filename": "beanbag_docutils-1.3-py2.7.egg", "has_sig": true, "md5_digest": "9871b451a4b760bdc0806a1c63751f2e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 36066, "upload_time": "2017-05-24T04:18:24", "url": "https://files.pythonhosted.org/packages/c3/8a/c760dab118dcc9582c41822e4681cc30e6530c456507401879a60832eb6d/beanbag_docutils-1.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "4d7c7a7cdd2b5202edef25e478a51b64", "sha256": "76ff18b1f78d343ad8779fd2c56b31952ec5444cf705075d6ca9433bff392603" }, "downloads": -1, "filename": "beanbag_docutils-1.3-py2-none-any.whl", "has_sig": true, "md5_digest": "4d7c7a7cdd2b5202edef25e478a51b64", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21713, "upload_time": "2017-05-24T04:18:20", "url": "https://files.pythonhosted.org/packages/d2/dd/57f3c30828b6040b70b5d58c05590d12f282a459d246d3d4d1b9a9aa4883/beanbag_docutils-1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac57a08ab04c2d4f55ee95c7397bdceb", "sha256": "242c90358447d5a1374f5dd598ac639abbfc036637bc43e3c27e249ab41e6ac2" }, "downloads": -1, "filename": "beanbag-docutils-1.3.tar.gz", "has_sig": true, "md5_digest": "ac57a08ab04c2d4f55ee95c7397bdceb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13980, "upload_time": "2017-05-24T04:18:27", "url": "https://files.pythonhosted.org/packages/5f/2a/7e3b43e051b57b4c661793c7360117a17f3c7f63597e9a71df3bf9f316de/beanbag-docutils-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "03fbf0c3ea2be4102d3f2de90348582b", "sha256": "7d3316ba882a7d5a9eb8e3b8553d0db301b76ac1f0f0aaf71fd2ee4dd02ad3b4" }, "downloads": -1, "filename": "beanbag_docutils-1.4-py2.6.egg", "has_sig": true, "md5_digest": "03fbf0c3ea2be4102d3f2de90348582b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 40891, "upload_time": "2017-05-26T01:20:53", "url": "https://files.pythonhosted.org/packages/bc/45/7b43ba6dc1194fad7ae217d1cc8dfdd1cb2e45b75e035ca1007606cacf8e/beanbag_docutils-1.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5375adaf5f2f33f994b3781609104942", "sha256": "17926cf5d241044e45302716400a7d2c92643a06377a124b4b2d56221645a386" }, "downloads": -1, "filename": "beanbag_docutils-1.4-py2.7.egg", "has_sig": true, "md5_digest": "5375adaf5f2f33f994b3781609104942", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40771, "upload_time": "2017-05-26T01:20:54", "url": "https://files.pythonhosted.org/packages/19/53/c9c910f066348dcd33eedf7af0c588a316f6588dd2882e54d2c755830d1b/beanbag_docutils-1.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "aefa0a4a18763e09b6426112a2e16b36", "sha256": "c07ce1d7752cf3ef50892538aa645dc19ea4cfe5cfdc0c9133f5b22cd82c9946" }, "downloads": -1, "filename": "beanbag_docutils-1.4-py2-none-any.whl", "has_sig": true, "md5_digest": "aefa0a4a18763e09b6426112a2e16b36", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24274, "upload_time": "2017-05-26T01:20:50", "url": "https://files.pythonhosted.org/packages/96/a8/a65989fa8c8eb1ec716b4a5dcc9b71ac76e296c35788330ea7bd35b2b3fd/beanbag_docutils-1.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a40bddd4a69a6ce2deffa50961f0d21", "sha256": "d722212ed13300ca0ca0c57f3830137ac70b150fc875e9238d0ee3d6b5eded6d" }, "downloads": -1, "filename": "beanbag-docutils-1.4.tar.gz", "has_sig": true, "md5_digest": "5a40bddd4a69a6ce2deffa50961f0d21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16086, "upload_time": "2017-05-26T01:20:55", "url": "https://files.pythonhosted.org/packages/ae/cc/f5704bd6a75abec912db158578f620d2aa707d3059eaa6ab6ea067a2b9b2/beanbag-docutils-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "533e178a3aacd01e3e29fdd150fa9b9e", "sha256": "5fa3fa867b6435f1e81c1e78cdb034156f795044c11900838b70fe1210300eb4" }, "downloads": -1, "filename": "beanbag_docutils-1.4.1-py2.6.egg", "has_sig": true, "md5_digest": "533e178a3aacd01e3e29fdd150fa9b9e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 41255, "upload_time": "2017-10-04T23:29:18", "url": "https://files.pythonhosted.org/packages/52/09/b510f90ce51d8af189f07fe5708d4088c0867ec34c13baf5d6db4d7e48a0/beanbag_docutils-1.4.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "7c7d6695eadb0d203d255e57e87b01c1", "sha256": "f9556b2883ee8f372350cdffe9c9764fdd776226c1e72050a4efc5c44076b6e3" }, "downloads": -1, "filename": "beanbag_docutils-1.4.1-py2.7.egg", "has_sig": true, "md5_digest": "7c7d6695eadb0d203d255e57e87b01c1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 41192, "upload_time": "2017-10-04T23:29:19", "url": "https://files.pythonhosted.org/packages/3f/41/4893fdb77eda283f87543c4affd182ef5d8d733ff80cef60185c6442ad33/beanbag_docutils-1.4.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "135bff7a286f3292476326bf8e0cf7ce", "sha256": "43e39e9e1c06d85d7c5a9197716012da91ffae37e86b9d07eb2001849b68be6a" }, "downloads": -1, "filename": "beanbag_docutils-1.4.1-py2-none-any.whl", "has_sig": true, "md5_digest": "135bff7a286f3292476326bf8e0cf7ce", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24444, "upload_time": "2017-10-04T23:29:16", "url": "https://files.pythonhosted.org/packages/1a/23/0a54ec21fb5a668673d186ba7863eacb7d25483dbfb22e71d83d9c1200f5/beanbag_docutils-1.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4db22342d2ac40d562a3d8809327c4bf", "sha256": "33320bfefd4678ae94f6794047ca30652bd45943fd24cc1d3cc29562ac8dbd0f" }, "downloads": -1, "filename": "beanbag-docutils-1.4.1.tar.gz", "has_sig": true, "md5_digest": "4db22342d2ac40d562a3d8809327c4bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16254, "upload_time": "2017-10-04T23:29:21", "url": "https://files.pythonhosted.org/packages/d2/4e/793df1d74e7fcd56ab0e27ad537ef5d6b714573c6af0658739c8b8509050/beanbag-docutils-1.4.1.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "db8282bd5ed1994da5dd3d9ed4a6be7c", "sha256": "f249fc117dbee96fa3d66032d1cc0e12e4b29f23382891ad588dd109d2bb4f30" }, "downloads": -1, "filename": "beanbag_docutils-1.5-py2.6.egg", "has_sig": true, "md5_digest": "db8282bd5ed1994da5dd3d9ed4a6be7c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 41849, "upload_time": "2017-11-11T00:59:32", "url": "https://files.pythonhosted.org/packages/1a/a2/3f696c21a71de6536a72b204c481508d8557a1b953559f1d0eef1fa14cc7/beanbag_docutils-1.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "27eabd7e6ef7907a0d7ab9741e429317", "sha256": "058305bd36104a100255fc474f59ee88f8b52c8c4ead034a8e2d86b9fb7c37e0" }, "downloads": -1, "filename": "beanbag_docutils-1.5-py2.7.egg", "has_sig": true, "md5_digest": "27eabd7e6ef7907a0d7ab9741e429317", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 41787, "upload_time": "2017-11-11T00:59:36", "url": "https://files.pythonhosted.org/packages/83/39/5ec097d7684027f996a626f4336df7760e1071dbc3939104003424eb7dc9/beanbag_docutils-1.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "cd6e539631a020f6e3018a42201e5323", "sha256": "2c76e90c4b1ada18b8cb5c3cdf16fd6e7cb0abedcdde232de71029d678906620" }, "downloads": -1, "filename": "beanbag_docutils-1.5-py2-none-any.whl", "has_sig": true, "md5_digest": "cd6e539631a020f6e3018a42201e5323", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24736, "upload_time": "2017-11-11T00:59:30", "url": "https://files.pythonhosted.org/packages/b6/a1/bcc2d1ec7e26b815a7a65395d40cf7f437decda584fce99f269738eb1a6b/beanbag_docutils-1.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "764d5110ca2814c5969b4d394296521f", "sha256": "d9c0e1aec5e0770988f66c5de27842ef378c4c52c5963db944622ff2a0baceaf" }, "downloads": -1, "filename": "beanbag-docutils-1.5.tar.gz", "has_sig": true, "md5_digest": "764d5110ca2814c5969b4d394296521f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16564, "upload_time": "2017-11-11T00:59:37", "url": "https://files.pythonhosted.org/packages/34/d5/e8658ba00a8dc52230d371820552b7e96e45adbb353008ef298f6c3790fb/beanbag-docutils-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "0ab7c9654846c896c3f5c2c6a05d8656", "sha256": "09fdfb211c725691e1b6d85f97252e3f1abb99de2417df60ae60ab881ca87dc4" }, "downloads": -1, "filename": "beanbag_docutils-1.6-py2.6.egg", "has_sig": true, "md5_digest": "0ab7c9654846c896c3f5c2c6a05d8656", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 43286, "upload_time": "2017-11-21T03:35:28", "url": "https://files.pythonhosted.org/packages/e2/61/7940dc1cea09bc8c7b38d87e96a9c2183a1f6ac2e9760835602fb4104061/beanbag_docutils-1.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5d3a748e08a5b59ec0303ab8428da7d8", "sha256": "914ecab124fb8f2cc468a36cdca08e0cb87a7e4a4c753070bc38b6e0ed0881b4" }, "downloads": -1, "filename": "beanbag_docutils-1.6-py2.7.egg", "has_sig": true, "md5_digest": "5d3a748e08a5b59ec0303ab8428da7d8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 43215, "upload_time": "2017-11-21T03:35:29", "url": "https://files.pythonhosted.org/packages/72/20/64139955df58432c91bd89649a142e0a17f2c34818d5b79a3243517671b9/beanbag_docutils-1.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bbd40243a0507c0914e5d6580ea4ba83", "sha256": "448e92280c05c3fbb7008cbf2f7403004caa493d6e19d9732445489e0e26d2c0" }, "downloads": -1, "filename": "beanbag_docutils-1.6-py2-none-any.whl", "has_sig": true, "md5_digest": "bbd40243a0507c0914e5d6580ea4ba83", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 25322, "upload_time": "2017-11-21T03:35:26", "url": "https://files.pythonhosted.org/packages/bb/64/083ee87b80cb6969d3f2e3396e97b274ce449734ef753347615c56ce5198/beanbag_docutils-1.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d71227c574a5ec40c3913358220a1e4", "sha256": "d990fd97def7c31a72492bd47b51a5dbe624ef64c8cccc67e3ce351caa01eed1" }, "downloads": -1, "filename": "beanbag-docutils-1.6.tar.gz", "has_sig": true, "md5_digest": "2d71227c574a5ec40c3913358220a1e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17076, "upload_time": "2017-11-21T03:35:31", "url": "https://files.pythonhosted.org/packages/f4/f8/ce29eff39a313629ad6e92cd7c97874389642be5d78163318e87fe3a8e5d/beanbag-docutils-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "df332b971ae6e7e2467ace8788a9edd7", "sha256": "a2e1eb50556844a00c13247ccfdaf12e0f27e74c4e3f9ea0d697ed70e866de2d" }, "downloads": -1, "filename": "beanbag_docutils-1.7-py2.7.egg", "has_sig": true, "md5_digest": "df332b971ae6e7e2467ace8788a9edd7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 46994, "upload_time": "2018-06-15T03:50:58", "url": "https://files.pythonhosted.org/packages/13/a7/e0ff6a184608a23639d35d827ad91de6a42b37ec900c32985e21210342f7/beanbag_docutils-1.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "13781b8b4bebe9714e6faae3d510f9cf", "sha256": "d7a2531a0cb7b3c843aa9dcf47412e3703613f36fb3cf791ecdd523b9fbc0f26" }, "downloads": -1, "filename": "beanbag_docutils-1.7-py2-none-any.whl", "has_sig": true, "md5_digest": "13781b8b4bebe9714e6faae3d510f9cf", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 27221, "upload_time": "2018-06-15T03:50:56", "url": "https://files.pythonhosted.org/packages/f6/01/8cf39831050ec10f889b7da4088bc6b221c27dc0c0189accb276fcdb3c85/beanbag_docutils-1.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74f662f87d69ac268af40e290ee3f2b1", "sha256": "1a870f8434963a7982b41af2931154cddf8c3ec652020c79f7246fcb2f155a1a" }, "downloads": -1, "filename": "beanbag-docutils-1.7.tar.gz", "has_sig": true, "md5_digest": "74f662f87d69ac268af40e290ee3f2b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20111, "upload_time": "2018-06-15T03:51:00", "url": "https://files.pythonhosted.org/packages/14/9e/d0d68dc8e522dcaebf3cd4711c3f7520703fc609d1f10b0052d571ebbea4/beanbag-docutils-1.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "df332b971ae6e7e2467ace8788a9edd7", "sha256": "a2e1eb50556844a00c13247ccfdaf12e0f27e74c4e3f9ea0d697ed70e866de2d" }, "downloads": -1, "filename": "beanbag_docutils-1.7-py2.7.egg", "has_sig": true, "md5_digest": "df332b971ae6e7e2467ace8788a9edd7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 46994, "upload_time": "2018-06-15T03:50:58", "url": "https://files.pythonhosted.org/packages/13/a7/e0ff6a184608a23639d35d827ad91de6a42b37ec900c32985e21210342f7/beanbag_docutils-1.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "13781b8b4bebe9714e6faae3d510f9cf", "sha256": "d7a2531a0cb7b3c843aa9dcf47412e3703613f36fb3cf791ecdd523b9fbc0f26" }, "downloads": -1, "filename": "beanbag_docutils-1.7-py2-none-any.whl", "has_sig": true, "md5_digest": "13781b8b4bebe9714e6faae3d510f9cf", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 27221, "upload_time": "2018-06-15T03:50:56", "url": "https://files.pythonhosted.org/packages/f6/01/8cf39831050ec10f889b7da4088bc6b221c27dc0c0189accb276fcdb3c85/beanbag_docutils-1.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74f662f87d69ac268af40e290ee3f2b1", "sha256": "1a870f8434963a7982b41af2931154cddf8c3ec652020c79f7246fcb2f155a1a" }, "downloads": -1, "filename": "beanbag-docutils-1.7.tar.gz", "has_sig": true, "md5_digest": "74f662f87d69ac268af40e290ee3f2b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20111, "upload_time": "2018-06-15T03:51:00", "url": "https://files.pythonhosted.org/packages/14/9e/d0d68dc8e522dcaebf3cd4711c3f7520703fc609d1f10b0052d571ebbea4/beanbag-docutils-1.7.tar.gz" } ] }