Metadata-Version: 1.1
Name: ttrss-python
Version: 0.1.4
Summary: A client library for the Tiny Tiny RSS web API
Home-page: https://github.com/Vassius/ttrss-python
Author: Markus Wiik
Author-email: markus.wiik@gmail.com
License: UNKNOWN
Description: ttrss-python - A Tiny Tiny RSS client library
        =============================================
        
        Have you ever wanted to write a python application to interface with your Tiny Tiny RSS server? Read on! 
        
        At a glance
        ===========
        
        Getting started is easy! Just type ``pip install ttrss-python`` in the virtualenv of your choice. 
        
        Usage example:
        
        :: 
        
            from ttrss.client import TTRClient
            client = TTRClient('http://url-to-rss-installation', 'username', 'super-secret-password', auto_login=True)
            cats = client.get_categories()
            cat = cats[0]
            cat.title
            u'News'
            feeds = cat.feeds()
            feed = feeds[0]
            feed.title
            u'MacRumors: Mac News and Rumors - All Stories'
            headlines = feed.headlines()
            # etc...
        
        More detailed documentation can be found at https://ttrss-python.readthedocs.org/en/latest/
        
        Development
        ===========
        ttrss-python is still in early development and far from feature complete. But if there's a specific feature
        you'd like me to prioritize, feel free to submit an issue or a pull request. 
        
        Contribution & feedback
        =======================
        Contributions are welcome! Submit a pull request, file a bug report or write some docs if you'd like. 
        Feature requests and other kinds of feedback are also appreciated. 
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Provides: ttrss
