Metadata-Version: 2.1
Name: django-socialize
Version: 0.5.4
Summary: A Django app to create social networks with social authentication.
Home-page: https://williamlagos.github.io/
Author: William Oliveira de Lagos
Author-email: william.lagos@icloud.com
License: LGPLv3 License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/x-rst

=========
Socialize
=========

Socialize is a Django app to create social networks with social authentication.

Quick start
-----------

1. Add "socialize" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = (
        ...
        'socialize',
    )

2. Include the socialize URLconf in your project urls.py like this::

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

3. Run `python manage.py syncdb` to create the socialize models.

4. Visit http://127.0.0.1:8000/ to view a sample with social authentications

