Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 603 Bytes

File metadata and controls

26 lines (19 loc) · 603 Bytes

Django Intersections

Django tool to show groups members intersections 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',
    'intersections',
)

Include the intersections URLs in your project:

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