edgedb-python
edgedb-python copied to clipboard
The official Python client library for EdgeDB
### Summary Currently `Object` class does not look like dict and different tools do not understand how to use it. My suggestion is to add `Object.to_dict` method or inherit from...
In accordance to https://github.com/edgedb/edgedb/pull/3862
Per https://discord.com/channels/841451783728529451/849374935209607199/943568048504328242
Pylance, the most commonly used Python language server for VS Code, currently displays errors when attempting to access any objects imported in the top level `___init___.py` of the edgedb module....
Also added tests in test_sync_query.py, and use only sync client in sync_* tests. This is a part of #289
Change was made in #286
I am connecting to **EdgeDB-SERVER** in a **GCP VM**, using **FASTAPI**, code is given below API code file and edgedb.toml are already in the same directory. ``` conn = edgedb.create_async_client()...
Instance running in VM $ edgedb instance list ┌───────┬────────────┬───────┬──────────────────┬─────────┐ │ Kind │ Name │ Port │ Version │ Status │ ├───────┼────────────┼───────┼──────────────────┼─────────┤ │ local │ quickstart │ 10700 │ 1.0-rc.3+147eb62 │...
For comment: * Add an .edsl reader interface (blocking/ not async) * Add validation for .edsl files (blocking/ not async) * Add a direct `migrate` or `apply_schema` interface (blocking/ not...