Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unistra/django-sympa
https://github.com/unistra/django-sympa
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/unistra/django-sympa
- Owner: unistra
- License: gpl-2.0
- Created: 2015-07-03T13:50:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-22T10:14:29.000Z (over 9 years ago)
- Last Synced: 2024-10-21T15:51:22.135Z (27 days ago)
- Language: Python
- Size: 156 KB
- Stars: 0
- Watchers: 18
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
============
Django-sympa
============.. image:: https://landscape.io/github/unistra/django-sympa/master/landscape.svg?style=flat
:target: https://landscape.io/github/unistra/django-sympa/master
:alt: Code Health.. image:: https://secure.travis-ci.org/unistra/django-sympa.png?branch=master
:target: https://travis-ci.org/unistra/django-sympa.. image:: https://coveralls.io/repos/unistra/django-sympa/badge.png?branch=master
:target: https://coveralls.io/r/unistra/django-sympa?branch=master.. image:: https://img.shields.io/pypi/v/django-sympa.svg
:target: https://crate.io/packages/django-sympa/.. image:: https://img.shields.io/pypi/dm/django-sympa.svg
:target: https://crate.io/packages/django-sympa/Add a route to exposed immediately your app users to sympa in right format. This
will synchronize users to a configured mai list.Install
=======With pip ::
$> pip install django-sympa
In your django project, be sure that the ``auth`` application is installed : ::
# settings.py
INSTALLED_APPS = (
...,
'django.contrib.auth',
...
)Add the ``sympa`` application to your project. ``INSTALLED_APPS`` looks like : ::
# settings.py
INSTALLED_APPS = (
...,
'django.contrib.auth',
...,
'sympa'
)Add a route to your base urls configuration : ::
# urls.py
urlpatterns = (
...
url('^users.sympa$', 'sympa.views.users', name='sympa_users'),
...
)That's it !