🌐 AI搜索 & 代理 主页
Skip to content

vigneshsdev/python-spanner-sqlalchemy

 
 

Repository files navigation

python-sqlalchemy-spanner

NOTE: This project is still in DEVELOPMENT. It may make breaking changes without prior notice and should not yet be used for production purposes.

Usage example:

from sqlalchemy import create_engine, select, MetaData, Table

engine = create_engine(
    "spanner:///projects/project-id/instances/instance-id/databases/database-id"
)

table = Table("table-id", MetaData(bind=engine), autoload=True)
for row in select(["*"], from_obj=table).execute().fetchall():
    print(row)

About

No description, website, or topics provided.

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%