undine


Nameundine JSON
Version 0.0.28 PyPI version JSON
download
home_pagehttps://mrthearman.github.io/undine
SummaryA GraphQL library for Django
upload_time2025-08-10 21:04:15
maintainerNone
docs_urlNone
authorMatti Lamppu
requires_python<4,>=3.11
licenseMIT
keywords django graphql
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Undine - GraphQL for Django

[![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]
[![Django Version][django-badge]][pypi]

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

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

```shell
pip install undine
```

---

**Documentation**: [https://mrthearman.github.io/undine/](https://mrthearman.github.io/undine/)

**Source Code**: [https://github.com/MrThearMan/undine/](https://github.com/MrThearMan/undine/)

**Contributing**: [https://github.com/MrThearMan/undine/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/undine/blob/main/CONTRIBUTING.md)

---

Undine is a GraphQL library for Django. It's designed to be easy to use and extend
while providing out-of-the-box solutions for many common issues GraphQL developers face.

**Feature highlights:**

- Automatic generation of GraphQL types from Django models
- Automatic query optimization
- Logically composable filtering
- Ordering based on enums
- Single and bulk mutations, including relations
- Hidden and input-only mutation inputs
- Built-in permission and validation hooks
- Support for Relay Global object IDs and Connection pagination
- File uploads based on GraphQL multipart request specification
- Support for asynchronous execution
- Subscriptions with websockets
- Optional persisted documents support
- Lifecycle hooks for customizing the GraphQL request cycle
- Built-in testing tools

Check out the [Tutorial] to get started.

[Tutorial]: https://mrthearman.github.io/undine/tutorial/

            

Raw data

            {
    "_id": null,
    "home_page": "https://mrthearman.github.io/undine",
    "name": "undine",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.11",
    "maintainer_email": null,
    "keywords": "Django, GraphQL",
    "author": "Matti Lamppu",
    "author_email": "lamppu.matti.akseli@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c5/15/17360401a846e130fe0163d065451d31a064a7102fd5b8b961fd307873fb/undine-0.0.28.tar.gz",
    "platform": null,
    "description": "# Undine - GraphQL for Django\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[![Django Version][django-badge]][pypi]\n\n[coverage-badge]: https://coveralls.io/repos/github/MrThearMan/undine/badge.svg?branch=main\n[status-badge]: https://img.shields.io/github/actions/workflow/status/MrThearMan/undine/test.yml?branch=main\n[pypi-badge]: https://img.shields.io/pypi/v/undine\n[licence-badge]: https://img.shields.io/github/license/MrThearMan/undine\n[repo-badge]: https://img.shields.io/github/last-commit/MrThearMan/undine\n[issues-badge]: https://img.shields.io/github/issues-raw/MrThearMan/undine\n[version-badge]: https://img.shields.io/pypi/pyversions/undine\n[downloads-badge]: https://img.shields.io/pypi/dm/undine\n[django-badge]: https://img.shields.io/pypi/djversions/undine\n\n[coverage]: https://coveralls.io/github/MrThearMan/undine?branch=main\n[status]: https://github.com/MrThearMan/undine/actions/workflows/test.yml\n[pypi]: https://pypi.org/project/undine\n[licence]: https://github.com/MrThearMan/undine/blob/main/LICENSE\n[repo]: https://github.com/MrThearMan/undine/commits/main\n[issues]: https://github.com/MrThearMan/undine/issues\n\n```shell\npip install undine\n```\n\n---\n\n**Documentation**: [https://mrthearman.github.io/undine/](https://mrthearman.github.io/undine/)\n\n**Source Code**: [https://github.com/MrThearMan/undine/](https://github.com/MrThearMan/undine/)\n\n**Contributing**: [https://github.com/MrThearMan/undine/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/undine/blob/main/CONTRIBUTING.md)\n\n---\n\nUndine is a GraphQL library for Django. It's designed to be easy to use and extend\nwhile providing out-of-the-box solutions for many common issues GraphQL developers face.\n\n**Feature highlights:**\n\n- Automatic generation of GraphQL types from Django models\n- Automatic query optimization\n- Logically composable filtering\n- Ordering based on enums\n- Single and bulk mutations, including relations\n- Hidden and input-only mutation inputs\n- Built-in permission and validation hooks\n- Support for Relay Global object IDs and Connection pagination\n- File uploads based on GraphQL multipart request specification\n- Support for asynchronous execution\n- Subscriptions with websockets\n- Optional persisted documents support\n- Lifecycle hooks for customizing the GraphQL request cycle\n- Built-in testing tools\n\nCheck out the [Tutorial] to get started.\n\n[Tutorial]: https://mrthearman.github.io/undine/tutorial/\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A GraphQL library for Django",
    "version": "0.0.28",
    "project_urls": {
        "Bug Tracker": "https://github.com/MrThearMan/undine/issues",
        "Documentation": "https://mrthearman.github.io/undine",
        "Homepage": "https://mrthearman.github.io/undine",
        "Repository": "https://github.com/MrThearMan/undine"
    },
    "split_keywords": [
        "django",
        " graphql"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "065fa2d37f94ba512cc31afac683419de01b0a53e8a5f3643baa4f7d27b7608f",
                "md5": "2db2591d3cc09d6358ddff8da249df55",
                "sha256": "b8f534edb8fd14fc938aaf9fa7341ee480de339c62a4c8d19ebec65c70f2e52e"
            },
            "downloads": -1,
            "filename": "undine-0.0.28-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2db2591d3cc09d6358ddff8da249df55",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.11",
            "size": 215625,
            "upload_time": "2025-08-10T21:04:13",
            "upload_time_iso_8601": "2025-08-10T21:04:13.653298Z",
            "url": "https://files.pythonhosted.org/packages/06/5f/a2d37f94ba512cc31afac683419de01b0a53e8a5f3643baa4f7d27b7608f/undine-0.0.28-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c51517360401a846e130fe0163d065451d31a064a7102fd5b8b961fd307873fb",
                "md5": "bb0668022d672151ffe095947be59304",
                "sha256": "2bc96cd548e2e1b8dd3948fa7ad363de29e114b54b081c26e5dd289e959a6035"
            },
            "downloads": -1,
            "filename": "undine-0.0.28.tar.gz",
            "has_sig": false,
            "md5_digest": "bb0668022d672151ffe095947be59304",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.11",
            "size": 160278,
            "upload_time": "2025-08-10T21:04:15",
            "upload_time_iso_8601": "2025-08-10T21:04:15.014603Z",
            "url": "https://files.pythonhosted.org/packages/c5/15/17360401a846e130fe0163d065451d31a064a7102fd5b8b961fd307873fb/undine-0.0.28.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-10 21:04:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MrThearMan",
    "github_project": "undine",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "undine"
}
        
Elapsed time: 1.29733s