django-meetup-auth is an extension to django-social-auth which adds a backend for Meetup.com.
Project description
Django-Meetup-Auth
==============================
Django-Meetup-Auth is an extension to `Django-Social-Auth <https://github.com/omab/django-social-auth>`_
which adds a backend for Meetup.com.
Requirements
-------------------------------
- Django-Social-Auth >= 0.3.3
- Django >= 1.2.5
- Python-OAuth2 >= 1.5.167
- Python-Openid >= 2.2
API Keys
-------------------------------
In order to use this application you must sign up for OAuth consumer key on
Meetup.com. These should be put into your settings file using the settings::
MEETUP_CONSUMER_KEY = '' # Your consumer key
MEETUP_CONSUMER_SECRET = '' # Your consumer secret
.. versionadded:: 0.2
Django-Meetup-Auth uses the OAuth 2.0 endpoints which means you must include a
Redirect URI when registering your applicaion with Meetup.com. For more detail
please see the `Meetup API documentation <http://www.meetup.com/meetup_api/auth/#oauth2server-auth-success>`_.
Installation
-------------------------------
To install django-meetup-auth via pip::
pip install django-meetup-auth
Or you can from the latest version from Github manually::
git clone git://github.com/mlavin/django-meetup-auth.git
cd django-meetup-auth
python setup.py install
or via pip::
pip install -e git+https://github.com/mlavin/django-meetup-auth.git
Once you have the app installed you must include in your settings::
INSTALLED_APPS = (
...
'social_auth',
'meetup_auth',
...
)
AUTHENTICATION_BACKENDS = (
...
'meetup_auth.backend.MeetupBackend',
...
)
SOCIAL_AUTH_IMPORT_BACKENDS = (
...
'meetup_auth',
...
)
Please refer to the `Django-Social-Auth <http://django-social-auth.readthedocs.org/>`_
documentation for additional information.
Questions or Issues?
-------------------------------
If you have questions, issues or requests for improvements please let me know on
`Github <https://github.com/mlavin/django-meetup-auth/issues>`_.
==============================
Django-Meetup-Auth is an extension to `Django-Social-Auth <https://github.com/omab/django-social-auth>`_
which adds a backend for Meetup.com.
Requirements
-------------------------------
- Django-Social-Auth >= 0.3.3
- Django >= 1.2.5
- Python-OAuth2 >= 1.5.167
- Python-Openid >= 2.2
API Keys
-------------------------------
In order to use this application you must sign up for OAuth consumer key on
Meetup.com. These should be put into your settings file using the settings::
MEETUP_CONSUMER_KEY = '' # Your consumer key
MEETUP_CONSUMER_SECRET = '' # Your consumer secret
.. versionadded:: 0.2
Django-Meetup-Auth uses the OAuth 2.0 endpoints which means you must include a
Redirect URI when registering your applicaion with Meetup.com. For more detail
please see the `Meetup API documentation <http://www.meetup.com/meetup_api/auth/#oauth2server-auth-success>`_.
Installation
-------------------------------
To install django-meetup-auth via pip::
pip install django-meetup-auth
Or you can from the latest version from Github manually::
git clone git://github.com/mlavin/django-meetup-auth.git
cd django-meetup-auth
python setup.py install
or via pip::
pip install -e git+https://github.com/mlavin/django-meetup-auth.git
Once you have the app installed you must include in your settings::
INSTALLED_APPS = (
...
'social_auth',
'meetup_auth',
...
)
AUTHENTICATION_BACKENDS = (
...
'meetup_auth.backend.MeetupBackend',
...
)
SOCIAL_AUTH_IMPORT_BACKENDS = (
...
'meetup_auth',
...
)
Please refer to the `Django-Social-Auth <http://django-social-auth.readthedocs.org/>`_
documentation for additional information.
Questions or Issues?
-------------------------------
If you have questions, issues or requests for improvements please let me know on
`Github <https://github.com/mlavin/django-meetup-auth/issues>`_.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-meetup-auth-0.2.1.tar.gz
.
File metadata
- Download URL: django-meetup-auth-0.2.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 607bc5b3d8ee0e75640dedb959e765168f9c44c1b0d3046e9d4f26a363212335 |
|
MD5 | 707c7a07e406e76777580397d79a617d |
|
BLAKE2b-256 | e5675d3532458c5182f4fa624b5cfbe2a14220ae8ee199151c4f7d725d17521b |