thoas / django-fairepart

A generic application to import your contact from facebook, google, etc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-fairepart

Build Status

A generic application to import your contact from facebook, google, etc.

Installation

  1. Download the package on GitHub or simply install it via PyPi

  2. Add fairepart to your INSTALLED_APPS

    INSTALLED_APPS = (
        'fairepart',
    )
    
  3. Sync your database using syncdb command from django command line

  4. Include fairepart in your urls.py

    from django.conf.urls import patterns, url, include
    
    urlpatterns = patterns(
        '',
        (r'^',
        include('fairepart.urls')),
    )
    
  5. Configure settings

About

A generic application to import your contact from facebook, google, etc.

License:MIT License


Languages

Language:Python 99.5%Language:Makefile 0.5%