├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── install-gel.sh │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── README.md ├── _static │ └── theme_overrides.css ├── api │ ├── advanced.rst │ ├── asyncio_client.rst │ ├── blocking_client.rst │ ├── codegen.rst │ └── types.rst ├── conf.py ├── index.rst ├── installation.rst ├── requirements.txt └── usage.rst ├── edgedb ├── __init__.py ├── _version.py ├── abstract.py ├── ai │ ├── __init__.py │ ├── core.py │ └── types.py ├── asyncio_client.py ├── base_client.py ├── blocking_client.py ├── codegen.py ├── con_utils.py ├── credentials.py ├── datatypes │ ├── __init__.py │ ├── datatypes.py │ └── range.py ├── describe.py ├── enums.py ├── errors │ ├── __init__.py │ ├── _base.py │ └── tags.py ├── introspect.py ├── options.py ├── pgproto │ ├── __init__.py │ ├── pgproto.py │ └── types.py ├── protocol │ ├── __init__.py │ ├── asyncio_proto.py │ ├── blocking_proto.py │ └── protocol.py ├── py.typed ├── scram │ ├── __init__.py │ └── saslprep.py └── transaction.py ├── flake.lock ├── flake.nix ├── gel ├── __init__.py ├── __main__.py ├── _internal │ ├── __init__.py │ ├── _atomic.py │ ├── _auth │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── _builtin_ui.py │ │ ├── _email_password.py │ │ ├── _oauth.py │ │ ├── _pkce.py │ │ └── _token_data.py │ ├── _cache.py │ ├── _codegen │ │ ├── __init__.py │ │ ├── _generator.py │ │ ├── _models │ │ │ ├── __init__.py │ │ │ └── _pydantic.py │ │ └── _module.py │ ├── _collections_extras.py │ ├── _color.py │ ├── _dataclass_extras.py │ ├── _deferred_import.py │ ├── _dirdiff.py │ ├── _dirhash.py │ ├── _dirsync.py │ ├── _dis_bool.py │ ├── _edgeql │ │ ├── __init__.py │ │ ├── _keywords.py │ │ ├── _quoting.py │ │ ├── _schema.py │ │ └── _tokens.py │ ├── _import_extras.py │ ├── _inspect_extras.py │ ├── _integration │ │ ├── __init__.py │ │ └── _fastapi │ │ │ ├── __init__.py │ │ │ ├── _auth │ │ │ ├── __init__.py │ │ │ ├── _builtin_ui.py │ │ │ ├── _email_password.py │ │ │ └── _oidc.py │ │ │ ├── _cli │ │ │ ├── __init__.py │ │ │ ├── _lifespan.py │ │ │ ├── _patch.py │ │ │ └── _smtpd.py │ │ │ ├── _client.py │ │ │ └── _utils.py │ ├── _is_overload.py │ ├── _lazyprop.py │ ├── _namespace.py │ ├── _platform.py │ ├── _polyfills │ │ ├── __init__.py │ │ ├── _intenum.py │ │ ├── _intenum_impl.py │ │ ├── _strenum.py │ │ ├── _strenum_impl.py │ │ ├── _taskgroup.py │ │ └── _taskgroup_impl.py │ ├── _qb │ │ ├── __init__.py │ │ ├── _abstract.py │ │ ├── _expressions.py │ │ ├── _generics.py │ │ ├── _protocols.py │ │ └── _reflection.py │ ├── _qbmodel │ │ ├── __init__.py │ │ ├── _abstract │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _descriptors.py │ │ │ ├── _expressions.py │ │ │ ├── _functions.py │ │ │ ├── _globals.py │ │ │ ├── _link_set.py │ │ │ ├── _methods.py │ │ │ ├── _primitive.py │ │ │ └── _syntax.py │ │ └── _pydantic │ │ │ ├── __init__.py │ │ │ ├── _fields.py │ │ │ ├── _models.py │ │ │ ├── _types.py │ │ │ └── _utils.py │ ├── _reflection │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── _callables.py │ │ ├── _casts.py │ │ ├── _enums.py │ │ ├── _functions.py │ │ ├── _globals.py │ │ ├── _modules.py │ │ ├── _operators.py │ │ ├── _query.py │ │ ├── _state.py │ │ └── _types.py │ ├── _save.md │ ├── _save.py │ ├── _schemapath.py │ ├── _testbase │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── _jsonschema.py │ │ ├── _models.py │ │ ├── _server.py │ │ └── _thirdpartyorm.py │ ├── _tracked_list.py │ ├── _type_expression.py │ ├── _typecache.py │ ├── _typing_dispatch.py │ ├── _typing_eval.py │ ├── _typing_inspect.py │ ├── _typing_parametric.py │ ├── _typing_protos.py │ ├── _unsetid.py │ ├── _utils.py │ ├── _version.py │ ├── _xmethod.py │ ├── arch.md │ ├── dlist_modes.md │ └── ruff.toml ├── _version.py ├── abstract.py ├── ai │ ├── __init__.py │ ├── core.py │ └── types.py ├── asyncio_client.py ├── auth │ ├── __init__.py │ ├── builtin_ui.py │ ├── email_password.py │ └── oauth.py ├── base_client.py ├── blocking_client.py ├── cli.py ├── codegen │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── cli2.py │ └── generator.py ├── con_utils.py ├── connresource.py ├── credentials.py ├── datatypes │ ├── .gitignore │ ├── NOTES │ ├── __init__.pxd │ ├── __init__.py │ ├── abstract.pxd │ ├── abstract.pyx │ ├── args.c │ ├── comp.c │ ├── config_memory.pxd │ ├── config_memory.pyx │ ├── datatypes.h │ ├── datatypes.pxd │ ├── datatypes.pyi │ ├── datatypes.pyx │ ├── date_duration.pxd │ ├── date_duration.pyx │ ├── enum.pyx │ ├── freelist.h │ ├── hash.c │ ├── internal.h │ ├── namedtuple.c │ ├── object.c │ ├── pythoncapi_compat.h │ ├── range.py │ ├── record.c │ ├── record_desc.c │ ├── relative_duration.pxd │ ├── relative_duration.pyx │ └── repr.c ├── describe.py ├── enums.py ├── errors │ ├── __init__.py │ ├── _base.py │ └── tags.py ├── fastapi │ ├── __init__.py │ └── auth │ │ ├── __init__.py │ │ └── email_password.py ├── introspect.py ├── models │ ├── __init__.py │ ├── pydantic.py │ └── ruff.toml ├── options.py ├── orm │ ├── __init__.py │ ├── cli.py │ ├── django │ │ ├── __init__.py │ │ ├── gelmodels │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ └── compiler.py │ │ └── generator.py │ ├── introspection.py │ ├── sqla.py │ └── sqlmodel.py ├── protocol │ ├── .gitignore │ ├── __init__.py │ ├── asyncio_proto.pxd │ ├── asyncio_proto.pyx │ ├── blocking_proto.pxd │ ├── blocking_proto.pyx │ ├── codecs │ │ ├── array.pxd │ │ ├── array.pyx │ │ ├── base.pxd │ │ ├── base.pyx │ │ ├── codecs.pxd │ │ ├── codecs.pyx │ │ ├── edb_types.pxi │ │ ├── enum.pxd │ │ ├── enum.pyx │ │ ├── namedtuple.pxd │ │ ├── namedtuple.pyx │ │ ├── object.pxd │ │ ├── object.pyx │ │ ├── range.pxd │ │ ├── range.pyx │ │ ├── record.pxd │ │ ├── record.pyx │ │ ├── scalar.pxd │ │ ├── scalar.pyx │ │ ├── set.pxd │ │ ├── set.pyx │ │ ├── tuple.pxd │ │ └── tuple.pyx │ ├── consts.pxi │ ├── cpythonx.pxd │ ├── lru.pxd │ ├── lru.pyx │ ├── protocol.pxd │ ├── protocol.pyx │ ├── protocol_v0.pxd │ └── protocol_v0.pyx ├── py.typed ├── scram │ ├── __init__.py │ └── saslprep.py └── transaction.py ├── pyproject.toml ├── setup.py ├── tests ├── .gitignore ├── __init__.py ├── bench_uuid.py ├── codegen │ ├── linked │ │ ├── test_linked.edgeql │ │ ├── test_linked_async_edgeql.py.assert │ │ └── test_linked_edgeql.py.assert │ ├── test-project1 │ │ ├── edgedb.toml │ │ ├── generated_async_edgeql.py.assert │ │ ├── generated_async_edgeql.py.assert3 │ │ ├── generated_async_edgeql.py.assert5 │ │ ├── linked │ │ ├── select_optional_json.edgeql │ │ ├── select_optional_json_async_edgeql.py.assert │ │ ├── select_optional_json_edgeql.py.assert │ │ ├── select_scalar.edgeql │ │ ├── select_scalar_async_edgeql.py.assert │ │ └── select_scalar_edgeql.py.assert │ └── test-project2 │ │ ├── argnames │ │ ├── query_one.edgeql │ │ ├── query_one_async_edgeql.py.assert │ │ └── query_one_edgeql.py.assert │ │ ├── dbschema │ │ └── migrations │ │ │ └── 00001.edgeqll │ │ ├── edgedb.toml │ │ ├── generated_async_edgeql.py.assert │ │ ├── generated_async_edgeql.py.assert3 │ │ ├── generated_async_edgeql.py.assert5 │ │ ├── object │ │ ├── link_prop.edgeql │ │ ├── link_prop_async_edgeql.py.assert │ │ ├── link_prop_edgeql.py.assert │ │ ├── select_object.edgeql │ │ ├── select_object_async_edgeql.py.assert │ │ ├── select_object_edgeql.py.assert │ │ ├── select_objects.edgeql │ │ ├── select_objects_async_edgeql.py.assert │ │ └── select_objects_edgeql.py.assert │ │ ├── parpkg │ │ ├── select_args.edgeql │ │ ├── select_args_async_edgeql.py.assert │ │ ├── select_args_async_edgeql.py.assert3 │ │ ├── select_args_async_edgeql.py.assert5 │ │ ├── select_args_edgeql.py.assert │ │ ├── select_args_edgeql.py.assert3 │ │ ├── select_args_edgeql.py.assert5 │ │ └── subpkg │ │ │ ├── my_query.edgeql │ │ │ ├── my_query_async_edgeql.py.assert │ │ │ ├── my_query_async_edgeql.py.assert3 │ │ │ ├── my_query_async_edgeql.py.assert5 │ │ │ ├── my_query_edgeql.py.assert │ │ │ ├── my_query_edgeql.py.assert3 │ │ │ └── my_query_edgeql.py.assert5 │ │ └── scalar │ │ ├── custom_vector_input.edgeql │ │ ├── custom_vector_input_async_edgeql.py.assert │ │ ├── custom_vector_input_async_edgeql.py.assert3 │ │ ├── custom_vector_input_edgeql.py.assert │ │ ├── custom_vector_input_edgeql.py.assert3 │ │ ├── select_scalar.edgeql │ │ ├── select_scalar_async_edgeql.py.assert │ │ ├── select_scalar_edgeql.py.assert │ │ ├── select_scalars.edgeql │ │ ├── select_scalars_async_edgeql.py.assert │ │ └── select_scalars_edgeql.py.assert ├── credentials1.json ├── datatypes │ ├── __init__.py │ ├── test_datatypes.py │ └── test_uuid.py ├── dbsetup │ ├── base.edgeql │ ├── base.esdl │ ├── chemistry.esdl │ ├── chemistry.gel │ ├── empty.gel │ ├── empty_ai.gel │ ├── features.edgeql │ ├── features_default.esdl │ ├── features_other.esdl │ ├── features_other_nested.esdl │ ├── link_set.gel │ ├── orm.edgeql │ ├── orm.gel │ ├── orm_qb.edgeql │ └── orm_qb.gel ├── nested_collections.py ├── test_array.py ├── test_async_model.py ├── test_async_query.py ├── test_async_retry.py ├── test_async_tx.py ├── test_asyncio_client.py ├── test_blocking_client.py ├── test_codegen.py ├── test_con_utils.py ├── test_connect.py ├── test_credentials.py ├── test_dataclass_extras.py ├── test_datetime.py ├── test_dis_bool.py ├── test_django_basic.py ├── test_enum.py ├── test_errors.py ├── test_globals.py ├── test_is_overload.py ├── test_link_set.py ├── test_link_set_abstract.py ├── test_link_set_models.py ├── test_link_with_props_set.py ├── test_memory.py ├── test_model_generator.py ├── test_model_sync.py ├── test_namedtuples.py ├── test_parametric.py ├── test_postgis.py ├── test_proto.py ├── test_qb.py ├── test_schemapath.py ├── test_scram.py ├── test_sourcecode.py ├── test_sqla_basic.py ├── test_sqla_features.py ├── test_sqlmodel_basic.py ├── test_sqlmodel_features.py ├── test_state.py ├── test_sync_query.py ├── test_sync_retry.py ├── test_sync_tx.py ├── test_typing_dispatch.py ├── test_unsetid.py └── test_vector.py └── tools ├── gen_init.py ├── gen_models.py └── make_import_shims.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/install-gel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/.github/workflows/install-gel.sh -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _templates 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/api/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/api/advanced.rst -------------------------------------------------------------------------------- /docs/api/asyncio_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/api/asyncio_client.rst -------------------------------------------------------------------------------- /docs/api/blocking_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/api/blocking_client.rst -------------------------------------------------------------------------------- /docs/api/codegen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/api/codegen.rst -------------------------------------------------------------------------------- /docs/api/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/api/types.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /edgedb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/__init__.py -------------------------------------------------------------------------------- /edgedb/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/_version.py -------------------------------------------------------------------------------- /edgedb/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/abstract.py -------------------------------------------------------------------------------- /edgedb/ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/ai/__init__.py -------------------------------------------------------------------------------- /edgedb/ai/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/ai/core.py -------------------------------------------------------------------------------- /edgedb/ai/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/ai/types.py -------------------------------------------------------------------------------- /edgedb/asyncio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/asyncio_client.py -------------------------------------------------------------------------------- /edgedb/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/base_client.py -------------------------------------------------------------------------------- /edgedb/blocking_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/blocking_client.py -------------------------------------------------------------------------------- /edgedb/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/codegen.py -------------------------------------------------------------------------------- /edgedb/con_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/con_utils.py -------------------------------------------------------------------------------- /edgedb/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/credentials.py -------------------------------------------------------------------------------- /edgedb/datatypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/datatypes/__init__.py -------------------------------------------------------------------------------- /edgedb/datatypes/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/datatypes/datatypes.py -------------------------------------------------------------------------------- /edgedb/datatypes/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/datatypes/range.py -------------------------------------------------------------------------------- /edgedb/describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/describe.py -------------------------------------------------------------------------------- /edgedb/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/enums.py -------------------------------------------------------------------------------- /edgedb/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/errors/__init__.py -------------------------------------------------------------------------------- /edgedb/errors/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/errors/_base.py -------------------------------------------------------------------------------- /edgedb/errors/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/errors/tags.py -------------------------------------------------------------------------------- /edgedb/introspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/introspect.py -------------------------------------------------------------------------------- /edgedb/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/options.py -------------------------------------------------------------------------------- /edgedb/pgproto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/pgproto/__init__.py -------------------------------------------------------------------------------- /edgedb/pgproto/pgproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/pgproto/pgproto.py -------------------------------------------------------------------------------- /edgedb/pgproto/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/pgproto/types.py -------------------------------------------------------------------------------- /edgedb/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/protocol/__init__.py -------------------------------------------------------------------------------- /edgedb/protocol/asyncio_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/protocol/asyncio_proto.py -------------------------------------------------------------------------------- /edgedb/protocol/blocking_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/protocol/blocking_proto.py -------------------------------------------------------------------------------- /edgedb/protocol/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/protocol/protocol.py -------------------------------------------------------------------------------- /edgedb/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgedb/scram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/scram/__init__.py -------------------------------------------------------------------------------- /edgedb/scram/saslprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/scram/saslprep.py -------------------------------------------------------------------------------- /edgedb/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/edgedb/transaction.py -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/flake.nix -------------------------------------------------------------------------------- /gel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/__init__.py -------------------------------------------------------------------------------- /gel/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/__main__.py -------------------------------------------------------------------------------- /gel/_internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gel/_internal/_atomic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_atomic.py -------------------------------------------------------------------------------- /gel/_internal/_auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_auth/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_auth/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_auth/_base.py -------------------------------------------------------------------------------- /gel/_internal/_auth/_builtin_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_auth/_builtin_ui.py -------------------------------------------------------------------------------- /gel/_internal/_auth/_email_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_auth/_email_password.py -------------------------------------------------------------------------------- /gel/_internal/_auth/_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_auth/_oauth.py -------------------------------------------------------------------------------- /gel/_internal/_auth/_pkce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_auth/_pkce.py -------------------------------------------------------------------------------- /gel/_internal/_auth/_token_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_auth/_token_data.py -------------------------------------------------------------------------------- /gel/_internal/_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_cache.py -------------------------------------------------------------------------------- /gel/_internal/_codegen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_codegen/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_codegen/_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_codegen/_generator.py -------------------------------------------------------------------------------- /gel/_internal/_codegen/_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_codegen/_models/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_codegen/_models/_pydantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_codegen/_models/_pydantic.py -------------------------------------------------------------------------------- /gel/_internal/_codegen/_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_codegen/_module.py -------------------------------------------------------------------------------- /gel/_internal/_collections_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_collections_extras.py -------------------------------------------------------------------------------- /gel/_internal/_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_color.py -------------------------------------------------------------------------------- /gel/_internal/_dataclass_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_dataclass_extras.py -------------------------------------------------------------------------------- /gel/_internal/_deferred_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_deferred_import.py -------------------------------------------------------------------------------- /gel/_internal/_dirdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_dirdiff.py -------------------------------------------------------------------------------- /gel/_internal/_dirhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_dirhash.py -------------------------------------------------------------------------------- /gel/_internal/_dirsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_dirsync.py -------------------------------------------------------------------------------- /gel/_internal/_dis_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_dis_bool.py -------------------------------------------------------------------------------- /gel/_internal/_edgeql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_edgeql/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_edgeql/_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_edgeql/_keywords.py -------------------------------------------------------------------------------- /gel/_internal/_edgeql/_quoting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_edgeql/_quoting.py -------------------------------------------------------------------------------- /gel/_internal/_edgeql/_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_edgeql/_schema.py -------------------------------------------------------------------------------- /gel/_internal/_edgeql/_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_edgeql/_tokens.py -------------------------------------------------------------------------------- /gel/_internal/_import_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_import_extras.py -------------------------------------------------------------------------------- /gel/_internal/_inspect_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_inspect_extras.py -------------------------------------------------------------------------------- /gel/_internal/_integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_auth/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_auth/_builtin_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_auth/_builtin_ui.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_auth/_email_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_auth/_email_password.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_auth/_oidc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_auth/_oidc.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_cli/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_cli/_lifespan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_cli/_lifespan.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_cli/_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_cli/_patch.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_cli/_smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_cli/_smtpd.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_client.py -------------------------------------------------------------------------------- /gel/_internal/_integration/_fastapi/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_integration/_fastapi/_utils.py -------------------------------------------------------------------------------- /gel/_internal/_is_overload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_is_overload.py -------------------------------------------------------------------------------- /gel/_internal/_lazyprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_lazyprop.py -------------------------------------------------------------------------------- /gel/_internal/_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_namespace.py -------------------------------------------------------------------------------- /gel/_internal/_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_platform.py -------------------------------------------------------------------------------- /gel/_internal/_polyfills/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_polyfills/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_polyfills/_intenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_polyfills/_intenum.py -------------------------------------------------------------------------------- /gel/_internal/_polyfills/_intenum_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_polyfills/_intenum_impl.py -------------------------------------------------------------------------------- /gel/_internal/_polyfills/_strenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_polyfills/_strenum.py -------------------------------------------------------------------------------- /gel/_internal/_polyfills/_strenum_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_polyfills/_strenum_impl.py -------------------------------------------------------------------------------- /gel/_internal/_polyfills/_taskgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_polyfills/_taskgroup.py -------------------------------------------------------------------------------- /gel/_internal/_polyfills/_taskgroup_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_polyfills/_taskgroup_impl.py -------------------------------------------------------------------------------- /gel/_internal/_qb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qb/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_qb/_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qb/_abstract.py -------------------------------------------------------------------------------- /gel/_internal/_qb/_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qb/_expressions.py -------------------------------------------------------------------------------- /gel/_internal/_qb/_generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qb/_generics.py -------------------------------------------------------------------------------- /gel/_internal/_qb/_protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qb/_protocols.py -------------------------------------------------------------------------------- /gel/_internal/_qb/_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qb/_reflection.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_base.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_descriptors.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_expressions.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_functions.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_globals.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_link_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_link_set.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_methods.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_primitive.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_abstract/_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_abstract/_syntax.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_pydantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_pydantic/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_pydantic/_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_pydantic/_fields.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_pydantic/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_pydantic/_models.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_pydantic/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_pydantic/_types.py -------------------------------------------------------------------------------- /gel/_internal/_qbmodel/_pydantic/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_qbmodel/_pydantic/_utils.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_base.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_callables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_callables.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_casts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_casts.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_enums.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_functions.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_globals.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_modules.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_operators.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_query.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_state.py -------------------------------------------------------------------------------- /gel/_internal/_reflection/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_reflection/_types.py -------------------------------------------------------------------------------- /gel/_internal/_save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_save.md -------------------------------------------------------------------------------- /gel/_internal/_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_save.py -------------------------------------------------------------------------------- /gel/_internal/_schemapath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_schemapath.py -------------------------------------------------------------------------------- /gel/_internal/_testbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_testbase/__init__.py -------------------------------------------------------------------------------- /gel/_internal/_testbase/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_testbase/_base.py -------------------------------------------------------------------------------- /gel/_internal/_testbase/_jsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_testbase/_jsonschema.py -------------------------------------------------------------------------------- /gel/_internal/_testbase/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_testbase/_models.py -------------------------------------------------------------------------------- /gel/_internal/_testbase/_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_testbase/_server.py -------------------------------------------------------------------------------- /gel/_internal/_testbase/_thirdpartyorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_testbase/_thirdpartyorm.py -------------------------------------------------------------------------------- /gel/_internal/_tracked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_tracked_list.py -------------------------------------------------------------------------------- /gel/_internal/_type_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_type_expression.py -------------------------------------------------------------------------------- /gel/_internal/_typecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_typecache.py -------------------------------------------------------------------------------- /gel/_internal/_typing_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_typing_dispatch.py -------------------------------------------------------------------------------- /gel/_internal/_typing_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_typing_eval.py -------------------------------------------------------------------------------- /gel/_internal/_typing_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_typing_inspect.py -------------------------------------------------------------------------------- /gel/_internal/_typing_parametric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_typing_parametric.py -------------------------------------------------------------------------------- /gel/_internal/_typing_protos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_typing_protos.py -------------------------------------------------------------------------------- /gel/_internal/_unsetid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_unsetid.py -------------------------------------------------------------------------------- /gel/_internal/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_utils.py -------------------------------------------------------------------------------- /gel/_internal/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_version.py -------------------------------------------------------------------------------- /gel/_internal/_xmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/_xmethod.py -------------------------------------------------------------------------------- /gel/_internal/arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/arch.md -------------------------------------------------------------------------------- /gel/_internal/dlist_modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/dlist_modes.md -------------------------------------------------------------------------------- /gel/_internal/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_internal/ruff.toml -------------------------------------------------------------------------------- /gel/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/_version.py -------------------------------------------------------------------------------- /gel/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/abstract.py -------------------------------------------------------------------------------- /gel/ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/ai/__init__.py -------------------------------------------------------------------------------- /gel/ai/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/ai/core.py -------------------------------------------------------------------------------- /gel/ai/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/ai/types.py -------------------------------------------------------------------------------- /gel/asyncio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/asyncio_client.py -------------------------------------------------------------------------------- /gel/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/auth/__init__.py -------------------------------------------------------------------------------- /gel/auth/builtin_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/auth/builtin_ui.py -------------------------------------------------------------------------------- /gel/auth/email_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/auth/email_password.py -------------------------------------------------------------------------------- /gel/auth/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/auth/oauth.py -------------------------------------------------------------------------------- /gel/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/base_client.py -------------------------------------------------------------------------------- /gel/blocking_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/blocking_client.py -------------------------------------------------------------------------------- /gel/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/cli.py -------------------------------------------------------------------------------- /gel/codegen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/codegen/__init__.py -------------------------------------------------------------------------------- /gel/codegen/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/codegen/__main__.py -------------------------------------------------------------------------------- /gel/codegen/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/codegen/cli.py -------------------------------------------------------------------------------- /gel/codegen/cli2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/codegen/cli2.py -------------------------------------------------------------------------------- /gel/codegen/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/codegen/generator.py -------------------------------------------------------------------------------- /gel/con_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/con_utils.py -------------------------------------------------------------------------------- /gel/connresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/connresource.py -------------------------------------------------------------------------------- /gel/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/credentials.py -------------------------------------------------------------------------------- /gel/datatypes/.gitignore: -------------------------------------------------------------------------------- 1 | /datatypes.c 2 | -------------------------------------------------------------------------------- /gel/datatypes/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/NOTES -------------------------------------------------------------------------------- /gel/datatypes/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/__init__.pxd -------------------------------------------------------------------------------- /gel/datatypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/__init__.py -------------------------------------------------------------------------------- /gel/datatypes/abstract.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/abstract.pxd -------------------------------------------------------------------------------- /gel/datatypes/abstract.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/abstract.pyx -------------------------------------------------------------------------------- /gel/datatypes/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/args.c -------------------------------------------------------------------------------- /gel/datatypes/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/comp.c -------------------------------------------------------------------------------- /gel/datatypes/config_memory.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/config_memory.pxd -------------------------------------------------------------------------------- /gel/datatypes/config_memory.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/config_memory.pyx -------------------------------------------------------------------------------- /gel/datatypes/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/datatypes.h -------------------------------------------------------------------------------- /gel/datatypes/datatypes.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/datatypes.pxd -------------------------------------------------------------------------------- /gel/datatypes/datatypes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/datatypes.pyi -------------------------------------------------------------------------------- /gel/datatypes/datatypes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/datatypes.pyx -------------------------------------------------------------------------------- /gel/datatypes/date_duration.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/date_duration.pxd -------------------------------------------------------------------------------- /gel/datatypes/date_duration.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/date_duration.pyx -------------------------------------------------------------------------------- /gel/datatypes/enum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/enum.pyx -------------------------------------------------------------------------------- /gel/datatypes/freelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/freelist.h -------------------------------------------------------------------------------- /gel/datatypes/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/hash.c -------------------------------------------------------------------------------- /gel/datatypes/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/internal.h -------------------------------------------------------------------------------- /gel/datatypes/namedtuple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/namedtuple.c -------------------------------------------------------------------------------- /gel/datatypes/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/object.c -------------------------------------------------------------------------------- /gel/datatypes/pythoncapi_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/pythoncapi_compat.h -------------------------------------------------------------------------------- /gel/datatypes/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/range.py -------------------------------------------------------------------------------- /gel/datatypes/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/record.c -------------------------------------------------------------------------------- /gel/datatypes/record_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/record_desc.c -------------------------------------------------------------------------------- /gel/datatypes/relative_duration.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/relative_duration.pxd -------------------------------------------------------------------------------- /gel/datatypes/relative_duration.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/relative_duration.pyx -------------------------------------------------------------------------------- /gel/datatypes/repr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/datatypes/repr.c -------------------------------------------------------------------------------- /gel/describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/describe.py -------------------------------------------------------------------------------- /gel/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/enums.py -------------------------------------------------------------------------------- /gel/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/errors/__init__.py -------------------------------------------------------------------------------- /gel/errors/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/errors/_base.py -------------------------------------------------------------------------------- /gel/errors/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/errors/tags.py -------------------------------------------------------------------------------- /gel/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/fastapi/__init__.py -------------------------------------------------------------------------------- /gel/fastapi/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/fastapi/auth/__init__.py -------------------------------------------------------------------------------- /gel/fastapi/auth/email_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/fastapi/auth/email_password.py -------------------------------------------------------------------------------- /gel/introspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/introspect.py -------------------------------------------------------------------------------- /gel/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/models/__init__.py -------------------------------------------------------------------------------- /gel/models/pydantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/models/pydantic.py -------------------------------------------------------------------------------- /gel/models/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/models/ruff.toml -------------------------------------------------------------------------------- /gel/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/options.py -------------------------------------------------------------------------------- /gel/orm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/__init__.py -------------------------------------------------------------------------------- /gel/orm/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/cli.py -------------------------------------------------------------------------------- /gel/orm/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gel/orm/django/gelmodels/__init__.py: -------------------------------------------------------------------------------- 1 | import django 2 | 3 | __version__ = "0.0.1" 4 | -------------------------------------------------------------------------------- /gel/orm/django/gelmodels/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/django/gelmodels/apps.py -------------------------------------------------------------------------------- /gel/orm/django/gelmodels/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/django/gelmodels/compiler.py -------------------------------------------------------------------------------- /gel/orm/django/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/django/generator.py -------------------------------------------------------------------------------- /gel/orm/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/introspection.py -------------------------------------------------------------------------------- /gel/orm/sqla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/sqla.py -------------------------------------------------------------------------------- /gel/orm/sqlmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/orm/sqlmodel.py -------------------------------------------------------------------------------- /gel/protocol/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | /*.c 3 | -------------------------------------------------------------------------------- /gel/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/__init__.py -------------------------------------------------------------------------------- /gel/protocol/asyncio_proto.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/asyncio_proto.pxd -------------------------------------------------------------------------------- /gel/protocol/asyncio_proto.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/asyncio_proto.pyx -------------------------------------------------------------------------------- /gel/protocol/blocking_proto.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/blocking_proto.pxd -------------------------------------------------------------------------------- /gel/protocol/blocking_proto.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/blocking_proto.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/array.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/array.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/array.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/array.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/base.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/base.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/codecs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/codecs.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/codecs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/codecs.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/edb_types.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/edb_types.pxi -------------------------------------------------------------------------------- /gel/protocol/codecs/enum.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/enum.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/enum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/enum.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/namedtuple.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/namedtuple.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/namedtuple.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/namedtuple.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/object.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/object.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/object.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/object.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/range.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/range.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/range.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/range.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/record.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/record.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/record.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/record.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/scalar.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/scalar.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/scalar.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/scalar.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/set.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/set.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/set.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/set.pyx -------------------------------------------------------------------------------- /gel/protocol/codecs/tuple.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/tuple.pxd -------------------------------------------------------------------------------- /gel/protocol/codecs/tuple.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/codecs/tuple.pyx -------------------------------------------------------------------------------- /gel/protocol/consts.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/consts.pxi -------------------------------------------------------------------------------- /gel/protocol/cpythonx.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/cpythonx.pxd -------------------------------------------------------------------------------- /gel/protocol/lru.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/lru.pxd -------------------------------------------------------------------------------- /gel/protocol/lru.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/lru.pyx -------------------------------------------------------------------------------- /gel/protocol/protocol.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/protocol.pxd -------------------------------------------------------------------------------- /gel/protocol/protocol.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/protocol.pyx -------------------------------------------------------------------------------- /gel/protocol/protocol_v0.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/protocol_v0.pxd -------------------------------------------------------------------------------- /gel/protocol/protocol_v0.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/protocol/protocol_v0.pyx -------------------------------------------------------------------------------- /gel/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gel/scram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/scram/__init__.py -------------------------------------------------------------------------------- /gel/scram/saslprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/scram/saslprep.py -------------------------------------------------------------------------------- /gel/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/gel/transaction.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /models 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/bench_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/bench_uuid.py -------------------------------------------------------------------------------- /tests/codegen/linked/test_linked.edgeql: -------------------------------------------------------------------------------- 1 | select 42 2 | -------------------------------------------------------------------------------- /tests/codegen/linked/test_linked_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/linked/test_linked_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/linked/test_linked_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/linked/test_linked_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project1/edgedb.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/codegen/test-project1/generated_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project1/generated_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project1/generated_async_edgeql.py.assert3: -------------------------------------------------------------------------------- 1 | generated_async_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project1/generated_async_edgeql.py.assert5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project1/generated_async_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project1/linked: -------------------------------------------------------------------------------- 1 | ../linked/ -------------------------------------------------------------------------------- /tests/codegen/test-project1/select_optional_json.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project1/select_optional_json.edgeql -------------------------------------------------------------------------------- /tests/codegen/test-project1/select_optional_json_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project1/select_optional_json_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project1/select_optional_json_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project1/select_optional_json_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project1/select_scalar.edgeql: -------------------------------------------------------------------------------- 1 | select 1; 2 | -------------------------------------------------------------------------------- /tests/codegen/test-project1/select_scalar_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project1/select_scalar_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project1/select_scalar_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project1/select_scalar_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/argnames/query_one.edgeql: -------------------------------------------------------------------------------- 1 | select $arg_name_with_underscores 2 | -------------------------------------------------------------------------------- /tests/codegen/test-project2/argnames/query_one_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/argnames/query_one_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/argnames/query_one_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/argnames/query_one_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/dbschema/migrations/00001.edgeqll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/dbschema/migrations/00001.edgeqll -------------------------------------------------------------------------------- /tests/codegen/test-project2/edgedb.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/codegen/test-project2/generated_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/generated_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/generated_async_edgeql.py.assert3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/generated_async_edgeql.py.assert3 -------------------------------------------------------------------------------- /tests/codegen/test-project2/generated_async_edgeql.py.assert5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/generated_async_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/link_prop.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/link_prop.edgeql -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/link_prop_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/link_prop_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/link_prop_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/link_prop_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/select_object.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/select_object.edgeql -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/select_object_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/select_object_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/select_object_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/select_object_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/select_objects.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/select_objects.edgeql -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/select_objects_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/select_objects_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/object/select_objects_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/object/select_objects_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/select_args.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/select_args.edgeql -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/select_args_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/select_args_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/select_args_async_edgeql.py.assert3: -------------------------------------------------------------------------------- 1 | select_args_async_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/select_args_async_edgeql.py.assert5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/select_args_async_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/select_args_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/select_args_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/select_args_edgeql.py.assert3: -------------------------------------------------------------------------------- 1 | select_args_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/select_args_edgeql.py.assert5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/select_args_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/subpkg/my_query.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/subpkg/my_query.edgeql -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/subpkg/my_query_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/subpkg/my_query_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/subpkg/my_query_async_edgeql.py.assert3: -------------------------------------------------------------------------------- 1 | my_query_async_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/subpkg/my_query_async_edgeql.py.assert5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/subpkg/my_query_async_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/subpkg/my_query_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/subpkg/my_query_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/subpkg/my_query_edgeql.py.assert3: -------------------------------------------------------------------------------- 1 | my_query_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/parpkg/subpkg/my_query_edgeql.py.assert5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/parpkg/subpkg/my_query_edgeql.py.assert5 -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/custom_vector_input.edgeql: -------------------------------------------------------------------------------- 1 | select 42 filter exists $input; 2 | -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/custom_vector_input_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/custom_vector_input_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/custom_vector_input_async_edgeql.py.assert3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/custom_vector_input_async_edgeql.py.assert3 -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/custom_vector_input_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/custom_vector_input_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/custom_vector_input_edgeql.py.assert3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/custom_vector_input_edgeql.py.assert3 -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/select_scalar.edgeql: -------------------------------------------------------------------------------- 1 | select 1; 2 | -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/select_scalar_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/select_scalar_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/select_scalar_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/select_scalar_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/select_scalars.edgeql: -------------------------------------------------------------------------------- 1 | select {1, 2, 3}; 2 | -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/select_scalars_async_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/select_scalars_async_edgeql.py.assert -------------------------------------------------------------------------------- /tests/codegen/test-project2/scalar/select_scalars_edgeql.py.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/codegen/test-project2/scalar/select_scalars_edgeql.py.assert -------------------------------------------------------------------------------- /tests/credentials1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/credentials1.json -------------------------------------------------------------------------------- /tests/datatypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/datatypes/__init__.py -------------------------------------------------------------------------------- /tests/datatypes/test_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/datatypes/test_datatypes.py -------------------------------------------------------------------------------- /tests/datatypes/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/datatypes/test_uuid.py -------------------------------------------------------------------------------- /tests/dbsetup/base.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/base.edgeql -------------------------------------------------------------------------------- /tests/dbsetup/base.esdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/base.esdl -------------------------------------------------------------------------------- /tests/dbsetup/chemistry.esdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/chemistry.esdl -------------------------------------------------------------------------------- /tests/dbsetup/chemistry.gel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/chemistry.gel -------------------------------------------------------------------------------- /tests/dbsetup/empty.gel: -------------------------------------------------------------------------------- 1 | # keep this file empty! 2 | -------------------------------------------------------------------------------- /tests/dbsetup/empty_ai.gel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/empty_ai.gel -------------------------------------------------------------------------------- /tests/dbsetup/features.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/features.edgeql -------------------------------------------------------------------------------- /tests/dbsetup/features_default.esdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/features_default.esdl -------------------------------------------------------------------------------- /tests/dbsetup/features_other.esdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/features_other.esdl -------------------------------------------------------------------------------- /tests/dbsetup/features_other_nested.esdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/features_other_nested.esdl -------------------------------------------------------------------------------- /tests/dbsetup/link_set.gel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/link_set.gel -------------------------------------------------------------------------------- /tests/dbsetup/orm.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/orm.edgeql -------------------------------------------------------------------------------- /tests/dbsetup/orm.gel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/orm.gel -------------------------------------------------------------------------------- /tests/dbsetup/orm_qb.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/orm_qb.edgeql -------------------------------------------------------------------------------- /tests/dbsetup/orm_qb.gel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/dbsetup/orm_qb.gel -------------------------------------------------------------------------------- /tests/nested_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/nested_collections.py -------------------------------------------------------------------------------- /tests/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_array.py -------------------------------------------------------------------------------- /tests/test_async_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_async_model.py -------------------------------------------------------------------------------- /tests/test_async_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_async_query.py -------------------------------------------------------------------------------- /tests/test_async_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_async_retry.py -------------------------------------------------------------------------------- /tests/test_async_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_async_tx.py -------------------------------------------------------------------------------- /tests/test_asyncio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_asyncio_client.py -------------------------------------------------------------------------------- /tests/test_blocking_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_blocking_client.py -------------------------------------------------------------------------------- /tests/test_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_codegen.py -------------------------------------------------------------------------------- /tests/test_con_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_con_utils.py -------------------------------------------------------------------------------- /tests/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_connect.py -------------------------------------------------------------------------------- /tests/test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_credentials.py -------------------------------------------------------------------------------- /tests/test_dataclass_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_dataclass_extras.py -------------------------------------------------------------------------------- /tests/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_datetime.py -------------------------------------------------------------------------------- /tests/test_dis_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_dis_bool.py -------------------------------------------------------------------------------- /tests/test_django_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_django_basic.py -------------------------------------------------------------------------------- /tests/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_enum.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_globals.py -------------------------------------------------------------------------------- /tests/test_is_overload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_is_overload.py -------------------------------------------------------------------------------- /tests/test_link_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_link_set.py -------------------------------------------------------------------------------- /tests/test_link_set_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_link_set_abstract.py -------------------------------------------------------------------------------- /tests/test_link_set_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_link_set_models.py -------------------------------------------------------------------------------- /tests/test_link_with_props_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_link_with_props_set.py -------------------------------------------------------------------------------- /tests/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_memory.py -------------------------------------------------------------------------------- /tests/test_model_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_model_generator.py -------------------------------------------------------------------------------- /tests/test_model_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_model_sync.py -------------------------------------------------------------------------------- /tests/test_namedtuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_namedtuples.py -------------------------------------------------------------------------------- /tests/test_parametric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_parametric.py -------------------------------------------------------------------------------- /tests/test_postgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_postgis.py -------------------------------------------------------------------------------- /tests/test_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_proto.py -------------------------------------------------------------------------------- /tests/test_qb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_qb.py -------------------------------------------------------------------------------- /tests/test_schemapath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_schemapath.py -------------------------------------------------------------------------------- /tests/test_scram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_scram.py -------------------------------------------------------------------------------- /tests/test_sourcecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sourcecode.py -------------------------------------------------------------------------------- /tests/test_sqla_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sqla_basic.py -------------------------------------------------------------------------------- /tests/test_sqla_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sqla_features.py -------------------------------------------------------------------------------- /tests/test_sqlmodel_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sqlmodel_basic.py -------------------------------------------------------------------------------- /tests/test_sqlmodel_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sqlmodel_features.py -------------------------------------------------------------------------------- /tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_state.py -------------------------------------------------------------------------------- /tests/test_sync_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sync_query.py -------------------------------------------------------------------------------- /tests/test_sync_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sync_retry.py -------------------------------------------------------------------------------- /tests/test_sync_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_sync_tx.py -------------------------------------------------------------------------------- /tests/test_typing_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_typing_dispatch.py -------------------------------------------------------------------------------- /tests/test_unsetid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_unsetid.py -------------------------------------------------------------------------------- /tests/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tests/test_vector.py -------------------------------------------------------------------------------- /tools/gen_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tools/gen_init.py -------------------------------------------------------------------------------- /tools/gen_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tools/gen_models.py -------------------------------------------------------------------------------- /tools/make_import_shims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-python/HEAD/tools/make_import_shims.py --------------------------------------------------------------------------------