Seeking django plugin for SAML integration for SPA application

2020-05-06 Thread suman patel
Hi All,

I have a SPA in React-Django 2.2.x and we need to implement SAML for
SSO. Looking for suggestion on django plugin for Authentication and
authorization. Looking for stable package where user auth, permission and
groups can be handled from external IDP and seamless integration with
Django 2.x

I have explored Django-saml2 and python3-saml package but not getting good
documentation around this.
 Appreciate help.

Thanks
Patel

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPjHK8CdpGKSH9r6cJzLGOozNP-D6gwqZwJN3M6-wCGKyYOEXQ%40mail.gmail.com.


Re: Django plugin

2015-06-15 Thread Mario Gudelj
You can use celery and periodic tasks to scan for new orders every 5
minutes and send email notification of the new order is there.
On 12 Jun 2015 6:59 pm, "'Tom Evans' via Django users" <
django-users@googlegroups.com> wrote:

> On Thu, Jun 11, 2015 at 8:02 PM, Andreas Kuhne
>  wrote:
> > Hi all,
> >
> > I was wondering if there is a plugin application for Django. What I want
> to
> > accomplish is react to different kinds of events on my models and then
> > create plugins on the fly for them.
> >
> > The system I am working on has for example an Order model. When a new
> Order
> > is created, I want to send a notification to the person who created the
> > order. I know that I can do this with signals, but I don't want it to
> > specifically be tied to a Django application.
> >
> > I was thinking something along the lines of using RabbitMQ for example to
> > post all events there and then be able to react on them later. Has anyone
> > done anything like this?
> >
> > I have seen Celery, but as I understand that, it takes some method to run
> > like a delayed job?
> >
> > Regards,
> >
> > Andréas
> >
>
> Celery is (usually) built on top of an AMQP broker. AMQP was developed
> to support High Frequency Trading (HFT) and is ideal for publishing
> events and taking actions based upon them. I'd suggest reading this
> blog post:
>
> http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/
>
> and then the docs for Kombu, which is an excellent messaging library for
> python.
>
> http://kombu.readthedocs.org/en/latest/
>
> AMQP is not the only message bus, but we've had great results with it
> (using rabbitmq).
>
> Cheers
>
> Tom
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFHbX1JEb08O0PMdzEBC0%3Dq8LRVZcHz11PPg067aSby7YhaLjQ%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHqTbjnJL1SzdPYjZmTL2-TVyJTW9Lv_9vo%3DfgjUyHT876M_3w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django plugin

2015-06-12 Thread 'Tom Evans' via Django users
On Thu, Jun 11, 2015 at 8:02 PM, Andreas Kuhne
 wrote:
> Hi all,
>
> I was wondering if there is a plugin application for Django. What I want to
> accomplish is react to different kinds of events on my models and then
> create plugins on the fly for them.
>
> The system I am working on has for example an Order model. When a new Order
> is created, I want to send a notification to the person who created the
> order. I know that I can do this with signals, but I don't want it to
> specifically be tied to a Django application.
>
> I was thinking something along the lines of using RabbitMQ for example to
> post all events there and then be able to react on them later. Has anyone
> done anything like this?
>
> I have seen Celery, but as I understand that, it takes some method to run
> like a delayed job?
>
> Regards,
>
> Andréas
>

Celery is (usually) built on top of an AMQP broker. AMQP was developed
to support High Frequency Trading (HFT) and is ideal for publishing
events and taking actions based upon them. I'd suggest reading this
blog post:

http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/

and then the docs for Kombu, which is an excellent messaging library for python.

http://kombu.readthedocs.org/en/latest/

AMQP is not the only message bus, but we've had great results with it
(using rabbitmq).

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFHbX1JEb08O0PMdzEBC0%3Dq8LRVZcHz11PPg067aSby7YhaLjQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Django plugin

2015-06-11 Thread Andreas Kuhne
Hi all,

I was wondering if there is a plugin application for Django. What I want to
accomplish is react to different kinds of events on my models and then
create plugins on the fly for them.

The system I am working on has for example an Order model. When a new Order
is created, I want to send a notification to the person who created the
order. I know that I can do this with signals, but I don't want it to
specifically be tied to a Django application.

I was thinking something along the lines of using RabbitMQ for example to
post all events there and then be able to react on them later. Has anyone
done anything like this?

I have seen Celery, but as I understand that, it takes some method to run
like a delayed job?

Regards,

Andréas

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALXYUbnfN%2BBFBKur%2BZY3T%3DpOghse5dtxwz2yhX8dji1uOcT8MQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


django plugin/extension for geany

2011-03-31 Thread Kenneth Gonsalves
hi,

a web search did not help, so does anyone know if there is a django
plugin/extension for geany?
-- 
regards
KG
http://lawgon.livejournal.com
Coimbatore LUG rox
http://ilugcbe.techstud.org/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.