mkdocs-python-classy


Namemkdocs-python-classy JSON
Version 0.1.3 PyPI version JSON
download
home_page
SummaryMkdocs plugin to view Python Classes.
upload_time2023-08-04 23:18:08
maintainer
docs_urlNone
authorKen Celenza
requires_python>=3.8,<4.0
licenseApache
keywords mkdocs
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # mkdocs-python-classy

<p align="center">

  <img src="https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/icon-mkdocs-python-classy.png" class="logo" height="100px">
  <br>
  <a href="https://github.com/itdependsnetworks/mkdocs-python-classy/actions"><img src="https://github.com/itdependsnetworks/mkdocs-python-classy/actions/workflows/ci.yml/badge.svg?branch=main"></a>
  <a href="https://mkdocs-python-classy.readthedocs.io/en/latest"><img src="https://readthedocs.org/projects/mkdocs-python-classy/badge/"></a>
  <a href="https://pypi.org/project/mkdocs-python-classy/"><img src="https://img.shields.io/pypi/v/mkdocs-python-classy"></a>
  <a href="https://pypi.org/project/mkdocs-python-classy/"><img src="https://img.shields.io/pypi/dm/mkdocs-python-classy"></a>
  <br>
</p>

## Overview

A MkDocs plugin that helps you navigate the infuriating challenge of understanding a nested a Python class object. Trying to determine what attributes are available or what method does the class provide, and ultimately understanding the entire MRO (Method Resolution Order).

## Screenshots

The library works like any other mkdocs plugin.

From here you can see how the MRO is described, links to other Classes covered in the docs, and a convenience Python import config.

![MRO](https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/ui-view1.png)

From here you can see the details of the attributes on the class.

![Attributes](https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/ui-view2.png)

From here you can see how the code of the method is shown with line numbers, it is collapsible, and will even show multiple if the method is provided in multiple Classes in the MRO order! Additionally you can see the naviagation pane that is auto generated.

![Methods](https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/ui-view3.png)

## Documentation

Full web-based HTML documentation for this library can be found over on the [mkdocs-python-classy Docs](https://mkdocs-python-classy.readthedocs.io) website:

- [User Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/user/lib_overview/) - Overview, Using the library, Getting Started.
- [Administrator Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/admin/install/) - How to Install, Configure, Upgrade, or Uninstall the library.
- [Developer Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/dev/contributing/) - Extending the library, Code Reference, Contribution Guide.
- [Release Notes / Changelog](https://mkdocs-python-classy.readthedocs.io/en/latest/admin/release_notes/).
- [Frequently Asked Questions](https://mkdocs-python-classy.readthedocs.io/en/latest/user/faq/).

### Contributing to the Docs

All the Markdown source for the library documentation can be found under the [docs](https://github.com/itdependsnetworks/mkdocs-python-classy/tree/develop/docs) folder in this repository. For simple edits, a Markdown capable editor is sufficient - clone the repository and edit away.

If you need to view the fully generated documentation site, you can build it with [mkdocs](https://www.mkdocs.org/). A container hosting the docs will be started using the invoke commands (details in the [Development Environment Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/dev/dev_environment/#docker-development-environment)) on [http://localhost:8001](http://localhost:8001). As your changes are saved, the live docs will be automatically reloaded.

Any PRs with fixes or improvements are very welcome!

### Attribution

This project is largely based on the work of [Classy Class-Based Views.](https://ccbv.co.uk/) and [Classy Django REST Framework](https://www.cdrf.co/), see - [Attribution](https://mkdocs-python-classy.readthedocs.io/en/latest/dev/attribution/) for more details.

## Questions

<!-- For any questions or comments, please check the [FAQ](https://mkdocs-python-classy.readthedocs.io/en/latest/user/faq/) first. Feel free to also swing by the [Network to Code Slack](https://networktocode.slack.com/) (channel `#networktocode`), sign up [here](http://slack.networktocode.com/) if you don't have an account. -->


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "mkdocs-python-classy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "mkdocs",
    "author": "Ken Celenza",
    "author_email": "ken@celenza.org",
    "download_url": "https://files.pythonhosted.org/packages/51/e8/fbe71be16adc2669eae0809757526e66cc635f14b9bf3307d137eb5ecc5a/mkdocs_python_classy-0.1.3.tar.gz",
    "platform": null,
    "description": "# mkdocs-python-classy\n\n<p align=\"center\">\n\n  <img src=\"https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/icon-mkdocs-python-classy.png\" class=\"logo\" height=\"100px\">\n  <br>\n  <a href=\"https://github.com/itdependsnetworks/mkdocs-python-classy/actions\"><img src=\"https://github.com/itdependsnetworks/mkdocs-python-classy/actions/workflows/ci.yml/badge.svg?branch=main\"></a>\n  <a href=\"https://mkdocs-python-classy.readthedocs.io/en/latest\"><img src=\"https://readthedocs.org/projects/mkdocs-python-classy/badge/\"></a>\n  <a href=\"https://pypi.org/project/mkdocs-python-classy/\"><img src=\"https://img.shields.io/pypi/v/mkdocs-python-classy\"></a>\n  <a href=\"https://pypi.org/project/mkdocs-python-classy/\"><img src=\"https://img.shields.io/pypi/dm/mkdocs-python-classy\"></a>\n  <br>\n</p>\n\n## Overview\n\nA MkDocs plugin that helps you navigate the infuriating challenge of understanding a nested a Python class object. Trying to determine what attributes are available or what method does the class provide, and ultimately understanding the entire MRO (Method Resolution Order).\n\n## Screenshots\n\nThe library works like any other mkdocs plugin.\n\nFrom here you can see how the MRO is described, links to other Classes covered in the docs, and a convenience Python import config.\n\n![MRO](https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/ui-view1.png)\n\nFrom here you can see the details of the attributes on the class.\n\n![Attributes](https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/ui-view2.png)\n\nFrom here you can see how the code of the method is shown with line numbers, it is collapsible, and will even show multiple if the method is provided in multiple Classes in the MRO order! Additionally you can see the naviagation pane that is auto generated.\n\n![Methods](https://raw.githubusercontent.com/itdependsnetworks/mkdocs-python-classy/develop/docs/images/ui-view3.png)\n\n## Documentation\n\nFull web-based HTML documentation for this library can be found over on the [mkdocs-python-classy Docs](https://mkdocs-python-classy.readthedocs.io) website:\n\n- [User Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/user/lib_overview/) - Overview, Using the library, Getting Started.\n- [Administrator Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/admin/install/) - How to Install, Configure, Upgrade, or Uninstall the library.\n- [Developer Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/dev/contributing/) - Extending the library, Code Reference, Contribution Guide.\n- [Release Notes / Changelog](https://mkdocs-python-classy.readthedocs.io/en/latest/admin/release_notes/).\n- [Frequently Asked Questions](https://mkdocs-python-classy.readthedocs.io/en/latest/user/faq/).\n\n### Contributing to the Docs\n\nAll the Markdown source for the library documentation can be found under the [docs](https://github.com/itdependsnetworks/mkdocs-python-classy/tree/develop/docs) folder in this repository. For simple edits, a Markdown capable editor is sufficient - clone the repository and edit away.\n\nIf you need to view the fully generated documentation site, you can build it with [mkdocs](https://www.mkdocs.org/). A container hosting the docs will be started using the invoke commands (details in the [Development Environment Guide](https://mkdocs-python-classy.readthedocs.io/en/latest/dev/dev_environment/#docker-development-environment)) on [http://localhost:8001](http://localhost:8001). As your changes are saved, the live docs will be automatically reloaded.\n\nAny PRs with fixes or improvements are very welcome!\n\n### Attribution\n\nThis project is largely based on the work of [Classy Class-Based Views.](https://ccbv.co.uk/) and [Classy Django REST Framework](https://www.cdrf.co/), see - [Attribution](https://mkdocs-python-classy.readthedocs.io/en/latest/dev/attribution/) for more details.\n\n## Questions\n\n<!-- For any questions or comments, please check the [FAQ](https://mkdocs-python-classy.readthedocs.io/en/latest/user/faq/) first. Feel free to also swing by the [Network to Code Slack](https://networktocode.slack.com/) (channel `#networktocode`), sign up [here](http://slack.networktocode.com/) if you don't have an account. -->\n\n",
    "bugtrack_url": null,
    "license": "Apache",
    "summary": "Mkdocs plugin to view Python Classes.",
    "version": "0.1.3",
    "project_urls": null,
    "split_keywords": [
        "mkdocs"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab8993b7d8f1030e0bc2414dfc8537434730e8c5977e81766ff8da66792b2c3",
                "md5": "ed247d6ca756be8c83e91103b2954d65",
                "sha256": "fdcfe1cffb39069abdd00873556a88493f463448fad27337ca781e39ad3472a8"
            },
            "downloads": -1,
            "filename": "mkdocs_python_classy-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ed247d6ca756be8c83e91103b2954d65",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 13619,
            "upload_time": "2023-08-04T23:18:07",
            "upload_time_iso_8601": "2023-08-04T23:18:07.071950Z",
            "url": "https://files.pythonhosted.org/packages/ea/b8/993b7d8f1030e0bc2414dfc8537434730e8c5977e81766ff8da66792b2c3/mkdocs_python_classy-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51e8fbe71be16adc2669eae0809757526e66cc635f14b9bf3307d137eb5ecc5a",
                "md5": "fdf87482dc31211dc25ced5d2a3d3e66",
                "sha256": "a6ffdc7ac995b5773eaca97aea88cab43c10bb8e127b238ec052bd92389cc175"
            },
            "downloads": -1,
            "filename": "mkdocs_python_classy-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "fdf87482dc31211dc25ced5d2a3d3e66",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 13290,
            "upload_time": "2023-08-04T23:18:08",
            "upload_time_iso_8601": "2023-08-04T23:18:08.535964Z",
            "url": "https://files.pythonhosted.org/packages/51/e8/fbe71be16adc2669eae0809757526e66cc635f14b9bf3307d137eb5ecc5a/mkdocs_python_classy-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-04 23:18:08",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "mkdocs-python-classy"
}
        
Elapsed time: 0.09622s