Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.48 KB

File metadata and controls

37 lines (28 loc) · 1.48 KB

title: SQLAlchemy Example Projects and Code category: page slug: sqlalchemy-projects-code-examples sortorder: 500030001 toc: False sidebartitle: SQLAlchemy Example Code meta: Python example projects and code that show how to use the SQLAlchemy object-relational mapper (ORM).

SQLAlchemy is a Python library for interacting with databases either through SQL or with an object-relational mapper (ORM).

SQLAlchemy logo.

This page describes projects that use SQLAlchemy to accomplish some goal, such as data analysis, running a web application's back end, or providing a web API.

sandman2

sandman2 (project documentation and PyPI package information) is a code library for automatically generating RESTful APIs from existing database schemas. This approach is handy for solving straightforward situations where you want to put an abstraction layer between one or more applications and your relational database to prevent or reduce direct database access.

The sandman2 project is provided under the Apache License 2.0.