diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2013-04-26 10:06:26 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2013-04-26 10:06:26 +0100 |
commit | 1ff3ea0745521eb83585c4958b646afdc244bc88 (patch) | |
tree | 3b08c488cda9ee19e24c72285b132fdce182c339 | |
parent | 31b6ec63f8ab0bc0333c0cbe9a19543fde437ce2 (diff) | |
download | psycopg2-1ff3ea0745521eb83585c4958b646afdc244bc88.tar.gz |
Dropped a lot of words from the front matter
Replaced with links to the types adaptation table and the extension docs.
-rw-r--r-- | doc/src/index.rst | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/doc/src/index.rst b/doc/src/index.rst index 595c236..04fb929 100644 --- a/doc/src/index.rst +++ b/doc/src/index.rst @@ -15,16 +15,10 @@ Psycopg 2 is mostly implemented in C as a libpq_ wrapper, resulting in being both efficient and secure. It features client-side and :ref:`server-side <server-side-cursors>` cursors, :ref:`asynchronous communication <async-support>` and :ref:`notifications <async-notify>`, |COPY-TO-FROM|__ -support, and a flexible :ref:`objects adaptation system -<python-types-adaptation>`. Many basic Python types are supported -out-of-the-box and mapped to matching PostgreSQL data types, such as strings -(both byte strings and Unicode), numbers (ints, longs, floats, decimals), -booleans and date/time objects (both built-in and `mx.DateTime`_), several -types of :ref:`binary objects <adapt-binary>`. Also available are mappings -between lists and PostgreSQL arrays of any supported type, between -:ref:`dictionaries and PostgreSQL hstore <adapt-hstore>`, between -:ref:`tuples/namedtuples and PostgreSQL composite types <adapt-composite>`, -and between Python objects and :ref:`JSON <adapt-json>`. +support. Many Python types are supported out-of-the-box and :ref:`adapted to +matching PostgreSQL data types <python-types-adaptation>`; adaptation can be +extended and customized thanks to a flexible :ref:`objects adaptation system +<adapting-new-types>`. Psycopg 2 is both Unicode and Python 3 friendly. |