Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/thoas/django-fairepart
- Owner: thoas
- License: mit
- Created: 2013-11-29T15:18:34.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-21T15:06:55.000Z (about 9 years ago)
- Last Synced: 2024-10-06T04:12:47.059Z (3 months ago)
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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-fairepartA 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