Metadata-Version: 1.1
Name: jmbo-twitter
Version: 0.3
Summary: Pull, cache, display tweets.
Home-page: http://github.com/praekelt/jmbo-twitter
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: BSD
Description: Jmbo Twitter
        ============
        **Jmbo app to fetch and display tweets as listings.**
        
        .. contents:: Contents
            :depth: 5
        
        Installation
        ------------
        
        #. Install or add ``jmbo-twitter`` to your Python path.
        
        #. Add ``jmbo_twitter`` to your ``INSTALLED_APPS`` setting.
        
        Usage
        -----
        
        Twitter's API version 1 requires authentication. Obtain authentication info at https://dev.twitter.com/apps.
        The following setting is required::
            
            JMBO_TWITTER = {
                'consumer_key': 'XXX', 
                'consumer_secret': 'XXX', 
                'access_token_key': 'XXX', 
                'access_token_secret': 'XXX'
            }
        
        Authors
        =======
        
        Praekelt Foundation
        -------------------
        
        * Hedley Roos
        
        Changelog
        =========
        
        0.3
        ---
        #. Fetch updates asynchronously.
        
        0.2.2
        -----
        #. Cache templates.
        
        0.2.1
        -----
        #. Actually respect the force parameter when fetching tweets.
        #. Clean up confusing code.
        
        0.2
        ---
        #. Handle Twitter's new API v1 which requires authentication.
        
        0.1.4.1
        -------
        #. More defensive code in the event of python-twitter breaking.
        
        0.1.4
        -----
        #. Do not use slug as the Twitter identifier anymore since it may clash.
        
        0.1.3
        -----
        #. Make admin resilient in case admin_urls.py is not in settings.
        
        0.1.2
        -----
        #. Fix bug where the twitter account name may be overridden.
        
        0.1.1
        -----
        #. Fix serious bug where new feeds could not be added.
        
        0.1
        ---
        #. First release.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
