Ports Search

Results 781790 of 1,144 for /databases/.(0.004 seconds)
databases/oursql-0.9.3.2 (Score: 0.09045241)
MySQL bindings for python
oursql is a set of MySQL bindings for python 2.4+ with a focus on wrapping the MYSQL_STMT API to provide real parameterization and real server-side cursors. MySQL 4.1.2 or better is required.
databases/peewee-2.8.0 (Score: 0.09045241)
Small, expressive Python ORM
Peewee is a small, expressive ORM written in Python. It supports PostgreSQL, MySQL and SQLite.
databases/pg8000-1.10.6 (Score: 0.09045241)
Pure-Python Interface to the PostgreSQL Database
pg8000 is a Pure-Python interface to the PostgreSQL database engine. It is one of many PostgreSQL interfaces for the Python programming language. pg8000 is somewhat distinctive in that it is written entirely in Python and does not rely on any external libraries (such as a compiled python module, or PostgreSQL's libpq library). pg8000 supports the standard Python DB-API version 2.0.
databases/pg_pqueue-1.0.2 (Score: 0.09045241)
PostgreSQL PQ Protocol Modules
PQueue is a package providing low-level PQ protocol classes for interacting with a PostgreSQL database. It supports version 3.0 of the protocol--the current primary version of protocol. The package also provides a basic protocol transaction class. This class keeps the state of the protocol in an interrupt safe manner, and validates the integrity of the communication as messages are received. In general, you probably will never use this package directly, unless you are writing a driver.
databases/pgcli-0.20.1 (Score: 0.09045241)
CLI for Postgres Database with auto-completion and syntax highlighting
pgcli is a command line interface for Postgres with auto-completion and syntax highlighting.
databases/pgspecial-1.3.0 (Score: 0.09045241)
Meta-commands handler for Postgres Database
This package provides an API to execute meta-commands (AKA "special", or "backslash commands") on PostgreSQL.
databases/pickleDB-0.6.2 (Score: 0.09045241)
Lightweight, fast, and simple key-value store
pickleDB is a lightweight, fast, and simple database based on Python's own json module.
databases/mysql-5.7.15 (Score: 0.09045241)
Multithreaded SQL database (server)
MySQL is a very fast, multi-threaded, multi-user and robust SQL (Structured Query Language) database server.
databases/psycogreen-1.0 (Score: 0.09045241)
Python library to enable psycopg2 to work with coroutine libraries
The psycogreen package enables psycopg2 to work with coroutine libraries, using asynchronous calls internally but offering a blocking interface so that regular code can run unmodified.
databases/psycopg2-2.6.1 (Score: 0.09045241)
High performance Python adapter for PostgreSQL
psycopg2 is a PostgreSQL database adapter for the Python programming language. It was written from scratch with the aim of being small, fast and stable. It supports the full Python DBAPI-2.0 and is thread safe. psycopg2 is different from the other database adapter because it was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a conspicuous number of concurrent INSERTs or UPDATEs. Every open Python connection keeps a pool of real (UNIX or TCP/IP) connections to the database. Every time a new cursor is created, a new connection does not need to be opened; instead one of the unused connections from the pool is used. That makes psycopg very fast in typical client-server applications that create a servicing thread every time a client request arrives.