Metadata-Version: 1.0
Name: dodotable
Version: 0.1.2
Summary: dodotable
Home-page: https://github.com/spoqa/dodotable
Author: Kang Hyojun
Author-email: ed@spoqa.com
License: MIT
Description: dodotable
        =========
        
        .. image:: https://badge.fury.io/py/dodotable.svg?
           :target: https://pypi.python.org/pypi/dodotable
           :alt: Latest PyPI version
        
        .. image:: https://readthedocs.org/projects/dodotable/badge/
           :target: https://dodotable.readthedocs.org/
           :alt: Documentation Status
        
        .. image:: https://travis-ci.org/spoqa/dodotable.svg?branch=master
           :target: https://travis-ci.org/spoqa/dodotable
        
        HTML table representation for `SQLAlchemy`_ .
        
        .. _SQLAlchemy: http://www.sqlalchemy.org/
        
        
        SQLAlchemy to ``<table>``
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: python
        
           from dodotable.schema import Table
        
           table = Table(
               cls=Music,
               label='music table',
               columns=[
                   Column(attr='id', label=u'id'),
                   Column(attr='name', label=u'name'),
               ],
               sqlalchemy_session=session
           )
           print(table.select(offset=0, limit=10).__html__())
        
Platform: UNKNOWN
