bolton-metaman


Namebolton-metaman JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/python-boltons/metaman
Summarymetadata manager (METAMAN)... Makes use of Python's dynamic nature to inspect a program's internals.
upload_time2022-06-06 21:27:39
maintainer
docs_urlNone
authorBryan M Bugyi
requires_python>=3.8
licenseMIT license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # metaman

**metadata manager (METAMAN)... Makes use of Python's dynamic nature to inspect a program's internals.**

_project status badges:_

[![CI Workflow](https://github.com/python-boltons/metaman/actions/workflows/ci.yml/badge.svg)](https://github.com/python-boltons/metaman/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/python-boltons/metaman/branch/master/graph/badge.svg)](https://codecov.io/gh/python-boltons/metaman)
[![Documentation Status](https://readthedocs.org/projects/bolton-metaman/badge/?version=latest)](https://bolton-metaman.readthedocs.io/en/latest/?badge=latest)
[![Package Health](https://snyk.io/advisor/python/bolton-metaman/badge.svg)](https://snyk.io/advisor/python/bolton-metaman)

_version badges:_

[![Project Version](https://img.shields.io/pypi/v/bolton-metaman)](https://pypi.org/project/bolton-metaman/)
[![Python Versions](https://img.shields.io/pypi/pyversions/bolton-metaman)](https://pypi.org/project/bolton-metaman/)
[![Cookiecutter: cc-python](https://img.shields.io/static/v1?label=cc-python&message=2022.01.04&color=d4aa00&logo=cookiecutter&logoColor=d4aa00)](https://github.com/python-boltons/cc-python)
[![Docker: pythonboltons/main](https://img.shields.io/static/v1?label=pythonboltons%20%2F%20main&message=2021.12.22&color=8ec4ad&logo=docker&logoColor=8ec4ad)](https://github.com/python-boltons/docker-python)


## Installation 🗹

To install `metaman` using [pip][9], run the following
commands in your terminal:

``` shell
python3 -m pip install --user bolton-metaman  # install metaman
```

If you don't have pip installed, this [Python installation guide][10] can guide
you through the process.

<!-- [[[[[kooky.cog
from pathlib import Path

lines = Path("./docs/design/design.md").read_text().split("\n")
if any(L.strip() for L in lines):
    fixed_lines = [L.replace("(.", "(./docs/design") if L.startswith("![") else L for L in lines]
    print("## Design Diagrams\n")
    print("\n".join(fixed_lines))
]]]]] -->
<!-- [[[[[end]]]]] -->


## Useful Links 🔗

* [API Reference][3]: A developer's reference of the API exposed by this
  project.
* [cc-python][4]: The [cookiecutter][5] that was used to generate this project.
  Changes made to this cookiecutter are periodically synced with this project
  using [cruft][12].
* [CHANGELOG.md][2]: We use this file to document all notable changes made to
  this project.
* [CONTRIBUTING.md][7]: This document contains guidelines for developers
  interested in contributing to this project.
* [Create a New Issue][13]: Create a new GitHub issue for this project.
* [Documentation][1]: This project's full documentation.


[1]: https://bolton-metaman.readthedocs.io/en/latest
[2]: https://github.com/python-boltons/metaman/blob/master/CHANGELOG.md
[3]: https://bolton-metaman.readthedocs.io/en/latest/modules.html
[4]: https://github.com/python-boltons/cc-python
[5]: https://github.com/cookiecutter/cookiecutter
[6]: https://docs.readthedocs.io/en/stable/
[7]: https://github.com/python-boltons/metaman/blob/master/CONTRIBUTING.md
[8]: https://github.com/python-boltons/metaman
[9]: https://pip.pypa.io
[10]: http://docs.python-guide.org/en/latest/starting/installation/
[11]: https://github.com/pypa/pipx
[12]: https://github.com/cruft/cruft
[13]: https://github.com/python-boltons/metaman/issues/new/choose

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/python-boltons/metaman",
    "name": "bolton-metaman",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Bryan M Bugyi",
    "author_email": "bryanbugyi34@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4d/3a/fc48cd2193e03b9ad0b508c0432007462a30f984979cdde172f8618f6502/bolton-metaman-0.1.2.tar.gz",
    "platform": null,
    "description": "# metaman\n\n**metadata manager (METAMAN)... Makes use of Python's dynamic nature to inspect a program's internals.**\n\n_project status badges:_\n\n[![CI Workflow](https://github.com/python-boltons/metaman/actions/workflows/ci.yml/badge.svg)](https://github.com/python-boltons/metaman/actions/workflows/ci.yml)\n[![Coverage](https://codecov.io/gh/python-boltons/metaman/branch/master/graph/badge.svg)](https://codecov.io/gh/python-boltons/metaman)\n[![Documentation Status](https://readthedocs.org/projects/bolton-metaman/badge/?version=latest)](https://bolton-metaman.readthedocs.io/en/latest/?badge=latest)\n[![Package Health](https://snyk.io/advisor/python/bolton-metaman/badge.svg)](https://snyk.io/advisor/python/bolton-metaman)\n\n_version badges:_\n\n[![Project Version](https://img.shields.io/pypi/v/bolton-metaman)](https://pypi.org/project/bolton-metaman/)\n[![Python Versions](https://img.shields.io/pypi/pyversions/bolton-metaman)](https://pypi.org/project/bolton-metaman/)\n[![Cookiecutter: cc-python](https://img.shields.io/static/v1?label=cc-python&message=2022.01.04&color=d4aa00&logo=cookiecutter&logoColor=d4aa00)](https://github.com/python-boltons/cc-python)\n[![Docker: pythonboltons/main](https://img.shields.io/static/v1?label=pythonboltons%20%2F%20main&message=2021.12.22&color=8ec4ad&logo=docker&logoColor=8ec4ad)](https://github.com/python-boltons/docker-python)\n\n\n## Installation \ud83d\uddf9\n\nTo install `metaman` using [pip][9], run the following\ncommands in your terminal:\n\n``` shell\npython3 -m pip install --user bolton-metaman  # install metaman\n```\n\nIf you don't have pip installed, this [Python installation guide][10] can guide\nyou through the process.\n\n<!-- [[[[[kooky.cog\nfrom pathlib import Path\n\nlines = Path(\"./docs/design/design.md\").read_text().split(\"\\n\")\nif any(L.strip() for L in lines):\n    fixed_lines = [L.replace(\"(.\", \"(./docs/design\") if L.startswith(\"![\") else L for L in lines]\n    print(\"## Design Diagrams\\n\")\n    print(\"\\n\".join(fixed_lines))\n]]]]] -->\n<!-- [[[[[end]]]]] -->\n\n\n## Useful Links \ud83d\udd17\n\n* [API Reference][3]: A developer's reference of the API exposed by this\n  project.\n* [cc-python][4]: The [cookiecutter][5] that was used to generate this project.\n  Changes made to this cookiecutter are periodically synced with this project\n  using [cruft][12].\n* [CHANGELOG.md][2]: We use this file to document all notable changes made to\n  this project.\n* [CONTRIBUTING.md][7]: This document contains guidelines for developers\n  interested in contributing to this project.\n* [Create a New Issue][13]: Create a new GitHub issue for this project.\n* [Documentation][1]: This project's full documentation.\n\n\n[1]: https://bolton-metaman.readthedocs.io/en/latest\n[2]: https://github.com/python-boltons/metaman/blob/master/CHANGELOG.md\n[3]: https://bolton-metaman.readthedocs.io/en/latest/modules.html\n[4]: https://github.com/python-boltons/cc-python\n[5]: https://github.com/cookiecutter/cookiecutter\n[6]: https://docs.readthedocs.io/en/stable/\n[7]: https://github.com/python-boltons/metaman/blob/master/CONTRIBUTING.md\n[8]: https://github.com/python-boltons/metaman\n[9]: https://pip.pypa.io\n[10]: http://docs.python-guide.org/en/latest/starting/installation/\n[11]: https://github.com/pypa/pipx\n[12]: https://github.com/cruft/cruft\n[13]: https://github.com/python-boltons/metaman/issues/new/choose\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "metadata manager (METAMAN)... Makes use of Python's dynamic nature to inspect a program's internals.",
    "version": "0.1.2",
    "project_urls": {
        "Homepage": "https://github.com/python-boltons/metaman"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ae846fe7358d0b04ec75d1ad38619e2a68c66d08071e8d22042494b99a4ad23",
                "md5": "d5a4a76d76d1e07bdcca470fb9b6da15",
                "sha256": "04c851b5a5ae9a8e8993a01b70d59bb62edd6a8db299541233c9cea467646c90"
            },
            "downloads": -1,
            "filename": "bolton_metaman-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d5a4a76d76d1e07bdcca470fb9b6da15",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 4731,
            "upload_time": "2022-06-06T21:27:38",
            "upload_time_iso_8601": "2022-06-06T21:27:38.017447Z",
            "url": "https://files.pythonhosted.org/packages/5a/e8/46fe7358d0b04ec75d1ad38619e2a68c66d08071e8d22042494b99a4ad23/bolton_metaman-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d3afc48cd2193e03b9ad0b508c0432007462a30f984979cdde172f8618f6502",
                "md5": "a8d873dd38de65826863d98d9910cdab",
                "sha256": "24702568de866e2fd75c041801ee35df8f6649cf5fda33daea6741508c936a21"
            },
            "downloads": -1,
            "filename": "bolton-metaman-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "a8d873dd38de65826863d98d9910cdab",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 31106,
            "upload_time": "2022-06-06T21:27:39",
            "upload_time_iso_8601": "2022-06-06T21:27:39.378532Z",
            "url": "https://files.pythonhosted.org/packages/4d/3a/fc48cd2193e03b9ad0b508c0432007462a30f984979cdde172f8618f6502/bolton-metaman-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-06-06 21:27:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "python-boltons",
    "github_project": "metaman",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "bolton-metaman"
}
        
Elapsed time: 0.15738s