Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/thoas/django-fairepart

A generic application to import your contact from facebook, google, etc.
https://github.com/thoas/django-fairepart

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

django-fairepart
================

.. image:: https://secure.travis-ci.org/thoas/django-fairepart.png?branch=master
:alt: Build Status
:target: http://travis-ci.org/thoas/django-fairepart

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

.. _GitHub: https://github.com/thoas/django-fairepart