django-post-fetch-hook


Namedjango-post-fetch-hook JSON
Version 0.0.3 PyPI version JSON
download
home_pagehttps://mrthearman.github.io/django-post-fetch-hook
SummaryModify data fetched from a database after it has been fetched but before it has been cached in django's result cache.
upload_time2023-11-20 18:23:37
maintainer
docs_urlNone
authorMatti Lamppu
requires_python>=3.9,<4
licenseMIT
keywords django post fetch hook database
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Django Post-fetch Hook

[![Coverage Status][coverage-badge]][coverage]
[![GitHub Workflow Status][status-badge]][status]
[![PyPI][pypi-badge]][pypi]
[![GitHub][licence-badge]][licence]
[![GitHub Last Commit][repo-badge]][repo]
[![GitHub Issues][issues-badge]][issues]
[![Downloads][downloads-badge]][pypi]
[![Python Version][version-badge]][pypi]

```shell
pip install django-post-fetch-hook
```

---

**Documentation**: [https://mrthearman.github.io/django-post-fetch-hook/](https://mrthearman.github.io/django-post-fetch-hook/)

**Source Code**: [https://github.com/MrThearMan/django-post-fetch-hook/](https://github.com/MrThearMan/django-post-fetch-hook/)

**Contributing**: [https://github.com/MrThearMan/django-post-fetch-hook/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/django-post-fetch-hook/blob/main/CONTRIBUTING.md)

---

Adds a post-fetch hook to Django models, which can be used to modify data fetched from database via the Django ORM.

[coverage-badge]: https://coveralls.io/repos/github/MrThearMan/django-post-fetch-hook/badge.svg?branch=main
[status-badge]: https://img.shields.io/github/actions/workflow/status/MrThearMan/django-post-fetch-hook/test.yml?branch=main
[pypi-badge]: https://img.shields.io/pypi/v/django-post-fetch-hook
[licence-badge]: https://img.shields.io/github/license/MrThearMan/django-post-fetch-hook
[repo-badge]: https://img.shields.io/github/last-commit/MrThearMan/django-post-fetch-hook
[issues-badge]: https://img.shields.io/github/issues-raw/MrThearMan/django-post-fetch-hook
[version-badge]: https://img.shields.io/pypi/pyversions/django-post-fetch-hook
[downloads-badge]: https://img.shields.io/pypi/dm/django-post-fetch-hook

[coverage]: https://coveralls.io/github/MrThearMan/django-post-fetch-hook?branch=main
[status]: https://github.com/MrThearMan/django-post-fetch-hook/actions/workflows/test.yml
[pypi]: https://pypi.org/project/django-post-fetch-hook
[licence]: https://github.com/MrThearMan/django-post-fetch-hook/blob/main/LICENSE
[repo]: https://github.com/MrThearMan/django-post-fetch-hook/commits/main
[issues]: https://github.com/MrThearMan/django-post-fetch-hook/issues

            

Raw data

            {
    "_id": null,
    "home_page": "https://mrthearman.github.io/django-post-fetch-hook",
    "name": "django-post-fetch-hook",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4",
    "maintainer_email": "",
    "keywords": "django,post,fetch,hook,database",
    "author": "Matti Lamppu",
    "author_email": "lamppu.matti.akseli@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ed/c9/4642be4e38d007dac07c93b2eafd010b5e66a31b6229c1c2d425ca49329a/django_post_fetch_hook-0.0.3.tar.gz",
    "platform": null,
    "description": "# Django Post-fetch Hook\n\n[![Coverage Status][coverage-badge]][coverage]\n[![GitHub Workflow Status][status-badge]][status]\n[![PyPI][pypi-badge]][pypi]\n[![GitHub][licence-badge]][licence]\n[![GitHub Last Commit][repo-badge]][repo]\n[![GitHub Issues][issues-badge]][issues]\n[![Downloads][downloads-badge]][pypi]\n[![Python Version][version-badge]][pypi]\n\n```shell\npip install django-post-fetch-hook\n```\n\n---\n\n**Documentation**: [https://mrthearman.github.io/django-post-fetch-hook/](https://mrthearman.github.io/django-post-fetch-hook/)\n\n**Source Code**: [https://github.com/MrThearMan/django-post-fetch-hook/](https://github.com/MrThearMan/django-post-fetch-hook/)\n\n**Contributing**: [https://github.com/MrThearMan/django-post-fetch-hook/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/django-post-fetch-hook/blob/main/CONTRIBUTING.md)\n\n---\n\nAdds a post-fetch hook to Django models, which can be used to modify data fetched from database via the Django ORM.\n\n[coverage-badge]: https://coveralls.io/repos/github/MrThearMan/django-post-fetch-hook/badge.svg?branch=main\n[status-badge]: https://img.shields.io/github/actions/workflow/status/MrThearMan/django-post-fetch-hook/test.yml?branch=main\n[pypi-badge]: https://img.shields.io/pypi/v/django-post-fetch-hook\n[licence-badge]: https://img.shields.io/github/license/MrThearMan/django-post-fetch-hook\n[repo-badge]: https://img.shields.io/github/last-commit/MrThearMan/django-post-fetch-hook\n[issues-badge]: https://img.shields.io/github/issues-raw/MrThearMan/django-post-fetch-hook\n[version-badge]: https://img.shields.io/pypi/pyversions/django-post-fetch-hook\n[downloads-badge]: https://img.shields.io/pypi/dm/django-post-fetch-hook\n\n[coverage]: https://coveralls.io/github/MrThearMan/django-post-fetch-hook?branch=main\n[status]: https://github.com/MrThearMan/django-post-fetch-hook/actions/workflows/test.yml\n[pypi]: https://pypi.org/project/django-post-fetch-hook\n[licence]: https://github.com/MrThearMan/django-post-fetch-hook/blob/main/LICENSE\n[repo]: https://github.com/MrThearMan/django-post-fetch-hook/commits/main\n[issues]: https://github.com/MrThearMan/django-post-fetch-hook/issues\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Modify data fetched from a database after it has been fetched but before it has been cached in django's result cache.",
    "version": "0.0.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/MrThearMan/django-post-fetch-hook/issues",
        "Homepage": "https://mrthearman.github.io/django-post-fetch-hook",
        "Repository": "https://github.com/MrThearMan/django-post-fetch-hook"
    },
    "split_keywords": [
        "django",
        "post",
        "fetch",
        "hook",
        "database"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59c280553c0cbb0bef9c9d7ac0592bf07fa5e64efd478b22f689327b8c7c9b8c",
                "md5": "380b5a8a6d56801a6eb166494f94f8c4",
                "sha256": "72f2fc0e882624dbefc8d1543f9f627b58158860c4c7c44991d0c65090652038"
            },
            "downloads": -1,
            "filename": "django_post_fetch_hook-0.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "380b5a8a6d56801a6eb166494f94f8c4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4",
            "size": 6595,
            "upload_time": "2023-11-20T18:23:36",
            "upload_time_iso_8601": "2023-11-20T18:23:36.405639Z",
            "url": "https://files.pythonhosted.org/packages/59/c2/80553c0cbb0bef9c9d7ac0592bf07fa5e64efd478b22f689327b8c7c9b8c/django_post_fetch_hook-0.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edc94642be4e38d007dac07c93b2eafd010b5e66a31b6229c1c2d425ca49329a",
                "md5": "23071935be1e390383d37f3f0ec04779",
                "sha256": "6b826a739f0419b60ff0a3001345a9055f227cde757986a430b10ac006f10e28"
            },
            "downloads": -1,
            "filename": "django_post_fetch_hook-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "23071935be1e390383d37f3f0ec04779",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4",
            "size": 5497,
            "upload_time": "2023-11-20T18:23:37",
            "upload_time_iso_8601": "2023-11-20T18:23:37.805015Z",
            "url": "https://files.pythonhosted.org/packages/ed/c9/4642be4e38d007dac07c93b2eafd010b5e66a31b6229c1c2d425ca49329a/django_post_fetch_hook-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-20 18:23:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MrThearMan",
    "github_project": "django-post-fetch-hook",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "django-post-fetch-hook"
}
        
Elapsed time: 0.16715s