{ "info": { "author": "Ilya Baryshev", "author_email": "baryshev@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3" ], "description": "Django Twitter Tag\n==================\n\n.. image:: https://secure.travis-ci.org/coagulant/django-twitter-tag.png?branch=dev\n :target: https://travis-ci.org/coagulant/django-twitter-tag\n\n.. image:: https://coveralls.io/repos/coagulant/django-twitter-tag/badge.png?branch=dev\n :target: https://coveralls.io/r/coagulant/django-twitter-tag/\n\nA django template tag to display user's recent tweets / search results.\nVersion 1.0 uses Twitter API 1.1.\n\nBasic features are limiting numbers of displayed tweets, filtering out replies and retweets.\nLibrary exposes each tweet ``json`` in template, adding extra attributes: ``html`` and ``datetime``.\nFirst one makes urls, hashtags or twitter usernames clickable, juts like you expect them to be.\nLast one provides python datetime object to ease output in templates.\nUrls are expanded by default. Library handles twitter exceptions gracefully,\nreturning last successful response.\n\nUsage\n-----\n\n* Load tag in your template like this::\n\n {% load twitter_tag %}\n\n\n* Get user's (``futurecolors`` in example) most recent tweets and store them in ``tweets`` variable::\n\n {% get_tweets for \"futurecolors\" as tweets %}\n\n\n* Now you have a list of tweets in your template context, which you can iterate over like this::\n\n