Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 865 Bytes

File metadata and controls

17 lines (11 loc) · 865 Bytes

2017/04/13

Introduction

SQLAlchemy是Python的ORM框架,它的理念是:数据库的量级和性能重要于对象集合,而对象集合的抽象又重要于表和行。

Setup

$ pip install sqlalchemy

Create Engine

References

  1. sqlqlchemy