Metadata-Version: 1.0
Name: python-storymarket
Version: 1.0b1
Summary: Client library for the Storymarket
Home-page: http://packages.python.org/python-storymarket
Author: Jacob Kaplan-Moss
Author-email: jacob@jacobian.org
License: BSD
Description: Python bindings to the Storymarket API
        ======================================
        
        This is a client for the `Storymarket API <http://storymarket.com/api/v1/>`_.
        
        You'll need a Storymarket account to use this library, and you'll need to
        generate an API token by visiting the
        `Developer API page <http://storymarket.com/users/api/>`_.
        
        Usage
        -----
        
        First create an instance of the API with your creds::
        
        >>> import storymarket
        >>> api = storymarket.Storymarket(YOUR_API_KEY)
        
        Then call methods::
        
        >>> api.orgs.all()
        [<Org: My Org>]
        
        >>> api.text.create({
        ...     'title': 'Man Bite Dog',
        ...     'content': '...',
        ...     'tags': ['man', 'dog', 'biting'],
        ...     'org': api.orgs.all()[0],
        ...     'category': api.categories.get(123)
        ... })
        >>> <Text: Man Bites Dog>
        
        For details,
        `see the documentation <http://packages.python.org/python-storymarket/>`_
        and/or Storymarket's `API documentation <http://storymarket.com/api/v1/>`_.
        
        Contributing
        ------------
        
        Development takes place
        `on GitHub <http://github.com/jacobian/python-storymarket>`_; please file
        bugs/pull requests there.
        
        Development on this project was funded by the
        `Lawrence Journal-World <http://ljworld.com/>`_ - thanks!
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
