Metadata-Version: 1.1
Name: qmarkpg
Version: 0.1
Summary: A psycopg2 wrapper using qmark/named parameters styles
Home-page: https://github.com/dvarrazzo/qmarkpg
Author: Daniele Varrazzo
Author-email: daniele.varrazzo@gmail.com
License: LGPL
Description: The qmarkpg package is a psycopg2_ wrapper allowing the use of "qmark"
        placeholders style for positional arguments (i.e. ``?`` instead of ``%s``) and
        "named" placeholders for mapped arguments (i.e. ``:name`` instead of
        ``%(name)s``.
        
        This package is a proof of concept: adopting qmark/named placeholders is not
        in program for future psycopg versions. Some multi-database environment may
        find such placeholder styles more useful for cross-database compatibility.
        
        .. _psycopg2: http://initd.org/psycopg/
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
