{"library":"sqlalchemy-aurora-data-api","title":"SQLAlchemy Aurora Data API","type":"library","description":"Provides an SQLAlchemy dialect for AWS Aurora Serverless Data API, enabling connection to Aurora clusters without persistent database connections. Current version 0.5.0, updated occasionally.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install sqlalchemy-aurora-data-api"],"cli":null},"imports":["from sqlalchemy import create_engine"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/chanzuckerberg/sqlalchemy-aurora-data-api","docs":null,"changelog":null,"pypi":"https://pypi.org/project/sqlalchemy-aurora-data-api/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"from sqlalchemy import create_engine\nimport os\n\n# Requires AWS credentials configured via environment or IAM role\nengine = create_engine(\"aurora_data_api://?database=my_database&aws_region=us-east-1\")\nwith engine.connect() as conn:\n    result = conn.execute(\"SELECT 1\")\n    print(result.fetchone())","lang":"python","description":"Basic usage: create an engine with the aurora_data_api dialect and query the database.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}