Skip to main content

Gel Python driver

Project description

https://github.com/geldata/gel-python/workflows/Tests/badge.svg?event=push&branch=master https://img.shields.io/pypi/v/gel.svg https://img.shields.io/badge/join-github%20discussions-green

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.

Installation

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

$ pip install gel

Basic Usage

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.

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

License

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gel-3.0.1.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

gel-3.0.1-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13 Windows x86-64

gel-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

gel-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

gel-3.0.1-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

gel-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

gel-3.0.1-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

gel-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

gel-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

gel-3.0.1-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

gel-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

gel-3.0.1-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

gel-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

gel-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

gel-3.0.1-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

gel-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

gel-3.0.1-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

gel-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

gel-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

gel-3.0.1-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

gel-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

gel-3.0.1-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

gel-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

gel-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

gel-3.0.1-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

gel-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

gel-3.0.1-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

gel-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

gel-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

gel-3.0.1-cp38-cp38-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

gel-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file gel-3.0.1.tar.gz.

File metadata

  • Download URL: gel-3.0.1.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gel-3.0.1.tar.gz
Algorithm Hash digest
SHA256 3f97aced58040f51b3c766e4065745f3bfa435aed5c9db2e30908701b64244b7
MD5 dee3981cfae3f022b622188d8101777b
BLAKE2b-256 8d70fc0742a98ffb6b3af50d4a3de6cad8a5e62b0b6d7e6c1dc96f5ea1db8e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1.tar.gz:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gel-3.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gel-3.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 201259baf231a4d9610dd2fdb558ed7f35a6b9d9afe467f3628d93498504b8f2
MD5 c0a74cd3318cbbff451923c6d5078379
BLAKE2b-256 1459e9d56be3a6a373ec6c27159b87da02ef90efdf9824d20936eef0acdc027d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a5118a29773ad85ad288347463fc303b6dbefaaf48ca90f6f7e26c5bfff8c01
MD5 87ce1ef463f5800e12fc7b988515d8cc
BLAKE2b-256 f97faab1b4c1edb0e1204a874f94a6ad47285e663bfe0067c6ec94acc708c914

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7573ff7ad692776b73067df9d0a95baf13e15f970d2689695a73b2f65342fc5c
MD5 432aa7b779ef5e3245af8096ec35af08
BLAKE2b-256 29eb6cd222e99781a5e7cd52c9505c7bcb4dab490f2349058a5bc4a6322bbfb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 551577592c16a69954ebc7635a491b832831c5960ed69ceef55cf6c444e219c6
MD5 5dbf9c436edaf70d74bb1c459291d13b
BLAKE2b-256 6d07db639cc6f2e2e8adefe3393159f2a3a36f5ccb1d9ccb9706092f19fd4c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cad334a1ad20c4d0d2a1340e2d874584106d80eb73029d0d3b89a5f694d826c2
MD5 7383d34b10af76c13334ca11afdb7320
BLAKE2b-256 0222429598c9f9c200eeeadaa710b5aff574d8d13f207626dad1a16b1587146e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gel-3.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gel-3.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d835ed6a2dd8e0fe1d48d331463ad08739cc7a3b5b15e899c9a46d77c1c4d0c7
MD5 0aed47a1ed182088393b9a83892d842c
BLAKE2b-256 9971ec425687a0baec03036070adb274a66285d1100432ed5cd33bb557942c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcdef80dc6b463ee1654bf74eba9640aaaf6cad621e555400f0dd372afc96a95
MD5 ef28659d8716e5129b7de6ecefe11dd1
BLAKE2b-256 6439e33882d1743c58a490c6adabe1e2ea2c3da129c5be161e2cbd2d85324ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d03a3b0f52c4af589d4583ee34fb0f41c5141c25e1d3db96d81a1327e04bb19
MD5 25e1d8922681d905d0456e3d7c22432b
BLAKE2b-256 b801d4e3ed5d2e83502d62daeecf80afd140218103480e7d602fb1ebe28f00b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab7e9dbee941272368a4d9558954659e131cbbe3895087468b19ab0d9c2c3374
MD5 6c7c42ab77ccadf6739f819a28201041
BLAKE2b-256 8bf3cd409643e01f08610a95f897c9a7e1baa2a080d5e0d099f9e48b9da244f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58eba38dd3f5704e79ebb01b253a1b731ca31126b38ff11cf8bb09e41898ac8b
MD5 eceef930e515880b5f9b5fb9afddb38a
BLAKE2b-256 78320a148654c3b2085c1d4f461a5f68236f34078e63b2a40aba0349630518ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gel-3.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gel-3.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a064b166147ae07b1e00d0da0eba8ef596c9670bcb717011735a3691d90459ab
MD5 9b1865d343e4a1f5fde249af0bf67de4
BLAKE2b-256 1d2e1f76f0667524d793a637cac5449bb04587219a947cd8e7f2d8e3b70e9346

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab82ac9253cde8367722b567fa288e3191877ff49856b679e25dbb645d754985
MD5 57f0e8bff12c5750a333defbab2c7a0a
BLAKE2b-256 71b4f7f05e189b8edfd09292a6f8e3d151902be42856509329f3a5eb4a48f05f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68c6d6f68896244050344fc4a7f289a9c228e249008c25458fd0b7ea4af6bf53
MD5 7b9e184ec045d79fefe23d0499c779aa
BLAKE2b-256 60b08ff5ffa0e7ff54e647a02c356f30070cf2add466da31900c0e7d2398536f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4c43e090a59a99d231d1ec00ecaf3e9515d39996a02421ca383044c0e2a3258
MD5 98c7b375e44fe727c2a636420fae3a68
BLAKE2b-256 130eb408378e167e3691572758def9b17bb553252d1e57508924403d31818959

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5239732a3fcc1483f82b3290eef2a555ceed831c15c6c61a39723cf6ea89e4bc
MD5 abe009a4bcefdf6c073411f06610d033
BLAKE2b-256 d1577c85e84d9b10f302b9711528db0bc7dcfcff497ebd19c9c55976d048cd10

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gel-3.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gel-3.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c185dc8b1b7bf0c636550e5844291794a6ab06144c5e407550112b57fc1c7e49
MD5 391d4043e2b45341b8a2a94317310226
BLAKE2b-256 17ec944f2ef056e45619cf6fb7ab1477da46bcf3076d75c73d5d482437a561d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 790d7240407e8dea81aa47b6e9356d665f35845ebae23ff86e7ade06ec18fa4a
MD5 60f6f321e913ba6824aaf6796340472a
BLAKE2b-256 9958ad3665c028be562f6833d3a328b2d2ff9fb08bef46611da1ee3cab05e6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1d77664633cdf9ff5b55034451ba803815bfcd96734cdbae9b46a4d67b44016
MD5 28b7c46d8d52ee8eb326be21d890ef8e
BLAKE2b-256 87accfa17883711101c0ee6b3adbd7f205f1f55266be87688c25284af9776b83

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3dd69ffe22db327be823fde08f6bb6c0bf49a62599790c1943372ecb75d0d5a
MD5 f6720185ccf7f83639eb3f11a5ae2bd2
BLAKE2b-256 c066d90f347897c25d23a3b47e2d7174dfdbbe790d096d5f9fbee9dbec85c5d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cdf5263caa279fec760a05809a73e6f2b3e8851380c03b44f9766bdd6f360b3
MD5 36970996389062f36be713457eb754bd
BLAKE2b-256 d4f3ce30385d9e47880920229bb8d53dc43e88f6a97fd03b454fb025b8e5b60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gel-3.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gel-3.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63a6799f9b56790f44932499692aeeb33732bceb323764687fd567bb3415702c
MD5 a9b319bc366f8df007a6a03519dc1ecd
BLAKE2b-256 63fad1927857a0143f6ab32a61c3f48abd4f47c7ad4ca8f780fa437fb8bf6559

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp39-cp39-win_amd64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8be026b5f5dc9ae35157278e2dbad1f71e77136ddcd520acc09855e5189177ff
MD5 b327d4f9dc88545a3cfce86a0f2cad0f
BLAKE2b-256 b58f212ecb9d4c09e8d2fa6941349d47f67a39a9d2a384551d3c09d05374e77d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e092bc072a200878d75c71a972da1bc330e8ebcbd9cd884ee94bc29013a92bfc
MD5 7d656470dd6e45e04cb12e9f79551f19
BLAKE2b-256 9cbca74337e1df274ee76179bfb71bcda2485cf4291fa36d0dfa1f4a557681d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8ab455c3e270a8f092a833b2e9023f347e40d1b39b06d037997bd7631b3f4d8
MD5 04b3b257252e732078d15711a9891da0
BLAKE2b-256 86a6460796866f95fcd7b93446b88fa0f3d6e26137d9fdb6a51c6b751a755968

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a0fb979db2eb6656e6f420ebcb001c45656b23d300ffb4510726ff0f129ff17
MD5 4118a40df89ef77baf66cc666231b652
BLAKE2b-256 92dd83782c377b05f1b14e23d118d2e4395085c33c1c9a1407c70aee7cc6fd8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gel-3.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gel-3.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1fa1f2c67620bcb17345ea64655225bc81ef19c82e6f4a105e70698e7c4abbf1
MD5 bae130fe0a7255fb49ce1c5dfbd2ba6c
BLAKE2b-256 b4abc2e3b4fd5410a1f148684b3c52edec7c7b143da2fad4abcd180135396e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp38-cp38-win_amd64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d70aa9591cfc69f7b7ce9f7dd28b4b98bd83fbeaeb3e2555b905d522fa248ad9
MD5 a8818d746c7e18df5d3f48157df265fe
BLAKE2b-256 064613b2e026ca93fb8c854ffecfd77d88fca178058148a62fb8b5105b293802

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22fd503be58bae37a99e2924d4b87d6846df422bd64c04b8a1e58073e26f2773
MD5 9f24ba7db787c4eb65ea74c2d89767fc
BLAKE2b-256 1bfbf4328e6fa78e3c0b87eeefc156e8e737979ded8ac3f7a8dcd9a9aeec627c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90c85a80cc7cb1baa2978ac90cf6b7bb683f7f15f34e3e5ce25dac018464588e
MD5 5afd0effcf4cdb85ebeb1f8277c770db
BLAKE2b-256 af5993cb901dc8d4016fef072297b7a19840beedfc582b73633cca1f17045747

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gel-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gel-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fd203ece88403c0974c4c551111414ecf1b713e2158c3d38ddb5a4c6eb5f216
MD5 21e8d88dc6443712cbabd4caeff92fbc
BLAKE2b-256 8dda464b5e03923c28bf8a1b13af15fa2d2eab45ff4df9e5fdc7735ff0c69fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for gel-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on geldata/gel-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page