Metadata-Version: 2.1
Name: CodernityDB-HTTP
Version: 0.4.1
Summary: HTTP server version of CodernityDB
Home-page: http://labs.codernity.com/codernitydb-http
Author: Codernity
Author-email: contact@codernity.com
License: Apache 2.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Database
Classifier: Topic :: Software Development
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 4 - Beta

================
CodernityDB-HTTP
================

It's dependency less (except CodernityDB obviously), by default it will run using ``wsgiref`` python server. You can in config change the server to use `Gevent`_. We build custom WSGI application (no 3rd party framework).

CodernityDB-HTTP is HTTP layer for CodernityDB_.

.. image:: http://labs.codernity.com/codernitydb-http/_images/CodernityDB_HTTP.png
    :align: center


Main documentation is located at http://labs.codernity.com/codernitydb-http

Install
~~~~~~~

Because CodernityDB is pure Python you need to perform standard installation for Python applications ::

    pip install CodernityDB-HTTP

or using easy_install::

    easy_install CodernityDB-HTTP

or from sources::

    hg clone ssh://hg@bitbucket.org/codernity/codernitydb-http
    cd codernitydb-http
    python setup.py install



.. note::
    If you want to use ``msgpack`` please install ``msgpack-python``, or ``msgpack-pure`` to make use of it.


.. _Gevent: http://gevent.org
.. _CodernityDB: http://labs.codernity.com/codernitydb
