Metadata-Version: 1.1
Name: query
Version: 0.1.0
Summary: Quick interactive exploration of SQL databases.
Home-page: http://github.com/boydgreenfield/query/
Author: Nick Boyd Greenfield
Author-email: boyd.greenfield@gmail.com
License: MIT
Description: 
        ``query``
        ---------
        
        ``query`` is a simple module for quickly, interactively exploring a SQL database.
        Together with IPython, it supports quick tab-completion of table and column
        names, convenience methods for quickly looking at data (e.g., ``.head()``, ``.tail()``),
        and the ability to get a rich interactive database connection up in only 2 lines
        by setting a few required environmental variables.
        
        Demo in 2 lines
        ```````````````
        
        Explore the included demo database:
        
        .. code:: python
        
            from query import QueryDb
            db = QueryDb(demo=True)
        
        
        Real-world use case in 2 lines
        ``````````````````````````````
        
        Or set a few environmental variables (``QUERY_DB_DRIVER``,
        ``QUERY_DB_HOST``, ``QUERY_DB_PORT``, ``QUERY_DB_NAME``, and
        ``QUERY_DB_PASS``) and get started just as quickly:
        
        .. code:: python
        
            from query import QueryDB  # capital 'B' is OK too :)
            db = QueryDB()
        
        
        Links
        `````
        * `Code and website <http://github.com/boydgreenfield/query/>`_
        
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: IPython
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
