Metadata-Version: 1.1
Name: Flask-Disqus
Version: 0.0.1
Summary: Small extension for Flask to make possible using Disqus comments
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: BSD
Description: Flask-Disqus
        ============
        
        This is a small and simple integration of `Disqus comment system`_ into `Flask`_.
        
        .. _Flask: http://flask.pocoo.org
        .. _Disqus comment system: http://disqus.com
        
        Installation
        ------------
        - Go to directory with app in console and type *python setup.py install*
        - Press "Enter"
        
        Usage
        -----
        .. code-block:: python
        
            from flask_disqus import Disqus
            disq = Disqus(app)
        
        
        in html template:
        
        .. code-block:: html
        
            {% autoescape false %}
            {{ disqus_dev() }}
            {{ disqus_show_comments("comments_name") }}
            {% endautoescape %}
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
