gel


Namegel JSON
Version 3.0.1 PyPI version JSON
download
home_pagehttps://github.com/edgedb/edgedb-python
SummaryGel Python driver
upload_time2025-02-28 05:42:16
maintainerNone
docs_urlNone
authorMagicStack Inc
requires_python>=3.8
licenseApache License, Version 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            The Python driver for Gel
=========================

.. image:: https://github.com/geldata/gel-python/workflows/Tests/badge.svg?event=push&branch=master
    :target: https://github.com/geldata/gel-python/actions

.. image:: https://img.shields.io/pypi/v/gel.svg
    :target: https://pypi.python.org/pypi/gel

.. image:: https://img.shields.io/badge/join-github%20discussions-green
    :target: https://github.com/geldata/gel/discussions


**gel-python** is the official Gel driver for Python.
It provides both blocking IO and asyncio implementations.

The library requires Python 3.8 or later.


Documentation
-------------

The project documentation can be found
`here <https://www.geldata.com/docs/clients/00_python/index>`_.


Installation
------------

The library is available on PyPI.  Use ``pip`` to install it::

    $ pip install gel


Basic Usage
-----------

.. code-block:: python

    import datetime
    import gel

    def main():
        client = gel.create_client()
        # Create a User object type
        client.execute('''
            CREATE TYPE User {
                CREATE REQUIRED PROPERTY name -> str;
                CREATE PROPERTY dob -> cal::local_date;
            }
        ''')

        # Insert a new User object
        client.query('''
            INSERT User {
                name := <str>$name,
                dob := <cal::local_date>$dob
            }
        ''', name='Bob', dob=datetime.date(1984, 3, 1))

        # Select User objects.
        user_set = client.query(
            'SELECT User {name, dob} FILTER .name = <str>$name', name='Bob')
        # *user_set* now contains
        # Set{Object{name := 'Bob', dob := datetime.date(1984, 3, 1)}}

        # Close the client.
        client.close()

    if __name__ == '__main__':
        main()

Development
-----------

Instructions for installing Gel and gel-python locally can be found at
`www.geldata.com/docs/reference/dev <https://www.geldata.com/docs/reference/dev>`_.

To run the test suite, run ``$ python setup.py test``.

License
-------

gel-python is developed and distributed under the Apache 2.0 license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/edgedb/edgedb-python",
    "name": "gel",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "MagicStack Inc",
    "author_email": "hello@magic.io",
    "download_url": "https://files.pythonhosted.org/packages/8d/70/fc0742a98ffb6b3af50d4a3de6cad8a5e62b0b6d7e6c1dc96f5ea1db8e5f/gel-3.0.1.tar.gz",
    "platform": "macOS",
    "description": "The Python driver for Gel\n=========================\n\n.. image:: https://github.com/geldata/gel-python/workflows/Tests/badge.svg?event=push&branch=master\n    :target: https://github.com/geldata/gel-python/actions\n\n.. image:: https://img.shields.io/pypi/v/gel.svg\n    :target: https://pypi.python.org/pypi/gel\n\n.. image:: https://img.shields.io/badge/join-github%20discussions-green\n    :target: https://github.com/geldata/gel/discussions\n\n\n**gel-python** is the official Gel driver for Python.\nIt provides both blocking IO and asyncio implementations.\n\nThe library requires Python 3.8 or later.\n\n\nDocumentation\n-------------\n\nThe project documentation can be found\n`here <https://www.geldata.com/docs/clients/00_python/index>`_.\n\n\nInstallation\n------------\n\nThe library is available on PyPI.  Use ``pip`` to install it::\n\n    $ pip install gel\n\n\nBasic Usage\n-----------\n\n.. code-block:: python\n\n    import datetime\n    import gel\n\n    def main():\n        client = gel.create_client()\n        # Create a User object type\n        client.execute('''\n            CREATE TYPE User {\n                CREATE REQUIRED PROPERTY name -> str;\n                CREATE PROPERTY dob -> cal::local_date;\n            }\n        ''')\n\n        # Insert a new User object\n        client.query('''\n            INSERT User {\n                name := <str>$name,\n                dob := <cal::local_date>$dob\n            }\n        ''', name='Bob', dob=datetime.date(1984, 3, 1))\n\n        # Select User objects.\n        user_set = client.query(\n            'SELECT User {name, dob} FILTER .name = <str>$name', name='Bob')\n        # *user_set* now contains\n        # Set{Object{name := 'Bob', dob := datetime.date(1984, 3, 1)}}\n\n        # Close the client.\n        client.close()\n\n    if __name__ == '__main__':\n        main()\n\nDevelopment\n-----------\n\nInstructions for installing Gel and gel-python locally can be found at\n`www.geldata.com/docs/reference/dev <https://www.geldata.com/docs/reference/dev>`_.\n\nTo run the test suite, run ``$ python setup.py test``.\n\nLicense\n-------\n\ngel-python is developed and distributed under the Apache 2.0 license.\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Gel Python driver",
    "version": "3.0.1",
    "project_urls": {
        "Homepage": "https://github.com/edgedb/edgedb-python"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4f3ce30385d9e47880920229bb8d53dc43e88f6a97fd03b454fb025b8e5b60c",
                "md5": "36970996389062f36be713457eb754bd",
                "sha256": "5cdf5263caa279fec760a05809a73e6f2b3e8851380c03b44f9766bdd6f360b3"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36970996389062f36be713457eb754bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2123993,
            "upload_time": "2025-02-28T05:41:05",
            "upload_time_iso_8601": "2025-02-28T05:41:05.756490Z",
            "url": "https://files.pythonhosted.org/packages/d4/f3/ce30385d9e47880920229bb8d53dc43e88f6a97fd03b454fb025b8e5b60c/gel-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c066d90f347897c25d23a3b47e2d7174dfdbbe790d096d5f9fbee9dbec85c5d9",
                "md5": "f6720185ccf7f83639eb3f11a5ae2bd2",
                "sha256": "d3dd69ffe22db327be823fde08f6bb6c0bf49a62599790c1943372ecb75d0d5a"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f6720185ccf7f83639eb3f11a5ae2bd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2091794,
            "upload_time": "2025-02-28T05:41:08",
            "upload_time_iso_8601": "2025-02-28T05:41:08.213860Z",
            "url": "https://files.pythonhosted.org/packages/c0/66/d90f347897c25d23a3b47e2d7174dfdbbe790d096d5f9fbee9dbec85c5d9/gel-3.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87accfa17883711101c0ee6b3adbd7f205f1f55266be87688c25284af9776b83",
                "md5": "28b7c46d8d52ee8eb326be21d890ef8e",
                "sha256": "f1d77664633cdf9ff5b55034451ba803815bfcd96734cdbae9b46a4d67b44016"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "28b7c46d8d52ee8eb326be21d890ef8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5098249,
            "upload_time": "2025-02-28T05:41:11",
            "upload_time_iso_8601": "2025-02-28T05:41:11.286481Z",
            "url": "https://files.pythonhosted.org/packages/87/ac/cfa17883711101c0ee6b3adbd7f205f1f55266be87688c25284af9776b83/gel-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9958ad3665c028be562f6833d3a328b2d2ff9fb08bef46611da1ee3cab05e6c1",
                "md5": "60f6f321e913ba6824aaf6796340472a",
                "sha256": "790d7240407e8dea81aa47b6e9356d665f35845ebae23ff86e7ade06ec18fa4a"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "60f6f321e913ba6824aaf6796340472a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5142607,
            "upload_time": "2025-02-28T05:41:14",
            "upload_time_iso_8601": "2025-02-28T05:41:14.003901Z",
            "url": "https://files.pythonhosted.org/packages/99/58/ad3665c028be562f6833d3a328b2d2ff9fb08bef46611da1ee3cab05e6c1/gel-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17ec944f2ef056e45619cf6fb7ab1477da46bcf3076d75c73d5d482437a561d6",
                "md5": "391d4043e2b45341b8a2a94317310226",
                "sha256": "c185dc8b1b7bf0c636550e5844291794a6ab06144c5e407550112b57fc1c7e49"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "391d4043e2b45341b8a2a94317310226",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2055977,
            "upload_time": "2025-02-28T05:41:15",
            "upload_time_iso_8601": "2025-02-28T05:41:15.671770Z",
            "url": "https://files.pythonhosted.org/packages/17/ec/944f2ef056e45619cf6fb7ab1477da46bcf3076d75c73d5d482437a561d6/gel-3.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1577c85e84d9b10f302b9711528db0bc7dcfcff497ebd19c9c55976d048cd10",
                "md5": "abe009a4bcefdf6c073411f06610d033",
                "sha256": "5239732a3fcc1483f82b3290eef2a555ceed831c15c6c61a39723cf6ea89e4bc"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abe009a4bcefdf6c073411f06610d033",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2129590,
            "upload_time": "2025-02-28T05:41:17",
            "upload_time_iso_8601": "2025-02-28T05:41:17.794663Z",
            "url": "https://files.pythonhosted.org/packages/d1/57/7c85e84d9b10f302b9711528db0bc7dcfcff497ebd19c9c55976d048cd10/gel-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "130eb408378e167e3691572758def9b17bb553252d1e57508924403d31818959",
                "md5": "98c7b375e44fe727c2a636420fae3a68",
                "sha256": "e4c43e090a59a99d231d1ec00ecaf3e9515d39996a02421ca383044c0e2a3258"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "98c7b375e44fe727c2a636420fae3a68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2094250,
            "upload_time": "2025-02-28T05:41:20",
            "upload_time_iso_8601": "2025-02-28T05:41:20.111860Z",
            "url": "https://files.pythonhosted.org/packages/13/0e/b408378e167e3691572758def9b17bb553252d1e57508924403d31818959/gel-3.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60b08ff5ffa0e7ff54e647a02c356f30070cf2add466da31900c0e7d2398536f",
                "md5": "7b9e184ec045d79fefe23d0499c779aa",
                "sha256": "68c6d6f68896244050344fc4a7f289a9c228e249008c25458fd0b7ea4af6bf53"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7b9e184ec045d79fefe23d0499c779aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5337591,
            "upload_time": "2025-02-28T05:41:24",
            "upload_time_iso_8601": "2025-02-28T05:41:24.304418Z",
            "url": "https://files.pythonhosted.org/packages/60/b0/8ff5ffa0e7ff54e647a02c356f30070cf2add466da31900c0e7d2398536f/gel-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71b4f7f05e189b8edfd09292a6f8e3d151902be42856509329f3a5eb4a48f05f",
                "md5": "57f0e8bff12c5750a333defbab2c7a0a",
                "sha256": "ab82ac9253cde8367722b567fa288e3191877ff49856b679e25dbb645d754985"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57f0e8bff12c5750a333defbab2c7a0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5383562,
            "upload_time": "2025-02-28T05:41:27",
            "upload_time_iso_8601": "2025-02-28T05:41:27.075402Z",
            "url": "https://files.pythonhosted.org/packages/71/b4/f7f05e189b8edfd09292a6f8e3d151902be42856509329f3a5eb4a48f05f/gel-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d2e1f76f0667524d793a637cac5449bb04587219a947cd8e7f2d8e3b70e9346",
                "md5": "9b1865d343e4a1f5fde249af0bf67de4",
                "sha256": "a064b166147ae07b1e00d0da0eba8ef596c9670bcb717011735a3691d90459ab"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9b1865d343e4a1f5fde249af0bf67de4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2062704,
            "upload_time": "2025-02-28T05:41:28",
            "upload_time_iso_8601": "2025-02-28T05:41:28.785307Z",
            "url": "https://files.pythonhosted.org/packages/1d/2e/1f76f0667524d793a637cac5449bb04587219a947cd8e7f2d8e3b70e9346/gel-3.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78320a148654c3b2085c1d4f461a5f68236f34078e63b2a40aba0349630518ff",
                "md5": "eceef930e515880b5f9b5fb9afddb38a",
                "sha256": "58eba38dd3f5704e79ebb01b253a1b731ca31126b38ff11cf8bb09e41898ac8b"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eceef930e515880b5f9b5fb9afddb38a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2128682,
            "upload_time": "2025-02-28T05:41:31",
            "upload_time_iso_8601": "2025-02-28T05:41:31.288870Z",
            "url": "https://files.pythonhosted.org/packages/78/32/0a148654c3b2085c1d4f461a5f68236f34078e63b2a40aba0349630518ff/gel-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bf3cd409643e01f08610a95f897c9a7e1baa2a080d5e0d099f9e48b9da244f3",
                "md5": "6c7c42ab77ccadf6739f819a28201041",
                "sha256": "ab7e9dbee941272368a4d9558954659e131cbbe3895087468b19ab0d9c2c3374"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6c7c42ab77ccadf6739f819a28201041",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2085139,
            "upload_time": "2025-02-28T05:41:32",
            "upload_time_iso_8601": "2025-02-28T05:41:32.903918Z",
            "url": "https://files.pythonhosted.org/packages/8b/f3/cd409643e01f08610a95f897c9a7e1baa2a080d5e0d099f9e48b9da244f3/gel-3.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b801d4e3ed5d2e83502d62daeecf80afd140218103480e7d602fb1ebe28f00b8",
                "md5": "25e1d8922681d905d0456e3d7c22432b",
                "sha256": "8d03a3b0f52c4af589d4583ee34fb0f41c5141c25e1d3db96d81a1327e04bb19"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "25e1d8922681d905d0456e3d7c22432b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5793989,
            "upload_time": "2025-02-28T05:41:35",
            "upload_time_iso_8601": "2025-02-28T05:41:35.606483Z",
            "url": "https://files.pythonhosted.org/packages/b8/01/d4e3ed5d2e83502d62daeecf80afd140218103480e7d602fb1ebe28f00b8/gel-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6439e33882d1743c58a490c6adabe1e2ea2c3da129c5be161e2cbd2d85324ee5",
                "md5": "ef28659d8716e5129b7de6ecefe11dd1",
                "sha256": "fcdef80dc6b463ee1654bf74eba9640aaaf6cad621e555400f0dd372afc96a95"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef28659d8716e5129b7de6ecefe11dd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5906881,
            "upload_time": "2025-02-28T05:41:38",
            "upload_time_iso_8601": "2025-02-28T05:41:38.315121Z",
            "url": "https://files.pythonhosted.org/packages/64/39/e33882d1743c58a490c6adabe1e2ea2c3da129c5be161e2cbd2d85324ee5/gel-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9971ec425687a0baec03036070adb274a66285d1100432ed5cd33bb557942c61",
                "md5": "0aed47a1ed182088393b9a83892d842c",
                "sha256": "d835ed6a2dd8e0fe1d48d331463ad08739cc7a3b5b15e899c9a46d77c1c4d0c7"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0aed47a1ed182088393b9a83892d842c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2049842,
            "upload_time": "2025-02-28T05:41:40",
            "upload_time_iso_8601": "2025-02-28T05:41:40.922591Z",
            "url": "https://files.pythonhosted.org/packages/99/71/ec425687a0baec03036070adb274a66285d1100432ed5cd33bb557942c61/gel-3.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0222429598c9f9c200eeeadaa710b5aff574d8d13f207626dad1a16b1587146e",
                "md5": "7383d34b10af76c13334ca11afdb7320",
                "sha256": "cad334a1ad20c4d0d2a1340e2d874584106d80eb73029d0d3b89a5f694d826c2"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7383d34b10af76c13334ca11afdb7320",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2121997,
            "upload_time": "2025-02-28T05:41:44",
            "upload_time_iso_8601": "2025-02-28T05:41:44.339590Z",
            "url": "https://files.pythonhosted.org/packages/02/22/429598c9f9c200eeeadaa710b5aff574d8d13f207626dad1a16b1587146e/gel-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d07db639cc6f2e2e8adefe3393159f2a3a36f5ccb1d9ccb9706092f19fd4c29",
                "md5": "5dbf9c436edaf70d74bb1c459291d13b",
                "sha256": "551577592c16a69954ebc7635a491b832831c5960ed69ceef55cf6c444e219c6"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5dbf9c436edaf70d74bb1c459291d13b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2078536,
            "upload_time": "2025-02-28T05:41:46",
            "upload_time_iso_8601": "2025-02-28T05:41:46.825688Z",
            "url": "https://files.pythonhosted.org/packages/6d/07/db639cc6f2e2e8adefe3393159f2a3a36f5ccb1d9ccb9706092f19fd4c29/gel-3.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29eb6cd222e99781a5e7cd52c9505c7bcb4dab490f2349058a5bc4a6322bbfb7",
                "md5": "432aa7b779ef5e3245af8096ec35af08",
                "sha256": "7573ff7ad692776b73067df9d0a95baf13e15f970d2689695a73b2f65342fc5c"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "432aa7b779ef5e3245af8096ec35af08",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 5780338,
            "upload_time": "2025-02-28T05:41:48",
            "upload_time_iso_8601": "2025-02-28T05:41:48.708035Z",
            "url": "https://files.pythonhosted.org/packages/29/eb/6cd222e99781a5e7cd52c9505c7bcb4dab490f2349058a5bc4a6322bbfb7/gel-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f97faab1b4c1edb0e1204a874f94a6ad47285e663bfe0067c6ec94acc708c914",
                "md5": "87ce1ef463f5800e12fc7b988515d8cc",
                "sha256": "2a5118a29773ad85ad288347463fc303b6dbefaaf48ca90f6f7e26c5bfff8c01"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87ce1ef463f5800e12fc7b988515d8cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 5886642,
            "upload_time": "2025-02-28T05:41:50",
            "upload_time_iso_8601": "2025-02-28T05:41:50.821594Z",
            "url": "https://files.pythonhosted.org/packages/f9/7f/aab1b4c1edb0e1204a874f94a6ad47285e663bfe0067c6ec94acc708c914/gel-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1459e9d56be3a6a373ec6c27159b87da02ef90efdf9824d20936eef0acdc027d",
                "md5": "c0a74cd3318cbbff451923c6d5078379",
                "sha256": "201259baf231a4d9610dd2fdb558ed7f35a6b9d9afe467f3628d93498504b8f2"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c0a74cd3318cbbff451923c6d5078379",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2048479,
            "upload_time": "2025-02-28T05:41:52",
            "upload_time_iso_8601": "2025-02-28T05:41:52.586955Z",
            "url": "https://files.pythonhosted.org/packages/14/59/e9d56be3a6a373ec6c27159b87da02ef90efdf9824d20936eef0acdc027d/gel-3.0.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8dda464b5e03923c28bf8a1b13af15fa2d2eab45ff4df9e5fdc7735ff0c69fea",
                "md5": "21e8d88dc6443712cbabd4caeff92fbc",
                "sha256": "2fd203ece88403c0974c4c551111414ecf1b713e2158c3d38ddb5a4c6eb5f216"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21e8d88dc6443712cbabd4caeff92fbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2125520,
            "upload_time": "2025-02-28T05:41:54",
            "upload_time_iso_8601": "2025-02-28T05:41:54.234460Z",
            "url": "https://files.pythonhosted.org/packages/8d/da/464b5e03923c28bf8a1b13af15fa2d2eab45ff4df9e5fdc7735ff0c69fea/gel-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af5993cb901dc8d4016fef072297b7a19840beedfc582b73633cca1f17045747",
                "md5": "5afd0effcf4cdb85ebeb1f8277c770db",
                "sha256": "90c85a80cc7cb1baa2978ac90cf6b7bb683f7f15f34e3e5ce25dac018464588e"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5afd0effcf4cdb85ebeb1f8277c770db",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2093061,
            "upload_time": "2025-02-28T05:41:56",
            "upload_time_iso_8601": "2025-02-28T05:41:56.567812Z",
            "url": "https://files.pythonhosted.org/packages/af/59/93cb901dc8d4016fef072297b7a19840beedfc582b73633cca1f17045747/gel-3.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bfbf4328e6fa78e3c0b87eeefc156e8e737979ded8ac3f7a8dcd9a9aeec627c",
                "md5": "9f24ba7db787c4eb65ea74c2d89767fc",
                "sha256": "22fd503be58bae37a99e2924d4b87d6846df422bd64c04b8a1e58073e26f2773"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f24ba7db787c4eb65ea74c2d89767fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5511805,
            "upload_time": "2025-02-28T05:41:59",
            "upload_time_iso_8601": "2025-02-28T05:41:59.006538Z",
            "url": "https://files.pythonhosted.org/packages/1b/fb/f4328e6fa78e3c0b87eeefc156e8e737979ded8ac3f7a8dcd9a9aeec627c/gel-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "064613b2e026ca93fb8c854ffecfd77d88fca178058148a62fb8b5105b293802",
                "md5": "a8818d746c7e18df5d3f48157df265fe",
                "sha256": "d70aa9591cfc69f7b7ce9f7dd28b4b98bd83fbeaeb3e2555b905d522fa248ad9"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8818d746c7e18df5d3f48157df265fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5559387,
            "upload_time": "2025-02-28T05:42:01",
            "upload_time_iso_8601": "2025-02-28T05:42:01.673184Z",
            "url": "https://files.pythonhosted.org/packages/06/46/13b2e026ca93fb8c854ffecfd77d88fca178058148a62fb8b5105b293802/gel-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4abc2e3b4fd5410a1f148684b3c52edec7c7b143da2fad4abcd180135396e20",
                "md5": "bae130fe0a7255fb49ce1c5dfbd2ba6c",
                "sha256": "1fa1f2c67620bcb17345ea64655225bc81ef19c82e6f4a105e70698e7c4abbf1"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bae130fe0a7255fb49ce1c5dfbd2ba6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2061655,
            "upload_time": "2025-02-28T05:42:03",
            "upload_time_iso_8601": "2025-02-28T05:42:03.348657Z",
            "url": "https://files.pythonhosted.org/packages/b4/ab/c2e3b4fd5410a1f148684b3c52edec7c7b143da2fad4abcd180135396e20/gel-3.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92dd83782c377b05f1b14e23d118d2e4395085c33c1c9a1407c70aee7cc6fd8a",
                "md5": "4118a40df89ef77baf66cc666231b652",
                "sha256": "5a0fb979db2eb6656e6f420ebcb001c45656b23d300ffb4510726ff0f129ff17"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4118a40df89ef77baf66cc666231b652",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2124717,
            "upload_time": "2025-02-28T05:42:06",
            "upload_time_iso_8601": "2025-02-28T05:42:06.092721Z",
            "url": "https://files.pythonhosted.org/packages/92/dd/83782c377b05f1b14e23d118d2e4395085c33c1c9a1407c70aee7cc6fd8a/gel-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86a6460796866f95fcd7b93446b88fa0f3d6e26137d9fdb6a51c6b751a755968",
                "md5": "04b3b257252e732078d15711a9891da0",
                "sha256": "a8ab455c3e270a8f092a833b2e9023f347e40d1b39b06d037997bd7631b3f4d8"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "04b3b257252e732078d15711a9891da0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2092558,
            "upload_time": "2025-02-28T05:42:08",
            "upload_time_iso_8601": "2025-02-28T05:42:08.558391Z",
            "url": "https://files.pythonhosted.org/packages/86/a6/460796866f95fcd7b93446b88fa0f3d6e26137d9fdb6a51c6b751a755968/gel-3.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cbca74337e1df274ee76179bfb71bcda2485cf4291fa36d0dfa1f4a557681d2",
                "md5": "7d656470dd6e45e04cb12e9f79551f19",
                "sha256": "e092bc072a200878d75c71a972da1bc330e8ebcbd9cd884ee94bc29013a92bfc"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7d656470dd6e45e04cb12e9f79551f19",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5105379,
            "upload_time": "2025-02-28T05:42:10",
            "upload_time_iso_8601": "2025-02-28T05:42:10.204421Z",
            "url": "https://files.pythonhosted.org/packages/9c/bc/a74337e1df274ee76179bfb71bcda2485cf4291fa36d0dfa1f4a557681d2/gel-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b58f212ecb9d4c09e8d2fa6941349d47f67a39a9d2a384551d3c09d05374e77d",
                "md5": "b327d4f9dc88545a3cfce86a0f2cad0f",
                "sha256": "8be026b5f5dc9ae35157278e2dbad1f71e77136ddcd520acc09855e5189177ff"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b327d4f9dc88545a3cfce86a0f2cad0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5148352,
            "upload_time": "2025-02-28T05:42:12",
            "upload_time_iso_8601": "2025-02-28T05:42:12.887966Z",
            "url": "https://files.pythonhosted.org/packages/b5/8f/212ecb9d4c09e8d2fa6941349d47f67a39a9d2a384551d3c09d05374e77d/gel-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63fad1927857a0143f6ab32a61c3f48abd4f47c7ad4ca8f780fa437fb8bf6559",
                "md5": "a9b319bc366f8df007a6a03519dc1ecd",
                "sha256": "63a6799f9b56790f44932499692aeeb33732bceb323764687fd567bb3415702c"
            },
            "downloads": -1,
            "filename": "gel-3.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a9b319bc366f8df007a6a03519dc1ecd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2057623,
            "upload_time": "2025-02-28T05:42:14",
            "upload_time_iso_8601": "2025-02-28T05:42:14.836454Z",
            "url": "https://files.pythonhosted.org/packages/63/fa/d1927857a0143f6ab32a61c3f48abd4f47c7ad4ca8f780fa437fb8bf6559/gel-3.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d70fc0742a98ffb6b3af50d4a3de6cad8a5e62b0b6d7e6c1dc96f5ea1db8e5f",
                "md5": "dee3981cfae3f022b622188d8101777b",
                "sha256": "3f97aced58040f51b3c766e4065745f3bfa435aed5c9db2e30908701b64244b7"
            },
            "downloads": -1,
            "filename": "gel-3.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "dee3981cfae3f022b622188d8101777b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1316312,
            "upload_time": "2025-02-28T05:42:16",
            "upload_time_iso_8601": "2025-02-28T05:42:16.395010Z",
            "url": "https://files.pythonhosted.org/packages/8d/70/fc0742a98ffb6b3af50d4a3de6cad8a5e62b0b6d7e6c1dc96f5ea1db8e5f/gel-3.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-28 05:42:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "edgedb",
    "github_project": "edgedb-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gel"
}
        
Elapsed time: 0.78606s