Metadata-Version: 1.1
Name: rebecca.todict_bpmappers
Version: 0.1
Summary: implementation for rebecca.todict using bpmappers
Home-page: https://github.com/rebeccaframework/rebecca.todict_bpmappers
Author: Atsushi Odagiri
Author-email: aodagx@gmail.com
License: MIT
Description: .. contents::
        
        rebecca.todict_bpmappers
        ===============================
        
        ``rebecca.todict_bpmappers`` is implementation for `rebecca.todict <http://pypi.python.org/pypi/rebecca.todict/>`_
        using `bpmappers <http://pypi.python.org/pypi/bpmappers/>`_
        
        INSTALL
        ==================
        
        Install using pip or easy_install.::
        
          $ pip install rebecca.todict_bpmappers
          $ easy_install rebecca.todict_bpmappers
        
        
        USAGE
        ===============
        
        ``rebecca.todict_bpmappers`` has include hook.::
        
          config.include('rebecca.todict_bpmappers')
        
        This hook will include ``rebecca.todict`` too.
        
        ``bpmapper`` decorator register todict adapter implemented by ``bpmappers``.
        
        ::
        
          from bpmappers import Mapper, RawField
          from rebecca.todict_bpmappers import bpmapper
        
          @bpmapper('dummy.Person', name="p1")
          class PersonMapper(Mapper):
              username = RawField('name')
              num = RawField('value')
        
        To use that mapper, call ``todict`` API of `rebecca.todict`::
        
          d = todict(request, person, name="p1")
        
        
        
        Contributors
        ============
        
        .. Note:  place names and roles of the people who contribute to this package
        ..        in this file, one to a line, like so:
        
        - Atsushi Odagiri, Original Author
        
        Changelog
        =========
        
        0.1 (2013-02-16)
        --------------------
        
        - first release
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Framework :: Pyramid
Classifier: License :: OSI Approved :: MIT License
