potoroo


Namepotoroo JSON
Version 0.6.0 PyPI version JSON
download
home_pagehttps://github.com/bbugyi200/potoroo
SummaryPython implementations of the Repository and UnitOfWork abstractions.
upload_time2024-04-05 05:17:21
maintainerNone
docs_urlNone
authorBryan M Bugyi
requires_python>=3.9
licenseMIT license
keywords
VCS
bugtrack_url
requirements bolton-eris bolton-ion bolton-metaman bolton-typist
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # potoroo

**Python implementations of the Repository and UnitOfWork abstractions.**

_project status badges:_

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

_version badges:_

[![Project Version](https://img.shields.io/pypi/v/potoroo)](https://pypi.org/project/potoroo/)
[![Python Versions](https://img.shields.io/pypi/pyversions/potoroo)](https://pypi.org/project/potoroo/)
[![Cookiecutter: cc-python](https://img.shields.io/static/v1?label=cc-python&message=2024.01.16-4&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=2024.01.16&color=8ec4ad&logo=docker&logoColor=8ec4ad)](https://github.com/python-boltons/docker-python)


## Installation 🗹

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

``` shell
python3 -m pip install --user potoroo  # install potoroo
```

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://potoroo.readthedocs.io/en/latest
[2]: https://github.com/bbugyi200/potoroo/blob/master/CHANGELOG.md
[3]: https://potoroo.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/bbugyi200/potoroo/blob/master/CONTRIBUTING.md
[8]: https://github.com/bbugyi200/potoroo
[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/bbugyi200/potoroo/issues/new/choose
[14]: https://pypi.org/project/cogapp/

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bbugyi200/potoroo",
    "name": "potoroo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Bryan M Bugyi",
    "author_email": "bryanbugyi34@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/0e/b5/392199970fd95f47fe5720035c30ced255cd24fe416e3b99fc03b32b1919/potoroo-0.6.0.tar.gz",
    "platform": null,
    "description": "# potoroo\n\n**Python implementations of the Repository and UnitOfWork abstractions.**\n\n_project status badges:_\n\n[![CI Workflow](https://github.com/bbugyi200/potoroo/actions/workflows/ci.yml/badge.svg)](https://github.com/bbugyi200/potoroo/actions/workflows/ci.yml)\n[![Coverage](https://codecov.io/gh/bbugyi200/potoroo/branch/master/graph/badge.svg)](https://codecov.io/gh/bbugyi200/potoroo)\n[![Documentation Status](https://readthedocs.org/projects/potoroo/badge/?version=latest)](https://potoroo.readthedocs.io/en/latest/?badge=latest)\n[![Package Health](https://snyk.io/advisor/python/potoroo/badge.svg)](https://snyk.io/advisor/python/potoroo)\n\n_version badges:_\n\n[![Project Version](https://img.shields.io/pypi/v/potoroo)](https://pypi.org/project/potoroo/)\n[![Python Versions](https://img.shields.io/pypi/pyversions/potoroo)](https://pypi.org/project/potoroo/)\n[![Cookiecutter: cc-python](https://img.shields.io/static/v1?label=cc-python&message=2024.01.16-4&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=2024.01.16&color=8ec4ad&logo=docker&logoColor=8ec4ad)](https://github.com/python-boltons/docker-python)\n\n\n## Installation \ud83d\uddf9\n\nTo install `potoroo` using [pip][9], run the following\ncommands in your terminal:\n\n``` shell\npython3 -m pip install --user potoroo  # install potoroo\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://potoroo.readthedocs.io/en/latest\n[2]: https://github.com/bbugyi200/potoroo/blob/master/CHANGELOG.md\n[3]: https://potoroo.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/bbugyi200/potoroo/blob/master/CONTRIBUTING.md\n[8]: https://github.com/bbugyi200/potoroo\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/bbugyi200/potoroo/issues/new/choose\n[14]: https://pypi.org/project/cogapp/\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "Python implementations of the Repository and UnitOfWork abstractions.",
    "version": "0.6.0",
    "project_urls": {
        "Homepage": "https://github.com/bbugyi200/potoroo"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acf80911dc0f0a01e5fffca97f5b577b81d24a06d6b8d4c659f8582723727d13",
                "md5": "b6cc55b76f0c9f76e554fb686628f279",
                "sha256": "6a5a0722dd397cb2418e84fcd74e408d4b130aa976db64d98855230d6f9a6f69"
            },
            "downloads": -1,
            "filename": "potoroo-0.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b6cc55b76f0c9f76e554fb686628f279",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 4908,
            "upload_time": "2024-04-05T05:17:20",
            "upload_time_iso_8601": "2024-04-05T05:17:20.370291Z",
            "url": "https://files.pythonhosted.org/packages/ac/f8/0911dc0f0a01e5fffca97f5b577b81d24a06d6b8d4c659f8582723727d13/potoroo-0.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eb5392199970fd95f47fe5720035c30ced255cd24fe416e3b99fc03b32b1919",
                "md5": "97d348e71b7511caa046d7e468adcaf5",
                "sha256": "69d08d08c3f90b3a32faf8927bcb4b27e9df4a383c3d44e3d56323d0430c5a93"
            },
            "downloads": -1,
            "filename": "potoroo-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "97d348e71b7511caa046d7e468adcaf5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 32104,
            "upload_time": "2024-04-05T05:17:21",
            "upload_time_iso_8601": "2024-04-05T05:17:21.974775Z",
            "url": "https://files.pythonhosted.org/packages/0e/b5/392199970fd95f47fe5720035c30ced255cd24fe416e3b99fc03b32b1919/potoroo-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-05 05:17:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bbugyi200",
    "github_project": "potoroo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "bolton-eris",
            "specs": [
                [
                    "==",
                    "0.2.3"
                ]
            ]
        },
        {
            "name": "bolton-ion",
            "specs": [
                [
                    "==",
                    "0.1.0"
                ]
            ]
        },
        {
            "name": "bolton-metaman",
            "specs": [
                [
                    "==",
                    "0.1.2"
                ]
            ]
        },
        {
            "name": "bolton-typist",
            "specs": [
                [
                    "==",
                    "0.2.0"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "potoroo"
}
        
Elapsed time: 0.73778s