python - push notification using Django -


i new django , looking research , development project push availability , rates given resort list of subscribed clients based on resort ids have chosen subscribe to. know possible sql server , windows services how (if possible) done in django? can cms handle configuration this? saw this: tastypie

but not sure in here after.

anybody have experience push notifications via django? grateful pointers

i see alot of questions pushing android system , iphone want simple push given url.

have signals topic on documentation.

@receiver(post_save, sender=mymodel)  def my_handler(sender, **kwargs):      ... 

Comments