edgedb — Easy Examples
Python client for EdgeDB next-generation graph-relational database
Getting started with edgedb
Installation and basic usage of edgedb.
python
# Install: pip install edgedb import edgedb # Basic edgedb usage print(f"Using edgedb") # See documentation for detailed examples
Expected Output
# Expected output shown below # (Run locally with: edgedb)
edgedb is a third-party package. Python client for EdgeDB next-generation graph-relational database. Install with: pip install edgedb
Common edgedb operations
Frequently used features of edgedb.
python
# Install: pip install edgedb import edgedb # Common edgedb patterns print(f"edgedb version: {edgedb.__version__}")
These are the most commonly used features of edgedb in everyday development.
Want to try these examples interactively?
Open Easy Playground