The Python driver for EdgeDB
============================
.. image:: https://github.com/edgedb/edgedb-python/workflows/Tests/badge.svg?event=push&branch=master
:target: https://github.com/edgedb/edgedb-python/actions
.. image:: https://img.shields.io/pypi/v/edgedb.svg
:target: https://pypi.python.org/pypi/edgedb
.. image:: https://img.shields.io/badge/join-github%20discussions-green
:target: https://github.com/edgedb/edgedb/discussions
**edgedb-python** is the official EdgeDB 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://edgedb.com/docs/clients/00_python/index>`_.
Installation
------------
The library is available on PyPI. Use ``pip`` to install it::
$ pip install edgedb
Basic Usage
-----------
.. code-block:: python
import datetime
import edgedb
def main():
client = edgedb.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 EdgeDB and edgedb-python locally can be found at
`edgedb.com/docs/reference/dev <https://edgedb.com/docs/reference/dev>`_.
To run the test suite, run ``$ python setup.py test``.
License
-------
edgedb-python is developed and distributed under the Apache 2.0 license.
Raw data
{
"_id": null,
"home_page": "https://github.com/edgedb/edgedb-python",
"name": "edgedb",
"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/b7/bd/5fa8967755ec169d07b4e52684897a612bebb3d2086d2eade79c33642630/edgedb-2.2.0.tar.gz",
"platform": "macOS",
"description": "The Python driver for EdgeDB\n============================\n\n.. image:: https://github.com/edgedb/edgedb-python/workflows/Tests/badge.svg?event=push&branch=master\n :target: https://github.com/edgedb/edgedb-python/actions\n\n.. image:: https://img.shields.io/pypi/v/edgedb.svg\n :target: https://pypi.python.org/pypi/edgedb\n\n.. image:: https://img.shields.io/badge/join-github%20discussions-green\n :target: https://github.com/edgedb/edgedb/discussions\n\n\n**edgedb-python** is the official EdgeDB 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://edgedb.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 edgedb\n\n\nBasic Usage\n-----------\n\n.. code-block:: python\n\n import datetime\n import edgedb\n\n def main():\n client = edgedb.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 EdgeDB and edgedb-python locally can be found at\n`edgedb.com/docs/reference/dev <https://edgedb.com/docs/reference/dev>`_.\n\nTo run the test suite, run ``$ python setup.py test``.\n\nLicense\n-------\n\nedgedb-python is developed and distributed under the Apache 2.0 license.\n",
"bugtrack_url": null,
"license": "Apache License, Version 2.0",
"summary": "EdgeDB Python driver",
"version": "2.2.0",
"project_urls": {
"Homepage": "https://github.com/edgedb/edgedb-python"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d55ce1b15257bb9f451fe076eeb22ab5da1759953ad247191cce54f89ae1f860",
"md5": "25d8e42851bf5685aacb32c55a7fe4c3",
"sha256": "ee097640b6ed3af8f1460404c1cc992354c2e5a10471835f232b7d1fcf657362"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "25d8e42851bf5685aacb32c55a7fe4c3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2053427,
"upload_time": "2024-11-06T20:02:27",
"upload_time_iso_8601": "2024-11-06T20:02:27.441731Z",
"url": "https://files.pythonhosted.org/packages/d5/5c/e1b15257bb9f451fe076eeb22ab5da1759953ad247191cce54f89ae1f860/edgedb-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50ec7cf13d5278fb012de4340a23209f0f53a3cc9063f2019876b214f39f5b5a",
"md5": "91639626c7612ddb24050f0b91c31b4b",
"sha256": "cd012ff316daa4949e3395c120c47f8832584f7d5bc6b70cfd8f052c0d9c1220"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "91639626c7612ddb24050f0b91c31b4b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2020858,
"upload_time": "2024-11-06T20:02:29",
"upload_time_iso_8601": "2024-11-06T20:02:29.868030Z",
"url": "https://files.pythonhosted.org/packages/50/ec/7cf13d5278fb012de4340a23209f0f53a3cc9063f2019876b214f39f5b5a/edgedb-2.2.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e780795130218899af9c0e790f25921a00ef17866281f9a5ceb17fd735980e6",
"md5": "d463522f0ed9a7dd66c34fdc812cced9",
"sha256": "44b9da7f1837de62ec9f7b16823284c88e45de1ad1db0f5f03c63f74b3a3651b"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d463522f0ed9a7dd66c34fdc812cced9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5004732,
"upload_time": "2024-11-06T20:02:32",
"upload_time_iso_8601": "2024-11-06T20:02:32.047611Z",
"url": "https://files.pythonhosted.org/packages/5e/78/0795130218899af9c0e790f25921a00ef17866281f9a5ceb17fd735980e6/edgedb-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "472e9a7947d6c5e16b98e37baa62829c59f7557790a4246766bd89ff479edd2a",
"md5": "43c9df1f91a9b5440d794252468f8cfd",
"sha256": "98dca67449cad88d4f0896aff4e93ad995291d8f1e0d21c3090a91abd56855c9"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "43c9df1f91a9b5440d794252468f8cfd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5044792,
"upload_time": "2024-11-06T20:02:34",
"upload_time_iso_8601": "2024-11-06T20:02:34.472238Z",
"url": "https://files.pythonhosted.org/packages/47/2e/9a7947d6c5e16b98e37baa62829c59f7557790a4246766bd89ff479edd2a/edgedb-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24c21863afbdaff79b39d16e21f867d5b93484210bc21c006cbe0769bec3cd8c",
"md5": "fcc76a3281a75281011428d3e229731e",
"sha256": "b4f0f45c8063b5764f1799ea170a20889dac50858faebee10e11ba5d907c38d4"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "fcc76a3281a75281011428d3e229731e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1986821,
"upload_time": "2024-11-06T20:02:36",
"upload_time_iso_8601": "2024-11-06T20:02:36.426391Z",
"url": "https://files.pythonhosted.org/packages/24/c2/1863afbdaff79b39d16e21f867d5b93484210bc21c006cbe0769bec3cd8c/edgedb-2.2.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b418adb0d1998ef8166356822f57e5877d69a6f2eb1dfa84a7e00b340c70888",
"md5": "455f9b527c8e0d020c0de422a700ebbb",
"sha256": "fc29f02fbe5e3d8132f662dfec5a61ce29601fffa0ed6cbe3452ffe485e1daec"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "455f9b527c8e0d020c0de422a700ebbb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2057348,
"upload_time": "2024-11-06T20:02:38",
"upload_time_iso_8601": "2024-11-06T20:02:38.607075Z",
"url": "https://files.pythonhosted.org/packages/7b/41/8adb0d1998ef8166356822f57e5877d69a6f2eb1dfa84a7e00b340c70888/edgedb-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c232c6cf7022d1150b0686c550b39814c236d83af144d5791bf734c80f5a44ab",
"md5": "c1301cb490e373f1111f0a5f5d4e0ca1",
"sha256": "915c18080edae53cba1e4473dedc1006218f7fed5aa890194eb21d1cb51101b7"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c1301cb490e373f1111f0a5f5d4e0ca1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2024606,
"upload_time": "2024-11-06T20:02:40",
"upload_time_iso_8601": "2024-11-06T20:02:40.708343Z",
"url": "https://files.pythonhosted.org/packages/c2/32/c6cf7022d1150b0686c550b39814c236d83af144d5791bf734c80f5a44ab/edgedb-2.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5e1557268764dd1ec4f1ba4a09a1d856a4e361ab0b48e6c7dfc0b7938e37cc4",
"md5": "79b5e0c47bc3d52babcd45836b16161f",
"sha256": "87e42dcae39694e2962c6543bc292fccae09ae57fd92d3df9717d93da84a3d07"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "79b5e0c47bc3d52babcd45836b16161f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5247608,
"upload_time": "2024-11-06T20:02:43",
"upload_time_iso_8601": "2024-11-06T20:02:43.090093Z",
"url": "https://files.pythonhosted.org/packages/f5/e1/557268764dd1ec4f1ba4a09a1d856a4e361ab0b48e6c7dfc0b7938e37cc4/edgedb-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e48871006e46c2ece615c665d49f61bf106ead4c885df6050843e462ababce8",
"md5": "446c2aeede1224d474557a814e1b8bc5",
"sha256": "fe9a7b8aa75470d1035fd300b60df9b2fbdcff0880e888849ac4778d7dee5482"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "446c2aeede1224d474557a814e1b8bc5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5285358,
"upload_time": "2024-11-06T20:02:45",
"upload_time_iso_8601": "2024-11-06T20:02:45.240080Z",
"url": "https://files.pythonhosted.org/packages/4e/48/871006e46c2ece615c665d49f61bf106ead4c885df6050843e462ababce8/edgedb-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f43e174aa2b0c3794c059ebe54bf7570343c6c004fb5fd0e1a9710f02c0286b",
"md5": "50ac7158d86a83fbc07ed7bd7547fda1",
"sha256": "128bda5fdf5cacabbdc84fc315011e43d2001d17ba4da416e11cec73cb9cc8bd"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "50ac7158d86a83fbc07ed7bd7547fda1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1992991,
"upload_time": "2024-11-06T20:02:46",
"upload_time_iso_8601": "2024-11-06T20:02:46.903028Z",
"url": "https://files.pythonhosted.org/packages/8f/43/e174aa2b0c3794c059ebe54bf7570343c6c004fb5fd0e1a9710f02c0286b/edgedb-2.2.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ef640c0555c5907a196a083be51f37cf95af2ec60cfe6b6b05f872f6e2f32aa",
"md5": "e092daf97107d2cbd28384916f8bced5",
"sha256": "235fc54f473303452e63c8f865a278ccfd1501bc1086b5f46621b9c7804f86ee"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e092daf97107d2cbd28384916f8bced5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2058209,
"upload_time": "2024-11-06T20:02:48",
"upload_time_iso_8601": "2024-11-06T20:02:48.524816Z",
"url": "https://files.pythonhosted.org/packages/1e/f6/40c0555c5907a196a083be51f37cf95af2ec60cfe6b6b05f872f6e2f32aa/edgedb-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36621feed721a90b3e2ebef2cab1b010132e6e33a6b1fed82780cd0bdbcd8a7a",
"md5": "563cdfbecf4720802beb7f6b0e07ad1f",
"sha256": "854ca65508f797474730e9b1c521b46c460a8307b279a88023436afa11e09ce2"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "563cdfbecf4720802beb7f6b0e07ad1f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2014831,
"upload_time": "2024-11-06T20:02:50",
"upload_time_iso_8601": "2024-11-06T20:02:50.326353Z",
"url": "https://files.pythonhosted.org/packages/36/62/1feed721a90b3e2ebef2cab1b010132e6e33a6b1fed82780cd0bdbcd8a7a/edgedb-2.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bc6932ae9fddd0e04c4b7dc7584c9abc4b354764ef15a4bb228731f0680a773",
"md5": "857592c70cf923f3b456545899b96302",
"sha256": "05db28f8dcaaa349fad73bf0217a1dea498e55c7db70acc967d742dc88a63236"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "857592c70cf923f3b456545899b96302",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5699155,
"upload_time": "2024-11-06T20:02:52",
"upload_time_iso_8601": "2024-11-06T20:02:52.058731Z",
"url": "https://files.pythonhosted.org/packages/7b/c6/932ae9fddd0e04c4b7dc7584c9abc4b354764ef15a4bb228731f0680a773/edgedb-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a09926c13ced80a2293f6b6fe13e1d4c668b02558ba164798f09c5894b0174b",
"md5": "b84800a500afd06e08e7ae3bcdefb38e",
"sha256": "51642e583106873f5fc769dde4f9d85a9fb15d8df5ed1dd8a089b893da572d7e"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b84800a500afd06e08e7ae3bcdefb38e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5806267,
"upload_time": "2024-11-06T20:02:54",
"upload_time_iso_8601": "2024-11-06T20:02:54.012210Z",
"url": "https://files.pythonhosted.org/packages/8a/09/926c13ced80a2293f6b6fe13e1d4c668b02558ba164798f09c5894b0174b/edgedb-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9105fd93f5dcba90bb3a91700623a0ca046067c1b88370e55c2821e68b2a631",
"md5": "db06d099d6165bdf67d2bc108d73f406",
"sha256": "cc013be975519b1428936a2a9391998e4fa2fd0befa865961ae8131834e543cf"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "db06d099d6165bdf67d2bc108d73f406",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1981984,
"upload_time": "2024-11-06T20:02:55",
"upload_time_iso_8601": "2024-11-06T20:02:55.744105Z",
"url": "https://files.pythonhosted.org/packages/c9/10/5fd93f5dcba90bb3a91700623a0ca046067c1b88370e55c2821e68b2a631/edgedb-2.2.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a18c35a19018c77f404f628059ad91bd81917f7301c2c6a0dd70cc8fc4c01004",
"md5": "8d78c4d1e8a3f025325ba9f4b4e7ebda",
"sha256": "3f0ff080784451de7cc91eea450e7cb082e2408ec24ccb34dcc8c5bbb5321310"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8d78c4d1e8a3f025325ba9f4b4e7ebda",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2054716,
"upload_time": "2024-11-06T20:02:57",
"upload_time_iso_8601": "2024-11-06T20:02:57.441106Z",
"url": "https://files.pythonhosted.org/packages/a1/8c/35a19018c77f404f628059ad91bd81917f7301c2c6a0dd70cc8fc4c01004/edgedb-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c0f7b4a96d13d015a57ac7909c74b4699d236ceb4fc27df40b44d21d752ee7a",
"md5": "a9fd9c49b534a79802d98170e9019b3d",
"sha256": "f7a7676deb0f71c6c444bf8db78487d22342eb2cccb4b43c4afac9868da4200a"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a9fd9c49b534a79802d98170e9019b3d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2022142,
"upload_time": "2024-11-06T20:02:59",
"upload_time_iso_8601": "2024-11-06T20:02:59.443360Z",
"url": "https://files.pythonhosted.org/packages/9c/0f/7b4a96d13d015a57ac7909c74b4699d236ceb4fc27df40b44d21d752ee7a/edgedb-2.2.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52b75197597ac49e85f336304239af645ece7b1bbb3917abeefc29b1b69cdae6",
"md5": "9d0e81b86c08268741acc5afc6b36900",
"sha256": "57a198e477253c87783f8de88f4402ea0736fd1a82c383b4209da00bd3367dc6"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9d0e81b86c08268741acc5afc6b36900",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5421944,
"upload_time": "2024-11-06T20:03:01",
"upload_time_iso_8601": "2024-11-06T20:03:01.144230Z",
"url": "https://files.pythonhosted.org/packages/52/b7/5197597ac49e85f336304239af645ece7b1bbb3917abeefc29b1b69cdae6/edgedb-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b86e7e8a93afd53a90872f1ec839c14d6c6cd0bb6cb389f64cbbe2b001c293f4",
"md5": "8a28966d55363136ebab7ea3375843b1",
"sha256": "5798fd7c96dbb1bfa6e9422a2ba05729399ef0ed8d2b7dc124b72d20b6c6a465"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8a28966d55363136ebab7ea3375843b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5465122,
"upload_time": "2024-11-06T20:03:03",
"upload_time_iso_8601": "2024-11-06T20:03:03.676973Z",
"url": "https://files.pythonhosted.org/packages/b8/6e/7e8a93afd53a90872f1ec839c14d6c6cd0bb6cb389f64cbbe2b001c293f4/edgedb-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e973b02d7729f52bee1a263049dde123aa899eb351a768a15d110fdb54e2d572",
"md5": "1d21d13de1779685d38cc2b3fdf7bf18",
"sha256": "cd8e823425d5ba90d5fd70517b124985bd90d1681a3880fd45a6ff11594dea75"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "1d21d13de1779685d38cc2b3fdf7bf18",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1991658,
"upload_time": "2024-11-06T20:03:06",
"upload_time_iso_8601": "2024-11-06T20:03:06.016015Z",
"url": "https://files.pythonhosted.org/packages/e9/73/b02d7729f52bee1a263049dde123aa899eb351a768a15d110fdb54e2d572/edgedb-2.2.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "368427228147b711a929426121b5f3142843f4dbb5002fbb2b0274e7134c8e2b",
"md5": "c536b3b46429e8072a7365470239cbf6",
"sha256": "ad2e17406c887d74d03fb7608cba744df8adce209aacfd3e67ca0fdd40dd2c66"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c536b3b46429e8072a7365470239cbf6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2054088,
"upload_time": "2024-11-06T20:03:07",
"upload_time_iso_8601": "2024-11-06T20:03:07.886945Z",
"url": "https://files.pythonhosted.org/packages/36/84/27228147b711a929426121b5f3142843f4dbb5002fbb2b0274e7134c8e2b/edgedb-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6fe38806e4b468c19648bfeb5c137288f56ed71016ce80145c5f63d188f2ce8",
"md5": "6e6cf8dfe2365b0d9855dfc73e884633",
"sha256": "081806525161b5a53b1ee4748dc39858c5b021cddb63384204e5bc3b50227046"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6e6cf8dfe2365b0d9855dfc73e884633",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2021229,
"upload_time": "2024-11-06T20:03:09",
"upload_time_iso_8601": "2024-11-06T20:03:09.526465Z",
"url": "https://files.pythonhosted.org/packages/d6/fe/38806e4b468c19648bfeb5c137288f56ed71016ce80145c5f63d188f2ce8/edgedb-2.2.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa94022196dd4bc3add0c33c73d5b9e4bbb43eb4979e188a1e76f9d3d06459b4",
"md5": "0b4f8b586f6a3330654e23bc872187b6",
"sha256": "5c178e80b3e01f7b02b4574a486720adb962fce6faa1fba891c55a18d91876fd"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0b4f8b586f6a3330654e23bc872187b6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5012463,
"upload_time": "2024-11-06T20:03:11",
"upload_time_iso_8601": "2024-11-06T20:03:11.111769Z",
"url": "https://files.pythonhosted.org/packages/aa/94/022196dd4bc3add0c33c73d5b9e4bbb43eb4979e188a1e76f9d3d06459b4/edgedb-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad769ce1ef77225e6b4c85f759b09967879698dc92e1aa3dc1ad86e6d4dab093",
"md5": "0a36f7ad9cd43f1d0ede7196a5811551",
"sha256": "ad36bc265f871b2dd829ebf28ae8ec5df6e597408d5703ff93a9bde97494211a"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0a36f7ad9cd43f1d0ede7196a5811551",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5052987,
"upload_time": "2024-11-06T20:03:12",
"upload_time_iso_8601": "2024-11-06T20:03:12.981886Z",
"url": "https://files.pythonhosted.org/packages/ad/76/9ce1ef77225e6b4c85f759b09967879698dc92e1aa3dc1ad86e6d4dab093/edgedb-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18b76d156e1530279d6c80b25600e63b32e8d0b996d99903294977e09785d097",
"md5": "558ad047c722e0f11bc35b3005dfb952",
"sha256": "a4b84a118da248abe18b365a9e26485c1447f6fb6b7ee7ae6d7fc83414ea03b5"
},
"downloads": -1,
"filename": "edgedb-2.2.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "558ad047c722e0f11bc35b3005dfb952",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1988494,
"upload_time": "2024-11-06T20:03:15",
"upload_time_iso_8601": "2024-11-06T20:03:15.914325Z",
"url": "https://files.pythonhosted.org/packages/18/b7/6d156e1530279d6c80b25600e63b32e8d0b996d99903294977e09785d097/edgedb-2.2.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7bd5fa8967755ec169d07b4e52684897a612bebb3d2086d2eade79c33642630",
"md5": "356385736a7a5627a53f9a63fd55d086",
"sha256": "3ddbb841fe80d25ede524535dd52878cf74adae8c920e1f5dd912cddf66fe5f8"
},
"downloads": -1,
"filename": "edgedb-2.2.0.tar.gz",
"has_sig": false,
"md5_digest": "356385736a7a5627a53f9a63fd55d086",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 1276984,
"upload_time": "2024-11-06T20:03:18",
"upload_time_iso_8601": "2024-11-06T20:03:18.881752Z",
"url": "https://files.pythonhosted.org/packages/b7/bd/5fa8967755ec169d07b4e52684897a612bebb3d2086d2eade79c33642630/edgedb-2.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-06 20:03:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "edgedb",
"github_project": "edgedb-python",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "edgedb"
}