معرفی شرکت ها


django-connected-0.1.5


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Connect your Django powered sites to social networks and other online services.
ویژگی مقدار
سیستم عامل -
نام فایل django-connected-0.1.5
نام django-connected
نسخه کتابخانه 0.1.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Mishbah Razzaque
ایمیل نویسنده mishbahx@gmail.com
آدرس صفحه اصلی https://github.com/mishbahr/django-connected
آدرس اینترنتی https://pypi.org/project/django-connected/
مجوز BSD
============================= django-connected ============================= .. image:: http://img.shields.io/pypi/v/django-connected.svg?style=flat-square :target: https://pypi.python.org/pypi/django-connected/ :alt: Latest Version .. image:: http://img.shields.io/pypi/dm/django-connected.svg?style=flat-square :target: https://pypi.python.org/pypi/django-connected/ :alt: Downloads .. image:: http://img.shields.io/pypi/l/django-connected.svg?style=flat-square :target: https://pypi.python.org/pypi/django-connected/ :alt: License Quickstart ---------- 1. Install ``django-connected``:: pip install django-connected 2. Add ``connected_accounts`` to ``INSTALLED_APPS``:: INSTALLED_APPS = ( ... 'connected_accounts', 'connected_accounts.providers', ... ) 3. Sync database (requires south>=1.0.1 if you are using Django 1.6.x):: python manage.py migrate Preview -------- (Please click on thumbnails for bigger images) .. image:: http://mishbahr.github.io/django-connected/images/small/django_connected_01.jpeg :target: http://mishbahr.github.io/django-connected/images/django_connected_01.png :width: 768px :align: center .. image:: http://mishbahr.github.io/django-connected/images/small/django_connected_02.jpeg :target: http://mishbahr.github.io/django-connected/images/django_connected_02.png :width: 768px :align: center .. image:: http://mishbahr.github.io/django-connected/images/small/django_connected_03.jpeg :target: http://mishbahr.github.io/django-connected/images/django_connected_03.png :width: 768px :align: center .. image:: http://mishbahr.github.io/django-connected/images/small/django_connected_04.jpeg :target: http://mishbahr.github.io/django-connected/images/django_connected_04.png :width: 768px :align: center Supported Providers ------------------- .. image:: http://mishbahr.github.io/django-connected/images/oauth_logo.png :width: 200px :align: center * Bitly (OAuth2) * Disqus (OAuth2) * Facebook (OAuth2) * Google (OAuth2) * Instagram (OAuth2) * Mailchimp (OAuth2) * Twitter (OAuth) * more... (coming soon) Configuration ------------- Most providers require you to sign up for a so called API client or app, containing a client ID and API secret. When creating the OAuth app on the side of the provider pay special attention to the callback URL (sometimes also referred to as redirect URL). Use a callback URL of the form:: http://example.com/admin/connected_accounts/account/callback/<provider_name>/ Disqus ======= Register your OAuth2 app here: http://disqus.com/api/applications/ :: CONNECTED_ACCOUNTS_DISQUS_CONSUMER_KEY = '<disqus_client_id>' CONNECTED_ACCOUNTS_DISQUS_CONSUMER_SECRET = '<disqus_client_secret>' By default, ``read`` and ``write`` scope is enabled :: CONNECTED_ACCOUNTS_DISQUS_SCOPE = ['read', 'write', ] The available permissions for the scope value are ``read``, ``write``, ``email``, and ``admin``. Facebook ======== A key and secret key can be obtained by creating an app at https://developers.facebook.com/apps :: CONNECTED_ACCOUNTS_FACEBOOK_CONSUMER_KEY = '<facebook_consumer_key>' CONNECTED_ACCOUNTS_FACEBOOK_CONSUMER_SECRET = '<facebook_consumer_secret>' By default, ``email``, ``public_profile`` and ``user_friends`` is enabled, apps using other permissions require review by Facebook:: CONNECTED_ACCOUNTS_FACEBOOK_SCOPE = ['email', 'public_profile', 'user_friends'] Use ``FACEBOOK_AUTH_PARAMS`` to pass along other parameters to the Facebook API:: CONNECTED_ACCOUNTS_FACEBOOK_AUTH_PARAMS = {'auth_type': 'reauthenticate'} Google ====== The Google provider is OAuth2 based. Create a google app to obtain a key and secret through the developer console https://console.developers.google.com/ :: CONNECTED_ACCOUNTS_GOOGLE_CONSUMER_KEY = '<google_client_id>' CONNECTED_ACCOUNTS_GOOGLE_CONSUMER_SECRET = '<google_client_secret>' By default, ``profile`` and ``email`` scope is enabled:: CONNECTED_ACCOUNTS_GOOGLE_SCOPE = ['profile', 'email'] By default *Offline Access* request is enabled:: CONNECTED_ACCOUNTS_GOOGLE_AUTH_PARAMS = {'access_type': 'offline'} See https://developers.google.com/identity/protocols/OAuth2WebServer#offline for more information. Twitter ======= You can register an app on Twitter via https://apps.twitter.com/app/new :: CONNECTED_ACCOUNTS_TWITTER_CONSUMER_KEY = '<twitter_consumer_key>' CONNECTED_ACCOUNTS_TWITTER_CONSUMER_SECRET = '<twitter_consumer_secret>' Instagram ========= Register your OAuth app here: https://instagram.com/developer/clients/register/ :: CONNECTED_ACCOUNTS_INSTAGRAM_CONSUMER_KEY = '<instagram_client_id>' CONNECTED_ACCOUNTS_INSTAGRAM_CONSUMER_SECRET = '<instagram_client_secret>' Usage ----- By defining one (or many) ``AccountField`` on a custom model you can take advantage of connected accounts in your custom applications. Quickstart ========== You need to define a AccountField on the model you would like to use:: from django.db import models from connected_accounts.fields import AccountField class MyModel(models.Model): account = AccountField('twitter') [...] The ``AccountField`` takes a string as first argument which will be used to limit choices for accounts available for the given field. Admin Integration ================= To provide admin support for a model with a ``AccountField`` in your application’s admin, you need to use the mixin ``ConnectedAccountAdminMixin`` along with the ModelAdmin. Note that the ``ConnectedAccountAdminMixin`` must precede the ModelAdmin in the class definition:: from django.contrib import admin from connected_accounts.admin import ConnectedAccountAdminMixin from myapp.models import MyModel class MyModelAdmin(ConnectedAccountAdminMixin, admin.ModelAdmin): pass admin.site.register(MyModel, MyModelAdmin) Admin Preview ============= .. image:: http://mishbahr.github.io/django-connected/images/small/django_connected_05.jpeg :target: http://mishbahr.github.io/django-connected/images/django_connected_05.png :width: 768px :align: center Packages using ``django-connected`` ----------------------------------- * https://github.com/mishbahr/djangocms-disqus - Disqus intergration for your django-cms powered site with options for Single Sign-On (SSO), lazy loading, analytics and more. * https://github.com/mishbahr/djangocms-twitter2 — The easiest way to display tweets for your ``django-cms`` powered site, using the latest Twitter 1.1 API. It's a great option for embedding tweets on your site without third-party widgets. * https://github.com/mishbahr/djangocms-instagram — A simple but versatile Instagram plugin for your django-cms powered sites.


نحوه نصب


نصب پکیج whl django-connected-0.1.5:

    pip install django-connected-0.1.5.whl


نصب پکیج tar.gz django-connected-0.1.5:

    pip install django-connected-0.1.5.tar.gz