Metadata-Version: 1.0
Name: dodotable
Version: 0.1.1
Summary: dodotable
Home-page: UNKNOWN
Author: Kang Hyojun
Author-email: ed@spoqa.com
License: MIT
Description: 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
