An open API service indexing awesome lists of open source software.

https://github.com/ramusus/django-engagements

Django tool to collect engagements (like comments, shares or likes) for social networks.
https://github.com/ramusus/django-engagements

Last synced: 2 months ago
JSON representation

Django tool to collect engagements (like comments, shares or likes) for social networks.

Awesome Lists containing this project

README

          

==================
Django Engagements
==================

Django tool to collect engagements (like comments, shares or likes) for social networks.

Quick start
-----------

First of all, read the installation instructions here:
https://github.com/ramusus/django-twitter-api,
https://github.com/ramusus/django-vkontakte-api

Then add this app to your INSTALLED_APPS setting::

INSTALLED_APPS = (
...
'oauth_tokens',
'taggit',
'vkontakte_api',
'engagements',
)

Include the engagements URLs in your project::

url(r'^engagements/', include('engagements.urls')),