{ "info": { "author": "Andrew Gallant", "author_email": "pdoc@burntsushi.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "License :: Public Domain", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Documentation", "Topic :: Software Development :: Documentation", "Topic :: Utilities" ], "description": "Module pdoc provides types and functions for accessing the public\ndocumentation of a Python module. This includes modules (and\nsub-modules), functions, classes and module, class and instance\nvariables. Docstrings are taken from modules, functions and classes\nusing the special ``__doc__`` attribute. Docstrings for variables are\nextracted by examining the module's abstract syntax tree.\n\nThe public interface of a module is determined through one of two ways.\nIf ``__all__`` is defined in the module, then all identifiers in that\nlist will be considered public. No other identifiers will be considered\nas public. Conversely, if ``__all__`` is not defined, then ``pdoc`` will\nheuristically determine the public interface. There are three rules that\nare applied to each identifier in the module:\n\n1. If the name starts with an underscore, it is **not** public.\n\n2. If the name is defined in a different module, it is **not** public.\n\n3. If the name refers to an immediate sub-module, then it is public.\n\nOnce documentation for a module is created with ``pdoc.Module``, it can\nbe output as either HTML or plain text using the covenience functions\n``pdoc.html`` and ``pdoc.text``, or the corresponding methods\n``pdoc.Module.html`` and ``pdoc.Module.text``.\n\nAlternatively, you may run an HTTP server with the ``pdoc`` script\nincluded with this module.\n\nCompatibility\n-------------\n\n``pdoc`` has been tested on Python 2.6, 2.7 and 3.3. It seems to work on\nall three.\n\nContributing\n------------\n\n``pdoc`` `is on GitHub `__. Pull\nrequests and bug reports are welcome.\n\nLinking to other identifiers\n----------------------------\n\nIn your documentation, you may link to other identifiers in your module\nor submodules. Linking is automatically done for you whenever you\nsurround an identifier with a back quote (grave). The identifier name\nmust be fully qualified. For example, \\`pdoc.Doc.docstring\\` is correct\nwhile \\`Doc.docstring\\` is incorrect.\n\nIf the ``pdoc`` script is used to run an HTTP server, then external\nlinking to other packages installed is possible. No extra work is\nnecessary; simply use the fully qualified path. For example,\n\\`nflvid.slice\\` will create a link to the ``nflvid.slice`` function,\nwhich is **not** a part of ``pdoc`` at all.\n\nWhere does pdoc get documentation from?\n---------------------------------------\n\nBroadly speaking, ``pdoc`` gets everything you see from introspecting\nthe module. This includes words describing a particular module, class,\nfunction or variable. While ``pdoc`` does some analysis on the source\ncode of a module, importing the module itself is necessary to use\nPython's introspection features.\n\nIn Python, objects like modules, functions, classes and methods have a\nspecial attribute named ``__doc__`` which contains that object's\n*docstring*. The docstring comes from a special placement of a string in\nyour source code. For example, the following code shows how to define a\nfunction with a docstring and access the contents of that docstring:\n\n::\n\n #!python\n >>> def test():\n ... '''This is a docstring.'''\n ... pass\n ...\n >>> test.__doc__\n 'This is a docstring.'\n\nSomething similar can be done for classes and modules too. For classes,\nthe docstring should come on the line immediately following\n``class ...``. For modules, the docstring should start on the first line\nof the file. These docstrings are what you see for each module, class,\nfunction and method listed in the documentation produced by ``pdoc``.\n\nThe above just about covers *standard* uses of docstrings in Python.\n``pdoc`` extends the above in a few important ways.\n\nSpecial docstring conventions used by ``pdoc``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**Firstly**, docstrings can be inherited. Consider the following code\nsample:\n\n::\n\n #!python\n >>> class A (object):\n ... def test():\n ... '''Docstring for A.'''\n ...\n >>> class B (A):\n ... def test():\n ... pass\n ...\n >>> print(A.test.__doc__)\n Docstring for A.\n >>> print(B.test.__doc__)\n None\n\nIn Python, the docstring for ``B.test`` is empty, even though one was\ndefined in ``A.test``. If ``pdoc`` generates documentation for the above\ncode, then it will automatically attach the docstring for ``A.test`` to\n``B.test`` only if ``B.test`` does not have a docstring. In the default\nHTML output, an inherited docstring is grey.\n\n**Secondly**, docstrings can be attached to variables, which includes\nmodule (or global) variables, class variables and instance variables.\nPython by itself `does not allow docstrings to be attached to\nvariables `__. For example:\n\n::\n\n #!python\n variable = \"SomeValue\"\n '''Docstring for variable.'''\n\nThe resulting ``variable`` will have no ``__doc__`` attribute. To\ncompensate, ``pdoc`` will read the source code when it's available to\ninfer a connection between a variable and a docstring. The connection is\nonly made when an assignment statement is followed by a docstring.\n\nSomething similar is done for instance variables as well. By convention,\ninstance variables are initialized in a class's ``__init__`` method.\nTherefore, ``pdoc`` adheres to that convention and looks for docstrings\nof variables like so:\n\n::\n\n #!python\n def __init__(self):\n self.variable = \"SomeValue\"\n '''Docstring for instance variable.'''\n\nNote that ``pdoc`` only considers attributes defined on ``self`` as\ninstance variables.\n\nClass and instance variables can also have inherited docstrings.\n\n**Thirdly and finally**, docstrings can be overridden with a special\n``__pdoc__`` dictionary that ``pdoc`` inspects if it exists. The keys of\n``__pdoc__`` should be identifiers within the scope of the module. (In\nthe case of an instance variable ``self.variable`` for class ``A``, its\nmodule identifier would be ``A.variable``.) The values of ``__pdoc__``\nshould be docstrings.\n\nThis particular feature is useful when there's no feasible way of\nattaching a docstring to something. A good example of this is a\n`namedtuple `__:\n\n::\n\n #!python\n __pdoc__ = {}\n\n Table = namedtuple('Table', ['types', 'names', 'rows'])\n __pdoc__['Table.types'] = 'Types for each column in the table.'\n __pdoc__['Table.names'] = 'The names of each column in the table.'\n __pdoc__['Table.rows'] = 'Lists corresponding to each row in the table.'\n\n``pdoc`` will then show ``Table`` as a class with documentation for the\n``types``, ``names`` and ``rows`` members.\n\nNote that assignments to ``__pdoc__`` need to placed where they'll be\nexecuted when the module is imported. For example, at the top level of a\nmodule or in the definition of a class.\n\nIf ``__pdoc__[key] = None``, then ``key`` will not be included in the\npublic interface of the module.\n\nLicense\n-------\n\n``pdoc`` is in the public domain via the\n`UNLICENSE `__.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/BurntSushi/pdoc", "keywords": null, "license": "UNLICENSE", "maintainer": null, "maintainer_email": null, "name": "pdoc", "package_url": "https://pypi.org/project/pdoc/", "platform": "ANY", "project_url": "https://pypi.org/project/pdoc/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/BurntSushi/pdoc" }, "release_url": "https://pypi.org/project/pdoc/0.3.2/", "requires_dist": null, "requires_python": null, "summary": "A simple program and library to auto generate API documentation for Python modules.", "version": "0.3.2" }, "last_serial": 3924607, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "67288e9c7a0c8c5c5fbc02f7791a1337", "sha256": "c468ffd5375470e3a5602c5c6a252cbb163fcc05fdb5bdc0cad0dd23d58ed902" }, "downloads": -1, "filename": "pdoc-0.0.1.tar.gz", "has_sig": false, "md5_digest": "67288e9c7a0c8c5c5fbc02f7791a1337", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21897, "upload_time": "2013-08-09T03:29:51", "url": "https://files.pythonhosted.org/packages/ee/1a/52a61f3a15f1bf79b9f094192e0eeb4e8c56636c14e8fb19f82622b62a40/pdoc-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "40bbe89674212003e098b8dbd031b3f0", "sha256": "574a385dcef9992210e966b7d687d2d747124848a1ece377352a219908921a08" }, "downloads": -1, "filename": "pdoc-0.0.10.tar.gz", "has_sig": false, "md5_digest": "40bbe89674212003e098b8dbd031b3f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32949, "upload_time": "2013-08-10T18:00:42", "url": "https://files.pythonhosted.org/packages/af/78/8b5b45889cc54c8326fe56f4c8b27faf5f1d8fdd43ca26c8d0a5b82a33c1/pdoc-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "b3c047455b637f0b9912c3a1037e055c", "sha256": "935e868b0d743052cdd5720d0d7ea84577ec5c4002b62be0b6de039a08aae809" }, "downloads": -1, "filename": "pdoc-0.0.11.tar.gz", "has_sig": false, "md5_digest": "b3c047455b637f0b9912c3a1037e055c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34027, "upload_time": "2013-08-12T18:21:41", "url": "https://files.pythonhosted.org/packages/5b/49/60e3d0fa2ca6afa0858feb68e79b778c3d6e4ce052dfa4cb4b0eea457c84/pdoc-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "ec03f8f196319b17cf6558c53e7af20e", "sha256": "de4c065f1444581e52bafddc9619567dca6124f42699e8be8f059752bf51af6b" }, "downloads": -1, "filename": "pdoc-0.0.12.tar.gz", "has_sig": false, "md5_digest": "ec03f8f196319b17cf6558c53e7af20e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62854, "upload_time": "2013-08-13T03:54:49", "url": "https://files.pythonhosted.org/packages/db/a7/21bf7b0a212f24269fa4fdfd3476a94b536c87883ab76b27cb1643fdc17c/pdoc-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "1339c26b5d6145227f83230f31300499", "sha256": "efa426ea507c073495edf658cc2ad52d635f1445241981566dc960f2e0097452" }, "downloads": -1, "filename": "pdoc-0.0.13.tar.gz", "has_sig": false, "md5_digest": "1339c26b5d6145227f83230f31300499", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62870, "upload_time": "2013-08-13T04:13:17", "url": "https://files.pythonhosted.org/packages/6b/5c/c3a3bff9cc4f6dcbc45bbd6ac3b7541f650b312224bd1a662d3215f4c3a0/pdoc-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "38a8d4b58f004c7a820757ded40ed967", "sha256": "c51a8923259636f2e602dfd25f35d127c08d50ebb1a3af04f66acaf22eb85a0f" }, "downloads": -1, "filename": "pdoc-0.0.14.tar.gz", "has_sig": false, "md5_digest": "38a8d4b58f004c7a820757ded40ed967", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62917, "upload_time": "2013-08-13T04:33:53", "url": "https://files.pythonhosted.org/packages/2e/a1/5700978e21db282ea3e2402583a38c92b38bded814a9a0257730e3a3f503/pdoc-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "12c57e60671cf155e6da14817f9eb6b4", "sha256": "0bf0a866437a96613b60bb19745196e7f76bed4924d95b64653044d806126373" }, "downloads": -1, "filename": "pdoc-0.0.15.tar.gz", "has_sig": false, "md5_digest": "12c57e60671cf155e6da14817f9eb6b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37031, "upload_time": "2013-08-13T22:12:27", "url": "https://files.pythonhosted.org/packages/65/43/a4032da5aaa8b543fdbcb2870960f1721a36982400db0cb1975ec411be99/pdoc-0.0.15.tar.gz" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "a77c1bc9c4857410f04b89b641322d7c", "sha256": "27f72d7ef2cf52644fe8706441fc61d045ed5b1e7bc097cadc0de8475470d580" }, "downloads": -1, "filename": "pdoc-0.0.16.tar.gz", "has_sig": false, "md5_digest": "a77c1bc9c4857410f04b89b641322d7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71747, "upload_time": "2013-08-14T20:05:53", "url": "https://files.pythonhosted.org/packages/7c/1c/71e80d11eef9f0180e09c35cf31fe22cb3cbf1da3df2735134281627f273/pdoc-0.0.16.tar.gz" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "7a543090087d1c88f2156fc14a02ca84", "sha256": "f84a0aac5269b4e21eb3509e1a648549247c30981b47d3baab02d7b06aa11222" }, "downloads": -1, "filename": "pdoc-0.0.17.tar.gz", "has_sig": false, "md5_digest": "7a543090087d1c88f2156fc14a02ca84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71070, "upload_time": "2013-08-14T20:23:49", "url": "https://files.pythonhosted.org/packages/37/a0/e795918df904d23644aef6044e34a0e1b9772c42d456618be0fb7eafc086/pdoc-0.0.17.tar.gz" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "417d0e4b7e24509d9b17ecb7dbaa338e", "sha256": "181619bc005c33e5018053018062a3bd99121cec41fedc962b97e18ad58ee2bf" }, "downloads": -1, "filename": "pdoc-0.0.18.tar.gz", "has_sig": false, "md5_digest": "417d0e4b7e24509d9b17ecb7dbaa338e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71075, "upload_time": "2013-08-15T00:27:13", "url": "https://files.pythonhosted.org/packages/f3/b6/0969b3de39d92baa62d813c8b9960e94b14202106af1740329b12870b318/pdoc-0.0.18.tar.gz" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "c9a5eb9227d7d7954bb8645ecabc4487", "sha256": "d23f25a6a3f50913046cfe0e6daaf8402fd4363ab980cc3ad49e6236bb684066" }, "downloads": -1, "filename": "pdoc-0.0.19.tar.gz", "has_sig": false, "md5_digest": "c9a5eb9227d7d7954bb8645ecabc4487", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71049, "upload_time": "2013-08-15T00:34:35", "url": "https://files.pythonhosted.org/packages/43/98/034e96981ee5d6714292bff0a2a8d542479e7f4ebdc1bd31da7483fe058d/pdoc-0.0.19.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "8359918432614d74308a60c4c603a9d5", "sha256": "3c4af14bbd3a67b76fe94eda7d2a5226c4cd8cb4b43add1049056a19b430b205" }, "downloads": -1, "filename": "pdoc-0.0.2.tar.gz", "has_sig": false, "md5_digest": "8359918432614d74308a60c4c603a9d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30877, "upload_time": "2013-08-09T03:59:06", "url": "https://files.pythonhosted.org/packages/78/42/0477b6ab1717f546a51a38618b0a3d5e6b917e406d5e03aca9ffa0ce0dfa/pdoc-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "10451f3da32d35d58af9e93cfc8f01b5", "sha256": "1bd5b775c80b5ff00ef65625150d4448e637d153bfad221c986c54fc33ef6e4f" }, "downloads": -1, "filename": "pdoc-0.0.3.tar.gz", "has_sig": false, "md5_digest": "10451f3da32d35d58af9e93cfc8f01b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31552, "upload_time": "2013-08-09T04:01:02", "url": "https://files.pythonhosted.org/packages/41/51/b21501ee3ff2cec8d799ac72973b87204000b6c433bc2a7e530613845b67/pdoc-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "c89358da4f28fd5dea514cfc88c8a62f", "sha256": "b5a5e1b89bac1ce265db0f68a4c6a13799121bcde8ede8ed1b3ad329d824f0ba" }, "downloads": -1, "filename": "pdoc-0.0.4.tar.gz", "has_sig": false, "md5_digest": "c89358da4f28fd5dea514cfc88c8a62f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31555, "upload_time": "2013-08-09T04:02:32", "url": "https://files.pythonhosted.org/packages/7e/06/3d02e7cc0abdb61371e98a0952a5d79637214b540483b0260503409065e5/pdoc-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "4201b2c005d6ec2b69a7da9995aca361", "sha256": "4dd66f2c8d06a8df8e7c0095017958038db7149fbe9af01ce33303ef346842ec" }, "downloads": -1, "filename": "pdoc-0.0.5.tar.gz", "has_sig": false, "md5_digest": "4201b2c005d6ec2b69a7da9995aca361", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31645, "upload_time": "2013-08-09T04:05:09", "url": "https://files.pythonhosted.org/packages/c8/3f/0867e8fc8cfe9dc8ac0f2245c4b8e0d30b920e66ac44f28b8c61e3e4a691/pdoc-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "aeff421f90bd3f2c7be08054e674386e", "sha256": "156c1ee3db31c2ce7a8d4383a73fb2b8cb9d4b6989b53b5f65a7f35ab181da65" }, "downloads": -1, "filename": "pdoc-0.0.6.tar.gz", "has_sig": false, "md5_digest": "aeff421f90bd3f2c7be08054e674386e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31653, "upload_time": "2013-08-09T04:10:40", "url": "https://files.pythonhosted.org/packages/d9/d2/89de427c095398a07c6e5fcff8d6e5242e57490c0115c94690f0b485865e/pdoc-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "a86609eb27ea1da9600e5527fc53d38b", "sha256": "91c43e6bbec627a165b1e74ff265b5554c0da7d0666e17488882ca0ce27a1c17" }, "downloads": -1, "filename": "pdoc-0.0.7.tar.gz", "has_sig": false, "md5_digest": "a86609eb27ea1da9600e5527fc53d38b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31657, "upload_time": "2013-08-09T04:14:46", "url": "https://files.pythonhosted.org/packages/5c/77/bf9746bb1a33ff2f16d2c27acc25d5d728c84e80d72fe791c2232df337b8/pdoc-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "1f142fabf87d5691b584a30027398cd2", "sha256": "23a099640abd748b24c6914838e9cb1d8421b7e24c8055c2bd29a2edf2a31004" }, "downloads": -1, "filename": "pdoc-0.0.8.tar.gz", "has_sig": false, "md5_digest": "1f142fabf87d5691b584a30027398cd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31737, "upload_time": "2013-08-09T05:12:41", "url": "https://files.pythonhosted.org/packages/70/67/686f4d3a9fa2467e476c2509cf95e0f1f0b00772876337cbc7b9c9dbfc27/pdoc-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "f8ac6a6215eeb4d14de0499d420d9148", "sha256": "1462e251e044307488ac17ba43e48284ce23a17d73605e49585967bfb35f2abb" }, "downloads": -1, "filename": "pdoc-0.0.9.tar.gz", "has_sig": false, "md5_digest": "f8ac6a6215eeb4d14de0499d420d9148", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33181, "upload_time": "2013-08-10T16:00:35", "url": "https://files.pythonhosted.org/packages/86/1f/5a38d57c07a10fa98a2951c8ddce270ad9eb50f8455ec24fc97810ee04ba/pdoc-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "96f78b6c2d9301f9f3fa3a37f5aaf3cf", "sha256": "bc4f1ffecef2cf13251049cdfa8336b7b18913c3b2f7fc5f0e739377d16c8dc3" }, "downloads": -1, "filename": "pdoc-0.1.0.tar.gz", "has_sig": false, "md5_digest": "96f78b6c2d9301f9f3fa3a37f5aaf3cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71222, "upload_time": "2013-08-15T03:07:45", "url": "https://files.pythonhosted.org/packages/a5/17/16d1af8b47c558a4452251459ffed3dc91a7540aceb8e6035b3f1acc0170/pdoc-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "fe30ec1a51d43ded252f98e6175125e2", "sha256": "eafe05b5e08112fc8436266b6d923264de0dd5b2ab4c418712d7bef140027e4a" }, "downloads": -1, "filename": "pdoc-0.1.1.tar.gz", "has_sig": false, "md5_digest": "fe30ec1a51d43ded252f98e6175125e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71399, "upload_time": "2013-08-15T03:45:56", "url": "https://files.pythonhosted.org/packages/1e/ec/bfa7e21138db5a1e2e1941f391308f7fad6755c8c66bc9f1fd9c12e33266/pdoc-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "fa31f063304e615c0ff0ad3a5d198631", "sha256": "4ab3407a46fb3fc82dcefe79b6b185e61728db23711a6d21aa4557e38f49ae8a" }, "downloads": -1, "filename": "pdoc-0.1.2.tar.gz", "has_sig": false, "md5_digest": "fa31f063304e615c0ff0ad3a5d198631", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71555, "upload_time": "2013-08-15T04:47:38", "url": "https://files.pythonhosted.org/packages/5b/eb/07f8cbf0d4cc54356e4122261d58aa62cdab2f7ff9887a38a086c89be947/pdoc-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "94bcd9d395e19adca9a62d9b9d694476", "sha256": "00db9361d75d435838436120c79c8c3439042fbd5483c000f13e41df0f5c8cee" }, "downloads": -1, "filename": "pdoc-0.1.3.tar.gz", "has_sig": false, "md5_digest": "94bcd9d395e19adca9a62d9b9d694476", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71598, "upload_time": "2013-08-15T05:00:09", "url": "https://files.pythonhosted.org/packages/85/e0/6e069299061643e97f7bfc55e724d04e29f2f3fd4f373737f58a75cac89b/pdoc-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "09f0e950c3d2750d18981b73277204f0", "sha256": "f67a62b7ce51d88e703ac643f91c025a1bca0177e4bd0219b9f5b7c67454ca3b" }, "downloads": -1, "filename": "pdoc-0.1.4.tar.gz", "has_sig": false, "md5_digest": "09f0e950c3d2750d18981b73277204f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71975, "upload_time": "2013-08-15T15:23:24", "url": "https://files.pythonhosted.org/packages/aa/9d/7674446ac5623930be57027342d64984c31f3a71233432c3eedcbdb95862/pdoc-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "4bc4fbfdca3f40e3fb350285705c428b", "sha256": "b74e05e044d4987d3320f92b7d3861be04874e561ff4f7a75a605f8d8b9b1402" }, "downloads": -1, "filename": "pdoc-0.1.5.tar.gz", "has_sig": false, "md5_digest": "4bc4fbfdca3f40e3fb350285705c428b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72391, "upload_time": "2013-08-22T06:02:47", "url": "https://files.pythonhosted.org/packages/53/e2/970396c2d39bf9295e6069b5484d08a6878fc5654b038b2a0701ae1f94e4/pdoc-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "bbc2125024e16ad1fc61e40b4fbbfda7", "sha256": "5c92fe7f17d113af956e2c8e8b4bef2a070233c4bc6c7cfc422950e978a1c1a5" }, "downloads": -1, "filename": "pdoc-0.1.6.tar.gz", "has_sig": false, "md5_digest": "bbc2125024e16ad1fc61e40b4fbbfda7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69718, "upload_time": "2013-08-31T02:08:25", "url": "https://files.pythonhosted.org/packages/d9/e9/8cc46f09fbea7f7449710abfe462aea01aa9ba5e236051bde026d274e891/pdoc-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "d42153aa77e6ab5002ec0db1df4b6593", "sha256": "58584b19a2aa3a4dcb45ab419bfc6e337adde946c2b3715c9ab1100125fcdeeb" }, "downloads": -1, "filename": "pdoc-0.1.7.tar.gz", "has_sig": false, "md5_digest": "d42153aa77e6ab5002ec0db1df4b6593", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72273, "upload_time": "2013-09-10T17:50:02", "url": "https://files.pythonhosted.org/packages/d9/85/18290942354e1787adaf92f7ab3d53a956fd09f883a5cb9c242b36a03f45/pdoc-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "4c86ebbcadbe198275fd80093b349ed5", "sha256": "c992f888695f25288aaaab7055f0050cb80a9c582128849a157591e48dd8fb2e" }, "downloads": -1, "filename": "pdoc-0.1.8.tar.gz", "has_sig": false, "md5_digest": "4c86ebbcadbe198275fd80093b349ed5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73395, "upload_time": "2013-09-11T02:43:49", "url": "https://files.pythonhosted.org/packages/6b/b3/ae6993e97c9785e9eb151472fe5665a46cd4040ac5b77f9f50838db3b10e/pdoc-0.1.8.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "7b169eb34a160769bc9e0487040d0ed0", "sha256": "615987148d9b9486e7e75f96e7af4b85ade5817431f00d8ebe074f1cd622a1a7" }, "downloads": -1, "filename": "pdoc-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7b169eb34a160769bc9e0487040d0ed0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74850, "upload_time": "2014-02-21T02:53:24", "url": "https://files.pythonhosted.org/packages/62/ad/5462202dfa4545de281d33d2da6929b46b1287205e34d921da1c4d8a0e15/pdoc-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "6deb9a5d5031fc7047893c99bce34a35", "sha256": "8791e22cc83e5890768f1ec8f4d6ac61f3a1f9e77cf90abd7d0dc0f025380712" }, "downloads": -1, "filename": "pdoc-0.2.1.tar.gz", "has_sig": false, "md5_digest": "6deb9a5d5031fc7047893c99bce34a35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75815, "upload_time": "2014-03-05T04:31:38", "url": "https://files.pythonhosted.org/packages/c2/95/215e5eb357dee906020bf5216d5d059b629237da34fa7fd8b0d1d2e51f9e/pdoc-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "da2d4dbf527357aba4bd39bb31d0ddcf", "sha256": "708c9941c5035321101c4b5e044a98ff3cfd597f7872d6dae656f5e4b1e8c0e9" }, "downloads": -1, "filename": "pdoc-0.2.2.tar.gz", "has_sig": false, "md5_digest": "da2d4dbf527357aba4bd39bb31d0ddcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75855, "upload_time": "2014-05-10T16:00:12", "url": "https://files.pythonhosted.org/packages/2e/ff/913bfc61cd7dabc9831561f69bbbb76e204685a21ef340b717daf12abf92/pdoc-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "0087224032db04300dd16c19d2e7e1a4", "sha256": "02e6cb92029c72df24415b0d52bfce02cf291eb66838250b893001e364830ccc" }, "downloads": -1, "filename": "pdoc-0.2.3.tar.gz", "has_sig": false, "md5_digest": "0087224032db04300dd16c19d2e7e1a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75940, "upload_time": "2014-05-12T18:11:54", "url": "https://files.pythonhosted.org/packages/5a/fc/4a41f73cb6235232de768baf8727594bbcc1ab75ae351148aaabbf73141e/pdoc-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "13392ddab6f7411fe54c1ff993d1623b", "sha256": "10b11965561eec6f0175eb58b634a19c8ab70b34a868b4b1dda93b22e5a4d8b6" }, "downloads": -1, "filename": "pdoc-0.2.4.tar.gz", "has_sig": false, "md5_digest": "13392ddab6f7411fe54c1ff993d1623b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75961, "upload_time": "2014-07-22T00:21:12", "url": "https://files.pythonhosted.org/packages/29/bb/a8110ef193efd24e3b5a1fd96e845de1605cdafe5d3bd92818881693fe35/pdoc-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "69010f9f772679f2d0d71681724e3ac1", "sha256": "7b39788afd83475063cd0bf64567073b5f3036f634b82e3f857011231ddf8847" }, "downloads": -1, "filename": "pdoc-0.3.0.tar.gz", "has_sig": false, "md5_digest": "69010f9f772679f2d0d71681724e3ac1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76630, "upload_time": "2014-11-27T01:38:47", "url": "https://files.pythonhosted.org/packages/2d/8a/6c447cb2c1acfa63a87186ddfabfaa64708ad0bc5994f2d89aa08784d8e4/pdoc-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "423172bee215a84b95a018d60cd245b6", "sha256": "83b23c6dd83d45624d785778d5a3c3cb5541ecebdab4c48c554f98b797c0278f" }, "downloads": -1, "filename": "pdoc-0.3.1.tar.gz", "has_sig": false, "md5_digest": "423172bee215a84b95a018d60cd245b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76065, "upload_time": "2014-12-02T15:48:13", "url": "https://files.pythonhosted.org/packages/32/e0/f831eaa1969453fcb2094bc9d07eaf23772b28f568600b46a80f864a08e0/pdoc-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "edfc3a71e5845274102047f1e314fdef", "sha256": "7835909580d5a14a06bd3de4416cf17f86a146ecb12eeb5cd83d9a93d03e6d27" }, "downloads": -1, "filename": "pdoc-0.3.2.tar.gz", "has_sig": false, "md5_digest": "edfc3a71e5845274102047f1e314fdef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76536, "upload_time": "2016-03-23T17:58:45", "url": "https://files.pythonhosted.org/packages/d5/5a/f3951d743392004847d6fbf11f0159ac75674f69ed4578716d77c2a7f74f/pdoc-0.3.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "edfc3a71e5845274102047f1e314fdef", "sha256": "7835909580d5a14a06bd3de4416cf17f86a146ecb12eeb5cd83d9a93d03e6d27" }, "downloads": -1, "filename": "pdoc-0.3.2.tar.gz", "has_sig": false, "md5_digest": "edfc3a71e5845274102047f1e314fdef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76536, "upload_time": "2016-03-23T17:58:45", "url": "https://files.pythonhosted.org/packages/d5/5a/f3951d743392004847d6fbf11f0159ac75674f69ed4578716d77c2a7f74f/pdoc-0.3.2.tar.gz" } ] }