Re: How To Activate Django Server.

2015-06-27 Thread Mike Dewhirst
On 27/06/2015 11:43 AM, Steve Burrus wrote: we;ll here is the error message that I get when I try to install django in the virtual env. : "C:\Users\SteveB\Desktop\myenv>.\Scripts\activate (myenv) C:\Users\SteveB\Desktop\myenv>pip install django Fatal error in launcher: Job information querying fa

How to protect a REST API view with token authentication using django-rest-framework-social-oauth2?

2015-06-27 Thread Daniel Grace
I have installed and setup the django-rest-framework-social-oauth2 package. Now I need to protect my REST API views with the appropriate token authentication. Do I follow the method at: http://www.django-rest-framework.org/api-guide/authentication/#tokenauthentication or is another method app

django unique email id model

2015-06-27 Thread Arindam sarkar
i am just starting with django. I need create a site with signup/sign in . i want user to sign up by email id . how do i proced ? -- Regards, Arindam Contact no. 08732822385 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

How to protect a REST API view with token authentication using django-rest-framework-social-oauth2?

2015-06-27 Thread Roman Onosovski
Thats about the most appropriate way to do it, just make sure its over https. -- 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...@googlegrou

Re: Django 1.4 (LTS) end of life?

2015-06-27 Thread Tim Graham
EOL for 1.4 remains October 1. For future reference, see the table on the download page: https://www.djangoproject.com/download/ On Friday, June 26, 2015 at 7:22:01 PM UTC-4, Ned Horvath wrote: > > Originally 1.4 was supposed to end support with the release of 1.8; > earlier this year that was e

Re: django unique email id model

2015-06-27 Thread Gergely Polonkai
Hello, this depends on a load of things. Which version of Django do you use? Do you have a custom user model, or you use the built in one? Best, Gergely On 27 Jun 2015 13:47, "Arindam sarkar" wrote: > i am just starting with django. I need create a site with signup/sign in . > i want user to si

Re: django unique email id model

2015-06-27 Thread Carlos Arturo Sanchez Rivera
class Meta: unique_together = ('email', 'other') Can use unique_together El sábado, 27 de junio de 2015, 6:47:36 (UTC-5), Arindam sarkar escribió: > > i am just starting with django. I need create a site with signup/sign in . > i want user to sign up by email id . how do i proced ? > > --

Push notifications in Django

2015-06-27 Thread harsh.rathore14
I am Rails developer and new to Django. I want to build an Webapp which will have push notification on comments, mentions etc. Is it possible in Django or I should move to node.js -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: django unique email id model

2015-06-27 Thread Arindam sarkar
django 1.8 . which user model should i use ? custom or built in one ? please help. On Sun, Jun 28, 2015 at 12:14 AM, Gergely Polonkai wrote: > Hello, > > this depends on a load of things. Which version of Django do you use? Do > you have a custom user model, or you use the built in one? > > Best,