Config.in 1.0 KB

12345678910111213141516171819202122
  1. config BR2_PACKAGE_PYTHON_PSYCOPG2
  2. bool "python-psycopg2"
  3. select BR2_PACKAGE_POSTGRESQL
  4. help
  5. Psycopg is the most popular PostgreSQL database adapter for
  6. the Python programming language. Its main features are the
  7. complete implementation of the Python DB API 2.0 specification
  8. and the thread safety (several threads can share the same
  9. connection). It was designed for heavily multi-threaded
  10. applications that create and destroy lots of cursors and make
  11. a large number of concurrent INSERTs or UPDATEs.
  12. Psycopg 2 is mostly implemented in C as a libpq wrapper,
  13. resulting in being both efficient and secure. It features
  14. client-side and server-side cursors, asynchronous
  15. communication and notifications, COPY support. Many Python
  16. types are supported out-of-the-box and adapted to matching
  17. PostgreSQL data types; adaptation can be extended and
  18. customized thanks to a flexible objects adaptation system.
  19. Psycopg 2 is both Unicode and Python 3 friendly.
  20. http://initd.org/psycopg/