This is a small and simple integration of Disqus comment system into Flask. UPD: uploaded to PyPI link
- Go to directory with app in console and type python setup.py install
- Press "Enter"
from flask_disqus import Disqus
disq = Disqus(app)
in html template:
{% autoescape false %}
{{ disqus_dev() }}
{{ disqus_show_comments("comments_name") }}
{% endautoescape %}