--- /dev/null
+Overview / Installation
+============
+
+## Overview
+
+The SQLAlchemy SQL Toolkit and Object Relational Mapper is a comprehensive set of tools for working with databases and Python. It has several distinct areas of functionality which can be used individually or combined together. Its major API components, all public-facing, are illustrated below:
+
+ {diagram}
+ +-----------------------------------------------------------+
+ | Object Relational Mapper (ORM) |
+ | [[tutorial]](rel:datamapping) [[docs]](rel:advdatamapping) |
+ +-----------------------------------------------------------+
+ +---------+ +------------------------------------+ +--------+
+ | | | SQL Expression Language | | |
+ | | | [[tutorial]](rel:sql) [[docs]](rel:docstrings_sqlalchemy.sql) | | |
+ | | +------------------------------------+ | |
+ | +-----------------------+ +--------------+ |
+ | Dialect/Execution | | Schema Management |
+ | [[docs]](rel:dbengine) | | [[docs]](rel:metadata) |
+ +---------------------------------+ +-----------------------+
+ +----------------------+ +----------------------------------+
+ | Connection Pooling | | Types |
+ | [[docs]](rel:pooling) | | [[docs]](rel:types) |
+ +----------------------+ +----------------------------------+
+
+Above, the two most significant front-facing portions of SQLAlchemy are the **Object Relational Mapper** and the **SQL Construction Language**. These are two separate toolkits, one building off the other. SQL Expressions can be used independently of the ORM. When using the ORM, the SQL Expression language is used to establish object-relational configurations as well as in querying.
+
+## Tutorials
+
+ * [Object Relational Tutorial](rel:datamapping) - This describes the richest feature of SQLAlchemy, its object relational mapper. If you want to work with higher-level SQL which is constructed automatically for you, as well as management of Python objects, proceed to this tutorial.
+ * [SQL Expression Tutorial](rel:sql) - The core of SQLAlchemy is its SQL expression language. The SQL construction language is a toolkit all its own, independent of the ORM package, which can be used to construct manipulable SQL expressions which can be programmatically constructed, modified, and executed, returning cursor-like result sets. It's a lot more lightweight than the ORM and is appropriate for higher scaling SQL operations. It's also heavily present within the ORM's public facing API, so advanced ORM users will want to master this language as well.
+
+## Reference Documentation
+
+ * [Datamapping](rel:advdatamapping) - A comprehensive walkthrough of major ORM patterns and techniques.
+ * [Session](rel:unitofwork) - A detailed description of SQLAlchemy's Session object
+ * [Engines](rel:dbengine) - Describes SQLAlchemy's database-connection facilities, including connection documentation and working with connections and transactions.
+ * [Connection Pools](rel:pooling) - Further detail about SQLAlchemy's connection pool library.
+ * [Metadata](rel:metadata) - All about schema management using `MetaData` and `Table` objects; reading database schemas into your application, creating and dropping tables, constraints, defaults, sequences, indexes.
+ * [Types](rel:types) - Datatypes included with SQLAlchemy, their functions, as well as how to create your own types.
+ * [Plugins](rel:plugins) - Included addons for SQLAlchemy
+
+## Installing SQLAlchemy {@name=sqlalchemy}
+
+Installing SQLAlchemy from scratch is most easily achieved with [setuptools][]. ([setuptools installation][install setuptools]). Just run this from the command-line:
+
+ # easy_install SQLAlchemy
+
+This command will download the latest version of SQLAlchemy from the [Python Cheese Shop][cheese] and install it to your system.
+
+[setuptools]: http://peak.telecommunity.com/DevCenter/setuptools
+[install setuptools]: http://peak.telecommunity.com/DevCenter/EasyInstall#installation-instructions
+[cheese]: http://cheeseshop.python.org/pypi/SQLAlchemy
+
+Otherwise, you can install from the distribution using the `setup.py` script:
+
+ # python setup.py install
+
+### Installing a Database API {@name=dbms}
+
+SQLAlchemy is designed to operate with a [DBAPI](http://www.python.org/doc/peps/pep-0249/) implementation built for a particular database, and includes support for the most popular databases:
+
+* Postgres: [psycopg2](http://www.initd.org/tracker/psycopg/wiki/PsycopgTwo)
+* SQLite: [pysqlite](http://initd.org/tracker/pysqlite)
+* MySQL: [MySQLDB](http://sourceforge.net/projects/mysql-python)
+* Oracle: [cx_Oracle](http://www.cxtools.net/default.aspx?nav=home)
+* MS-SQL: [pyodbc](http://pyodbc.sourceforge.net/) (recommended) [adodbapi](http://adodbapi.sourceforge.net/) [pymssql](http://pymssql.sourceforge.net/)
+* Firebird: [kinterbasdb](http://kinterbasdb.sourceforge.net/)
+* Informix: [informixdb](http://informixdb.sourceforge.net/)
+
+When using Python 2.5 or greater, a SQLite database library is already provided.
+
+### Checking the Installed SQLAlchemy Version
+
+These documents are designed around version 0.4. If you're working on a system that already has SQLAlchemy installed, check the version from your Python prompt like this:
+
+ {python}
+ >>> import sqlalchemy
+ >>> sqlalchemy.__version__ # doctest: +SKIP
+ 0.4.0
+
+