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.
- Host: GitHub
- URL: https://github.com/ramusus/django-engagements
- Owner: ramusus
- License: other
- Created: 2014-12-23T02:46:36.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-04-25T13:58:51.000Z (about 10 years ago)
- Last Synced: 2024-04-16T17:07:53.509Z (over 2 years ago)
- Language: Python
- Homepage:
- Size: 208 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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')),