Re: I new to Django

2023-05-21 Thread 'Kasper Laudrup' via Django users

On 21/05/2023 16.26, khaled alshadbi wrote:

Hello friends
please help me to start from scratch... I want to build sales program 
using Python and Django




https://docs.djangoproject.com/en/4.2/intro/

Kind regards,
Kasper Laudrup

--
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/18ff3218-30a3-1b88-3553-2f5cefec5310%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


I new to Django

2023-05-21 Thread khaled alshadbi
Hello friends
please help me to start from scratch... I want to build sales program using 
Python and Django

-- 
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/0d4c6fff-392a-4d1d-b0d3-ba80a0d54f18n%40googlegroups.com.


Re: New to Django

2022-11-06 Thread Kevin gallagher
Thanks for the help! 

On Thursday, November 3, 2022 at 7:28:08 PM UTC subtitle indo wrote:

> Please let me know if that sounds okay.
>
> On Wed, Nov 2, 2022 at 6:05 PM Kevin gallagher  
> wrote:
>
>> Hi guys,
>> Im currently learning django and am doing a project for college. Im 
>> building an appointment website users can book a training session. These 
>> are my models:
>>
>> class TimeSlot(models.Model):
>>
>> title = models.CharField(max_length=50)
>>
>> def __str__(self):
>> return f'There is a slot at {self.title}'
>>
>>
>> class Booking(models.Model):
>>
>> user = models.ForeignKey(settings.AUTH_USER_MODEL,
>>  on_delete=models.CASCADE)
>> time_slot = models.ForeignKey(TimeSlot, on_delete=models.CASCADE)
>> booking_date = models.DateField(("Date"), default=date.today)
>>
>> def __str__(self):
>> return f'{self.user} has booked a session at 
>> {self.timeslot.title} on {self.booking_date}'
>>
>> I have the title field set as available session times, 1-2pm, 3-4pm etc.
>> I want the user to select a date and then be able to see what time slots 
>> are still available to book but I'm kind of lost and confused. Any help 
>> would be much appreciated! 
>>  
>>
>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/1c6c2ab1-f852-4503-81c5-d072cf2dbb02n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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/df45710f-3081-4836-bd09-d8060069d974n%40googlegroups.com.


Re: New to Django

2022-11-02 Thread Sebastian Jung
Hello kevin,

There are several django booking apps like this
https://github.com/bernii/django-reservations

I think its easier to change existing code to your requirements then begin
from strech.

Good luck

Kevin gallagher  schrieb am Mi., 2. Nov. 2022,
18:04:

> Hi guys,
> Im currently learning django and am doing a project for college. Im
> building an appointment website users can book a training session. These
> are my models:
>
> class TimeSlot(models.Model):
>
> title = models.CharField(max_length=50)
>
> def __str__(self):
> return f'There is a slot at {self.title}'
>
>
> class Booking(models.Model):
>
> user = models.ForeignKey(settings.AUTH_USER_MODEL,
>  on_delete=models.CASCADE)
> time_slot = models.ForeignKey(TimeSlot, on_delete=models.CASCADE)
> booking_date = models.DateField(("Date"), default=date.today)
>
> def __str__(self):
> return f'{self.user} has booked a session at {self.timeslot.title}
> on {self.booking_date}'
>
> I have the title field set as available session times, 1-2pm, 3-4pm etc.
> I want the user to select a date and then be able to see what time slots
> are still available to book but I'm kind of lost and confused. Any help
> would be much appreciated!
>
>
> --
> 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/1c6c2ab1-f852-4503-81c5-d072cf2dbb02n%40googlegroups.com
> 
> .
>

-- 
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/CAKGT9mys0yJGpE_TOW87ruPnvvxWzwh-Jo%2B3MrDSt_j9dmK4-A%40mail.gmail.com.


New to Django

2022-11-02 Thread Kevin gallagher
Hi guys,
Im currently learning django and am doing a project for college. Im 
building an appointment website users can book a training session. These 
are my models:

class TimeSlot(models.Model):

title = models.CharField(max_length=50)

def __str__(self):
return f'There is a slot at {self.title}'


class Booking(models.Model):

user = models.ForeignKey(settings.AUTH_USER_MODEL,
 on_delete=models.CASCADE)
time_slot = models.ForeignKey(TimeSlot, on_delete=models.CASCADE)
booking_date = models.DateField(("Date"), default=date.today)

def __str__(self):
return f'{self.user} has booked a session at {self.timeslot.title} 
on {self.booking_date}'

I have the title field set as available session times, 1-2pm, 3-4pm etc.
I want the user to select a date and then be able to see what time slots 
are still available to book but I'm kind of lost and confused. Any help 
would be much appreciated! 
 

-- 
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/1c6c2ab1-f852-4503-81c5-d072cf2dbb02n%40googlegroups.com.


Re: New to Django

2021-10-16 Thread Lalit Suthar
I recommand
https://www.youtube.com/playlist?list=PLEsfXFp6DpzRMby_cSoWTFw8zaMdTEXgL

On Sun, 3 Oct 2021 at 17:32, bnmng  wrote:

> I think you'll get a few opinions on this.  My opinion is no.  I feel the
> docs are very good but difficult to understand as a beginner.  I like
> Mozilla's into with the Local Library tutorial to get started
> https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django
>
> On Friday, October 1, 2021 at 11:09:04 PM UTC-4 richluet...@gmail.com
> wrote:
>
>> Hi, I want to learn django very well but tutorials like youtube videos,
>> books and pay for online courses are not really satisfying me that much .
>> So if I decide to learn django directly from the documentation will I learn
>> good enough to Intermediate and Advance level ?  if yes please help me with
>> an order path to follow. Thanks
>
> --
> 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/a928d80a-eaf4-495e-8e0f-abc46ba3c9a0n%40googlegroups.com
> 
> .
>

-- 
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/CAGp2JVHuh_m__mZ1UDr4chw7fctJbf3offf4o9%2BLRcCPg9j8Uw%40mail.gmail.com.


Re: New to Django

2021-10-14 Thread Adrian Valenzuela

Nice! Thanks for this! I'm new too and this already looks like a great 
resource.
On Sunday, October 3, 2021 at 5:01:41 AM UTC-7 bnmng wrote:

> I think you'll get a few opinions on this.  My opinion is no.  I feel the 
> docs are very good but difficult to understand as a beginner.  I like 
> Mozilla's into with the Local Library tutorial to get started 
> https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django
>
> On Friday, October 1, 2021 at 11:09:04 PM UTC-4 richluet...@gmail.com 
> wrote:
>
>> Hi, I want to learn django very well but tutorials like youtube videos, 
>> books and pay for online courses are not really satisfying me that much . 
>> So if I decide to learn django directly from the documentation will I learn 
>> good enough to Intermediate and Advance level ?  if yes please help me with 
>> an order path to follow. Thanks
>
>

-- 
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/7d456d90-2a21-42f3-9d25-d694e6069283n%40googlegroups.com.


Re: New to Django

2021-10-05 Thread Adeyemi Deji
Hi, I started roughly too. Began paying attention as it started getting 
interesting. Django documentation was actually wat got me started but 
before that I went through some pdfs, had a lot of that on my pc. The poll 
app in django documentation really helped, don't think I would be where I 
am today if I didn't go through building the poll app as I walk through the 
documentation. Also there is this guy on youtube, don't know if you have 
heard of Dennis Ivy, he is really awesome, his story really got me and I 
have never forgotten it till 
date. https://www.youtube.com/channel/UCTZRcDjjkVajGL6wd76UnGg

On Saturday, October 2, 2021 at 5:09:04 AM UTC+2 richluet...@gmail.com 
wrote:

> Hi, I want to learn django very well but tutorials like youtube videos, 
> books and pay for online courses are not really satisfying me that much . 
> So if I decide to learn django directly from the documentation will I learn 
> good enough to Intermediate and Advance level ?  if yes please help me with 
> an order path to follow. Thanks

-- 
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/04006489-2726-4dea-b4cf-bd174ee96b7fn%40googlegroups.com.


Re: New to Django

2021-10-03 Thread bnmng
I think you'll get a few opinions on this.  My opinion is no.  I feel the 
docs are very good but difficult to understand as a beginner.  I like 
Mozilla's into with the Local Library tutorial to get 
started https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django

On Friday, October 1, 2021 at 11:09:04 PM UTC-4 richluet...@gmail.com wrote:

> Hi, I want to learn django very well but tutorials like youtube videos, 
> books and pay for online courses are not really satisfying me that much . 
> So if I decide to learn django directly from the documentation will I learn 
> good enough to Intermediate and Advance level ?  if yes please help me with 
> an order path to follow. Thanks

-- 
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/a928d80a-eaf4-495e-8e0f-abc46ba3c9a0n%40googlegroups.com.


New to Django

2021-10-01 Thread Richlue Toure
Hi, I want to learn django very well but tutorials like youtube videos, 
books and pay for online courses are not really satisfying me that much . 
So if I decide to learn django directly from the documentation will I learn 
good enough to Intermediate and Advance level ?  if yes please help me with 
an order path to follow. Thanks

-- 
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/3f8fd50c-c3e2-4aba-bfb7-8284bdb57c61n%40googlegroups.com.


Re: new in Django

2021-08-05 Thread Fulbéria Tangbé
I'm fine!

Le jeu. 29 juil. 2021 à 13:06, Ogara Dennis  a
écrit :

> Hello Friends
>
> --
> 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/1188f76d-5662-47b9-adb6-a828c8369fc8n%40googlegroups.com
> 
> .
>

-- 
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/CAA5QTRVi8HPAfTVb09%2Bcn_J5ivV%3DpDAnsQRKQ21h_%2BUqjaXwgA%40mail.gmail.com.


new in Django

2021-07-29 Thread Ogara Dennis
Hello Friends

-- 
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/1188f76d-5662-47b9-adb6-a828c8369fc8n%40googlegroups.com.


RE: Re: NEW TO DJANGO

2020-05-20 Thread Vishesh Mangla
  Sent from Mail for Windows 10 From: Madhav NandanSent: 20 May 2020 22:19To: Django usersSubject: Re: NEW TO DJANGO I need to know what I should do so that once I click a hyperlink, it will redirect me to a payment page and I need to make a working payment option like paypal integration or razorpay integration. I did installed sdk, I made account on razorpay. what next? thanks for response. From: Madhav NandanSent: 19 May 2020 20:34To: django...@googlegroups.comSubject: NEW TO DJANGO Dear Django fellas, I'm new to Django here. I started learning and it's been a while and I'm facing a lot of issues. Can somebody help me with ''how can I integrate a payment system like PayPal to a link?'' Like I have a link, if someone clicks on that link that will redirect the user to the payment page and there on the payment provider works. I just need to get started and somebody can guide me here hopefully. I don't' need code or so. Help me here. Best regards,-- Madhav Nandancell: 9170459494Skype: gaurav.kumar3992 -- 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...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com. -- 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/63a1a453-ee38-4eba-85f7-a4d6f46c367d%40googlegroups.com. 



-- 
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/5ec5605b.1c69fb81.9a1f5.8ba9%40mx.google.com.


RE: Re: NEW TO DJANGO

2020-05-20 Thread Vishesh Mangla
Haven’t you used the redirect() function in Django? Sent from Mail for Windows 10 From: Madhav NandanSent: 20 May 2020 22:19To: Django usersSubject: Re: NEW TO DJANGO I need to know what I should do so that once I click a hyperlink, it will redirect me to a payment page and I need to make a working payment option like paypal integration or razorpay integration. I did installed sdk, I made account on razorpay. what next? thanks for response. From: Madhav NandanSent: 19 May 2020 20:34To: django...@googlegroups.comSubject: NEW TO DJANGO Dear Django fellas, I'm new to Django here. I started learning and it's been a while and I'm facing a lot of issues. Can somebody help me with ''how can I integrate a payment system like PayPal to a link?'' Like I have a link, if someone clicks on that link that will redirect the user to the payment page and there on the payment provider works. I just need to get started and somebody can guide me here hopefully. I don't' need code or so. Help me here. Best regards,-- Madhav Nandancell: 9170459494Skype: gaurav.kumar3992 -- 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...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com. -- 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/63a1a453-ee38-4eba-85f7-a4d6f46c367d%40googlegroups.com. 



-- 
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/5ec55fec.1c69fb81.99dba.9ce0%40mx.google.com.


Re: NEW TO DJANGO

2020-05-20 Thread Madhav Nandan
I need to know what I should do so that once I click a hyperlink, it will 
redirect me to a payment page and I need to make a working payment option 
like paypal integration or razorpay integration.

I did installed sdk, I made account on razorpay. what next?

thanks for response.


 
>
> *From: *Madhav Nandan 
> *Sent: *19 May 2020 20:34
> *To: *django...@googlegroups.com 
> *Subject: *NEW TO DJANGO
>
>  
>
> Dear Django fellas,
>
>  
>
> I'm new to Django here. I started learning and it's been a while and I'm 
> facing a lot of issues. Can somebody help me with *''how can I integrate 
> a payment system like PayPal to a link?''*
>
>  Like I have a link, if someone clicks on that link that will redirect the 
> user to the payment page and there on the payment provider works.
>
>  
>
> I just need to get started and somebody can guide me here hopefully. I 
> don't' need code or so.
>
>  
>
> Help me here.
>
>  
>
> Best regards,
>
>  
>
>  
>
>  
>
>  
>
> -- 
>
> Madhav Nandan
>
> cell: 9170459494
>
> Skype: gaurav.kumar3992
>
>  
>
> -- 
> 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...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
>  
>

-- 
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/63a1a453-ee38-4eba-85f7-a4d6f46c367d%40googlegroups.com.


Re: NEW TO DJANGO

2020-05-19 Thread Akshat Zala
You can study https://developer.paypal.com/docs/api/quickstart/ 

On Wednesday, 20 May 2020 08:57:06 UTC+5:30, Akshat Zala wrote:
>
> I agree with Vishesh, You require api key which needs to be in settings.py 
> file
>
> On Tuesday, 19 May 2020 20:43:17 UTC+5:30, Vishesh Mangla wrote:
>>
>> Your question is not clear to me. What exactly do you want ?You do not 
>> require django to go to a site , rather you require a hyperlink.
>>
>>  
>>
>>  
>>
>> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for 
>> Windows 10
>>
>>  
>>
>> *From: *Madhav Nandan
>> *Sent: *19 May 2020 20:34
>> *To: *django...@googlegroups.com
>> *Subject: *NEW TO DJANGO
>>
>>  
>>
>> Dear Django fellas,
>>
>>  
>>
>> I'm new to Django here. I started learning and it's been a while and I'm 
>> facing a lot of issues. Can somebody help me with *''how can I integrate 
>> a payment system like PayPal to a link?''*
>>
>>  Like I have a link, if someone clicks on that link that will redirect 
>> the user to the payment page and there on the payment provider works.
>>
>>  
>>
>> I just need to get started and somebody can guide me here hopefully. I 
>> don't' need code or so.
>>
>>  
>>
>> Help me here.
>>
>>  
>>
>> Best regards,
>>
>>  
>>
>>  
>>
>>  
>>
>>  
>>
>> -- 
>>
>> Madhav Nandan
>>
>> cell: 9170459494
>>
>> Skype: gaurav.kumar3992
>>
>>  
>>
>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>>  
>> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
>>  
>>
>

-- 
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/116f376b-07de-4527-9a07-cbe22515a7bb%40googlegroups.com.


Re: NEW TO DJANGO

2020-05-19 Thread Hella Nick
你是阿三吗?

Akshat Zala  于2020年5月20日周三 上午11:27写道:

> I agree with Vishesh, You require api key which needs to be in settings.py
> file
>
> On Tuesday, 19 May 2020 20:43:17 UTC+5:30, Vishesh Mangla wrote:
>>
>> Your question is not clear to me. What exactly do you want ?You do not
>> require django to go to a site , rather you require a hyperlink.
>>
>>
>>
>>
>>
>> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for
>> Windows 10
>>
>>
>>
>> *From: *Madhav Nandan
>> *Sent: *19 May 2020 20:34
>> *To: *django...@googlegroups.com
>> *Subject: *NEW TO DJANGO
>>
>>
>>
>> Dear Django fellas,
>>
>>
>>
>> I'm new to Django here. I started learning and it's been a while and I'm
>> facing a lot of issues. Can somebody help me with *''how can I integrate
>> a payment system like PayPal to a link?''*
>>
>>  Like I have a link, if someone clicks on that link that will redirect
>> the user to the payment page and there on the payment provider works.
>>
>>
>>
>> I just need to get started and somebody can guide me here hopefully. I
>> don't' need code or so.
>>
>>
>>
>> Help me here.
>>
>>
>>
>> Best regards,
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> --
>>
>> Madhav Nandan
>>
>> cell: 9170459494
>>
>> Skype: gaurav.kumar3992
>>
>>
>>
>> --
>> 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...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
>>
>>
> --
> 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/433e54a0-11c6-490a-b21a-d2ab4de778c2%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/433e54a0-11c6-490a-b21a-d2ab4de778c2%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAHfGPEezv6e-TRVG6en43jxfdPe9CDGL2hKR_Wtz-XfJDYkPWw%40mail.gmail.com.


Re: NEW TO DJANGO

2020-05-19 Thread Akshat Zala
I agree with Vishesh, You require api key which needs to be in settings.py 
file

On Tuesday, 19 May 2020 20:43:17 UTC+5:30, Vishesh Mangla wrote:
>
> Your question is not clear to me. What exactly do you want ?You do not 
> require django to go to a site , rather you require a hyperlink.
>
>  
>
>  
>
> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for 
> Windows 10
>
>  
>
> *From: *Madhav Nandan 
> *Sent: *19 May 2020 20:34
> *To: *django...@googlegroups.com 
> *Subject: *NEW TO DJANGO
>
>  
>
> Dear Django fellas,
>
>  
>
> I'm new to Django here. I started learning and it's been a while and I'm 
> facing a lot of issues. Can somebody help me with *''how can I integrate 
> a payment system like PayPal to a link?''*
>
>  Like I have a link, if someone clicks on that link that will redirect the 
> user to the payment page and there on the payment provider works.
>
>  
>
> I just need to get started and somebody can guide me here hopefully. I 
> don't' need code or so.
>
>  
>
> Help me here.
>
>  
>
> Best regards,
>
>  
>
>  
>
>  
>
>  
>
> -- 
>
> Madhav Nandan
>
> cell: 9170459494
>
> Skype: gaurav.kumar3992
>
>  
>
> -- 
> 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...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
>  
>

-- 
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/433e54a0-11c6-490a-b21a-d2ab4de778c2%40googlegroups.com.


RE: NEW TO DJANGO

2020-05-19 Thread Vishesh Mangla
Your question is not clear to me. What exactly do you want ?You do not require django to go to a site , rather you require a hyperlink.  Sent from Mail for Windows 10 From: Madhav NandanSent: 19 May 2020 20:34To: django-users@googlegroups.comSubject: NEW TO DJANGO Dear Django fellas, I'm new to Django here. I started learning and it's been a while and I'm facing a lot of issues. Can somebody help me with ''how can I integrate a payment system like PayPal to a link?'' Like I have a link, if someone clicks on that link that will redirect the user to the payment page and there on the payment provider works. I just need to get started and somebody can guide me here hopefully. I don't' need code or so. Help me here. Best regards,-- Madhav Nandancell: 9170459494Skype: gaurav.kumar3992 -- 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/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com. 



-- 
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/5ec3f74c.1c69fb81.5e199.c04c%40mx.google.com.


NEW TO DJANGO

2020-05-19 Thread Madhav Nandan
Dear Django fellas,

I'm new to Django here. I started learning and it's been a while and I'm
facing a lot of issues. Can somebody help me with *''how can I integrate a
payment system like PayPal to a link?''*
 Like I have a link, if someone clicks on that link that will redirect the
user to the payment page and there on the payment provider works.

I just need to get started and somebody can guide me here hopefully. I
don't' need code or so.

Help me here.

Best regards,




-- 
Madhav Nandan
cell: 9170459494
Skype: gaurav.kumar3992

-- 
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/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com.


Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2020-04-26 Thread Adam H
I realize this is an old post. so this is for the next person who stumbles 
in here looking for an answer to the same question.
I had the same problem. for me, i was missing a colon in my code. it was 
that simple. check for red underlines in your code
i tried runserver again, python3 manage.py runserver. and the error 
generated led me right to the issue. hope this helps someone.


-- 
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/8d946444-912d-4de9-9c9c-c8c85c0a348e%40googlegroups.com.


Re: New to Django to select between 3.0 and 2.2

2020-03-13 Thread אורי
Hi Mrinal,

It depends on the packages you are using (dependencies). Which Django
version do they support? If all your dependencies support Django 3.0, go
for it. Otherwise, go for 2.2. I'm personally still using Django 2.1 for
Speedy Net, but I'm waiting for PR #12332 to be released to production,
which is expected next month. So in general, the selection of which Django
version you use depends on your dependencies.

אורי
u...@speedy.net


On Thu, Mar 12, 2020 at 11:54 AM Mrinal Kamboj  wrote:

> Hello,
>
> I have just started the Python development, I am very new to the Python
> and have to select between Django versions 3.0 and 2.2, where 2.2 is LTS
> and 3.0 is current main stream.
>
> Does the current 3.0 Packages can still have the compatibility issues and
> would take some time to be stable so it would be better to choose 2.2 or is
> the 3.0 ready for the production development. and that  should be the
> choice.
>
> Kindly help with the relevant information and links.
>
> Thanks,
>
> Mrinal
>
> --
> 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/0d89a17b-35b8-43a3-b592-35180320bff3%40googlegroups.com
> 
> .
>

-- 
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/CABD5YeHuZdTkrRmUAGPVQZaYZNL_m37Onw%2B%3D780-RowZSji%2BSQ%40mail.gmail.com.


Re: New to Django to select between 3.0 and 2.2

2020-03-13 Thread Andréas Kühne
Hi Mrinal,

Django is a very mature framework - new releases rarely have any issues
that hinder them from being used in production. For a new project you
should definitely go for 3.0 - you will start with the correct structure
for the new async features and you will also not have any issues with being
able to release. We have a production environment running on 3.0.4
currently (and upgrading the other project to 3.0.4).

Also - you will probably not be finished with your project before all the
minor issues (mainly security related) will be fixed in the 3.0 branch :)

Regards,

Andréas


Den tors 12 mars 2020 kl 10:55 skrev Mrinal Kamboj :

> Hello,
>
> I have just started the Python development, I am very new to the Python
> and have to select between Django versions 3.0 and 2.2, where 2.2 is LTS
> and 3.0 is current main stream.
>
> Does the current 3.0 Packages can still have the compatibility issues and
> would take some time to be stable so it would be better to choose 2.2 or is
> the 3.0 ready for the production development. and that  should be the
> choice.
>
> Kindly help with the relevant information and links.
>
> Thanks,
>
> Mrinal
>
> --
> 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/0d89a17b-35b8-43a3-b592-35180320bff3%40googlegroups.com
> 
> .
>

-- 
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/CAK4qSCfFSZCCAmRq1P0gWCZh8td%3DDKxmicKHvhkRrYaXsyP_3Q%40mail.gmail.com.


New to Django to select between 3.0 and 2.2

2020-03-12 Thread Mrinal Kamboj
Hello,

I have just started the Python development, I am very new to the Python and 
have to select between Django versions 3.0 and 2.2, where 2.2 is LTS and 
3.0 is current main stream. 

Does the current 3.0 Packages can still have the compatibility issues and 
would take some time to be stable so it would be better to choose 2.2 or is 
the 3.0 ready for the production development. and that  should be the 
choice.

Kindly help with the relevant information and links.

Thanks,

Mrinal

-- 
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/0d89a17b-35b8-43a3-b592-35180320bff3%40googlegroups.com.


Re: new to django

2020-03-03 Thread Naveen Arora
Hi, 

Have a look at my tutorials :)

https://www.geeksforgeeks.org/django-tutorial/

Cheers,
Naveen Arora

On Sunday, 1 March 2020 23:34:45 UTC+5:30, Gurjot Kawatra wrote:
>
> hello everyone ...if anybody could help me out
> my django server is started and i'm able to see congratulation messege...
> now plz tell me the next step to create a project and run and watching 
> output at the localhost:8000
>

-- 
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/68101164-382b-4f2e-96a8-0fc17682de62%40googlegroups.com.


Re: new to django

2020-03-02 Thread victor awakan
You can first try the django official tutorial. This will give you a rough 
idea how things works. https://docs.djangoproject.com/en/3.0/

On Sunday, March 1, 2020 at 8:04:45 PM UTC+2, Gurjot Kawatra wrote:
>
> hello everyone ...if anybody could help me out
> my django server is started and i'm able to see congratulation messege...
> now plz tell me the next step to create a project and run and watching 
> output at the localhost:8000
>

-- 
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/c2432f2a-87d9-4065-b30c-406bf55eb2b9%40googlegroups.com.


Re: new to django

2020-03-02 Thread Lokendra Chouhan
Django life cycle link -
https://www.reddit.com/r/webexpert/comments/dgp283/django_request_response_cycle/

On Mon, Mar 2, 2020 at 12:41 PM Aditya Khatwa 
wrote:

> Congratulations 1st step completed a 100 more to go.
>
> On Sun, 1 Mar 2020, 23:55 Omkar Parab,  wrote:
>
>> Here's the Perfect Django tutorial.
>> From development to production.
>> 
>> https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p
>>
>> On Sun, Mar 1, 2020, 11:33 PM Gurjot Kawatra 
>> wrote:
>>
>>> hello everyone ...if anybody could help me out
>>> my django server is started and i'm able to see congratulation messege...
>>> now plz tell me the next step to create a project and run and watching
>>> output at the localhost:8000
>>>
>>> --
>>> 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/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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/CAJY8mfz_etvYx68asZwps0Fqb67_arNW6ByC%3DzpFg62OEo8rgw%40mail.gmail.com
>> 
>> .
>>
> --
> 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/CAOnqjLwzM9iokN0VAmzxLv_yYhbpSN59BGrYaNc7NpQByu%2B%3DSA%40mail.gmail.com
> 
> .
>


-- 
Thanks & Regards,
*Lokendra Singh Chouhan*,
*Software Developer  | VulpineCode Technologies*,
http://www.vulpinecode.com

-- 
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/CAM55b4uQD7Y66f%3DkH33y-4HwFCZn6Zi75Y6sCO1LHy%3DFxbcR2w%40mail.gmail.com.


Re: new to django

2020-03-01 Thread Aditya Khatwa
Congratulations 1st step completed a 100 more to go.

On Sun, 1 Mar 2020, 23:55 Omkar Parab,  wrote:

> Here's the Perfect Django tutorial.
> From development to production.
> 
> https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p
>
> On Sun, Mar 1, 2020, 11:33 PM Gurjot Kawatra  wrote:
>
>> hello everyone ...if anybody could help me out
>> my django server is started and i'm able to see congratulation messege...
>> now plz tell me the next step to create a project and run and watching
>> output at the localhost:8000
>>
>> --
>> 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/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com
>> 
>> .
>>
> --
> 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/CAJY8mfz_etvYx68asZwps0Fqb67_arNW6ByC%3DzpFg62OEo8rgw%40mail.gmail.com
> 
> .
>

-- 
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/CAOnqjLwzM9iokN0VAmzxLv_yYhbpSN59BGrYaNc7NpQByu%2B%3DSA%40mail.gmail.com.


Re: new to django

2020-03-01 Thread Omkar Parab
Here's the Perfect Django tutorial.
>From development to production.

https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p

On Sun, Mar 1, 2020, 11:33 PM Gurjot Kawatra  wrote:

> hello everyone ...if anybody could help me out
> my django server is started and i'm able to see congratulation messege...
> now plz tell me the next step to create a project and run and watching
> output at the localhost:8000
>
> --
> 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/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com
> 
> .
>

-- 
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/CAJY8mfz_etvYx68asZwps0Fqb67_arNW6ByC%3DzpFg62OEo8rgw%40mail.gmail.com.


new to django

2020-03-01 Thread Gurjot Kawatra
hello everyone ...if anybody could help me out
my django server is started and i'm able to see congratulation messege...
now plz tell me the next step to create a project and run and watching 
output at the localhost:8000

-- 
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/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com.


New to Django need help with m2m database with intermediate table.

2020-02-24 Thread Silas Nicholls

Hello,

Sorry for my amateur question. 

I've been stuck on this issue for a while and I can't work out if there is 
way I can use my current models to work in this way.

Here is a link to my issue:

https://stackoverflow.com/questions/60223686/how-do-i-use-my-intermediate-table-to-show-the-m2m-relationship-in-my-templates

Thank you in advance.

-- 
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/1b173ea5-fbfc-429f-9b50-505e914f2766%40googlegroups.com.


New to Django, need help using my intermediate table to show the m2m relationship in my templates.

2020-02-24 Thread Silas Nicholls
Hello

Sorry I am very new to Django and have come across quite the stumbling 
block. The details to the issue are in this Stack Overflow post I made a 
while ago with no answers:

https://stackoverflow.com/questions/60223686/how-do-i-use-my-intermediate-table-to-show-the-m2m-relationship-in-my-templates

Thank you in advance.

-- 
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/609a095c-6a5a-4ccf-9a02-5ff517871a99%40googlegroups.com.


New to Django. Trying to wrap my head around markdown to html conversion using regex

2020-02-20 Thread Joey Jo Jo Jr
Hello all,

I'm working on a class assignment, so I'm not seeking a specific 
answer/code, but I'm just trying to figure out a general process.

The task is this...

I have some markdown files located in a directory, however when running the 
website they need to be displayed as html.  Because this is a learning 
assignment, no markdown conversion libraries are allowed.

So I'm tasked with using regular expressions to convert.  I understand 
regular expressions and have already formulated a few to change things like 
**text** to text and so on, but being so new to Django and 
still figuring out how it works, I'm just completely flummoxed on the 
execution/implementation.

So any general advice would be appreciated.

-- 
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/4d3fe147-d502-40c2-a866-d72bb30f8352%40googlegroups.com.


Re: New to Django and Python

2020-01-05 Thread Hedrick Godson's
Wish you well with ur new journey

On Sun, 5 Jan 2020, 16:50 'Dash LaLonde' via Django users <
django-users@googlegroups.com> wrote:

> Hello,
>
> Just wanted to say hello and let you all know that I will probably be
> posting many questions.
>
> --
> 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/a6f4efee-bae9-4acd-ada9-795b8dbe67a5%40googlegroups.com
> 
> .
>

-- 
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/CAJAxQDmKQbv74jnYEuUiLAu9xxG9LReJ-TzRby78J852%3DwSHEw%40mail.gmail.com.


New to Django and Python

2020-01-05 Thread 'Dash LaLonde' via Django users
Hello,

Just wanted to say hello and let you all know that I will probably be 
posting many questions.

-- 
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/a6f4efee-bae9-4acd-ada9-795b8dbe67a5%40googlegroups.com.


Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Muhammed Rafi A
password is not correct, check them or reset the password ones more

On Fri, Jan 3, 2020 at 2:58 PM shailendra singh 
wrote:

> The above exception was the direct cause of the following exception:
>
> Traceback (most recent call last):
>   File
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 932, in _bootstrap_inner
> self.run()
>   File
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 870, in run
> self._target(*self._args, **self._kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/autoreload.py",
> line 53, in wrapper
> fn(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/commands/runserver.py",
> line 120, in inner_run
> self.check_migrations()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/base.py",
> line 458, in check_migrations
> executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/executor.py",
> line 18, in __init__
> self.loader = MigrationLoader(self.connection)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
> line 49, in __init__
> self.build_graph()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
> line 212, in build_graph
> self.applied_migrations = recorder.applied_migrations()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
> line 76, in applied_migrations
> if self.has_table():
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
> line 56, in has_table
> return self.Migration._meta.db_table in
> self.connection.introspection.table_names(self.connection.cursor())
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 260, in cursor
> return self._cursor()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 236, in _cursor
> self.ensure_connection()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 220, in ensure_connection
> self.connect()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/utils.py",
> line 90, in __exit__
> raise dj_exc_value.with_traceback(traceback) from exc_value
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 220, in ensure_connection
> self.connect()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 197, in connect
> self.connection = self.get_new_connection(conn_params)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/postgresql/base.py",
> line 185, in get_new_connection
> connection = Database.connect(**conn_params)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/psycopg2/__init__.py",
> line 126, in connect
> conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
> django.db.utils.OperationalError: FATAL:  password authentication failed
> for user "postgres"
>
> --
> 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/fdcdb68e-ce8d-4326-a519-7ae07a51ee2f%40googlegroups.com
> 
> .
>

-- 
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/CADwyzwrGjjao35efTZ6euL%2BYx%2BvV6VQkyUbPU2dd0o4UQyo6mA%40mail.gmail.com.


Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Rajesh Maruti
 The authentication error for the database username with password
 Please check the DB username and password

On Fri, 3 Jan 2020 at 14:57, shailendra singh 
wrote:

> The above exception was the direct cause of the following exception:
>
> Traceback (most recent call last):
>   File
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 932, in _bootstrap_inner
> self.run()
>   File
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 870, in run
> self._target(*self._args, **self._kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/autoreload.py",
> line 53, in wrapper
> fn(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/commands/runserver.py",
> line 120, in inner_run
> self.check_migrations()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/base.py",
> line 458, in check_migrations
> executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/executor.py",
> line 18, in __init__
> self.loader = MigrationLoader(self.connection)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
> line 49, in __init__
> self.build_graph()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
> line 212, in build_graph
> self.applied_migrations = recorder.applied_migrations()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
> line 76, in applied_migrations
> if self.has_table():
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
> line 56, in has_table
> return self.Migration._meta.db_table in
> self.connection.introspection.table_names(self.connection.cursor())
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 260, in cursor
> return self._cursor()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 236, in _cursor
> self.ensure_connection()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 220, in ensure_connection
> self.connect()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/utils.py",
> line 90, in __exit__
> raise dj_exc_value.with_traceback(traceback) from exc_value
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 220, in ensure_connection
> self.connect()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 197, in connect
> self.connection = self.get_new_connection(conn_params)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/postgresql/base.py",
> line 185, in get_new_connection
> connection = Database.connect(**conn_params)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/psycopg2/__init__.py",
> line 126, in connect
> conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
> django.db.utils.OperationalError: FATAL:  password authentication failed
> for user "postgres"
>
> --
> 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/fdcdb68e-ce8d-4326-a519-7ae07a51ee2f%40googlegroups.com
> 
> .
>

-- 
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/CADfZoLULiz%3DAfuEJCwp_9OhCifmoqxXjC5CWD1kS76KJntKsEw%40mail.gmail.com.


Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread sagar ninave
Hello ShailendraI have tried to attached postgresql to django but it could
not happened please can you tell me what is procedure to do that

-- 
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/CAA6pdZ8rwFhu2_t5nM3m2%2B8HDHiD9WMo2g4KyCVn6r26RGGsRA%40mail.gmail.com.


Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread shailendra singh
Thanks Everyone . Now its done.

On Friday, January 3, 2020 at 2:57:27 PM UTC+5:30, shailendra singh wrote:
>
> The above exception was the direct cause of the following exception:
>
> Traceback (most recent call last):
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>  
> line 932, in _bootstrap_inner
> self.run()
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>  
> line 870, in run
> self._target(*self._args, **self._kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/autoreload.py",
>  
> line 53, in wrapper
> fn(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/commands/runserver.py",
>  
> line 120, in inner_run
> self.check_migrations()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/base.py",
>  
> line 458, in check_migrations
> executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/executor.py",
>  
> line 18, in __init__
> self.loader = MigrationLoader(self.connection)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
>  
> line 49, in __init__
> self.build_graph()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
>  
> line 212, in build_graph
> self.applied_migrations = recorder.applied_migrations()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
>  
> line 76, in applied_migrations
> if self.has_table():
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
>  
> line 56, in has_table
> return self.Migration._meta.db_table in 
> self.connection.introspection.table_names(self.connection.cursor())
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  
> line 26, in inner
> return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  
> line 260, in cursor
> return self._cursor()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  
> line 236, in _cursor
> self.ensure_connection()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  
> line 26, in inner
> return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  
> line 220, in ensure_connection
> self.connect()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/utils.py", 
> line 90, in __exit__
> raise dj_exc_value.with_traceback(traceback) from exc_value
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  
> line 220, in ensure_connection
> self.connect()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  
> line 26, in inner
> return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  
> line 197, in connect
> self.connection = self.get_new_connection(conn_params)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  
> line 26, in inner
> return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/postgresql/base.py",
>  
> line 185, in get_new_connection
> connection = Database.connect(**conn_params)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/psycopg2/__init__.py",
>  
> line 126, in connect
> conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
> django.db.utils.OperationalError: FATAL:  password authentication failed 
> for user "postgres"
>
>

-- 
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/5635d022-46fb-4cf9-93ad-28943893eca2%40googlegroups.com.


Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Motaz Hejaze
To test just create another user and database and grant all privileges for
the new user to the new database and finally add those new credentials to
django settings.py

On Fri, 3 Jan 2020, 12:46 pm ramadhan ngallen,  wrote:

> Hello
> The reason was due to wrong password for the postgre. Kindly test the
> password via Pgadmin.
>
> *Best Regards*
>
> *Ramadhan Ngallen*
> Software Consultant
>
> Phone: +255 715 200 997 | ngall...@gmail.com
> On 3 Jan 2020, 12:27 +0300, shailendra singh ,
> wrote:
>
> The above exception was the direct cause of the following exception:
>
> Traceback (most recent call last):
>   File
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 932, in _bootstrap_inner
> self.run()
>   File
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 870, in run
> self._target(*self._args, **self._kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/autoreload.py",
> line 53, in wrapper
> fn(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/commands/runserver.py",
> line 120, in inner_run
> self.check_migrations()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/base.py",
> line 458, in check_migrations
> executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/executor.py",
> line 18, in __init__
> self.loader = MigrationLoader(self.connection)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
> line 49, in __init__
> self.build_graph()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
> line 212, in build_graph
> self.applied_migrations = recorder.applied_migrations()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
> line 76, in applied_migrations
> if self.has_table():
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
> line 56, in has_table
> return self.Migration._meta.db_table in
> self.connection.introspection.table_names(self.connection.cursor())
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 260, in cursor
> return self._cursor()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 236, in _cursor
> self.ensure_connection()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 220, in ensure_connection
> self.connect()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/utils.py",
> line 90, in __exit__
> raise dj_exc_value.with_traceback(traceback) from exc_value
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 220, in ensure_connection
> self.connect()
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
> line 197, in connect
> self.connection = self.get_new_connection(conn_params)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
> line 26, in inner
> return func(*args, **kwargs)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/postgresql/base.py",
> line 185, in get_new_connection
> connection = Database.connect(**conn_params)
>   File
> "/Applications/Projects/venv/lib/python3.8/site-packages/psycopg2/__init__.py",
> line 126, in connect
> conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
> django.db.utils.OperationalError: FATAL:  password authentication failed
> for user "postgres"
>
> --
> You received this m

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread ramadhan ngallen
Hello
The reason was due to wrong password for the postgre. Kindly test the password 
via Pgadmin.

Best Regards

Ramadhan Ngallen
Software Consultant

Phone: +255 715 200 997 | ngall...@gmail.com
On 3 Jan 2020, 12:27 +0300, shailendra singh , wrote:
> The above exception was the direct cause of the following exception:
>
> Traceback (most recent call last):
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>  line 932, in _bootstrap_inner
>     self.run()
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>  line 870, in run
>     self._target(*self._args, **self._kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/autoreload.py",
>  line 53, in wrapper
>     fn(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/commands/runserver.py",
>  line 120, in inner_run
>     self.check_migrations()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/base.py",
>  line 458, in check_migrations
>     executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/executor.py",
>  line 18, in __init__
>     self.loader = MigrationLoader(self.connection)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
>  line 49, in __init__
>     self.build_graph()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
>  line 212, in build_graph
>     self.applied_migrations = recorder.applied_migrations()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
>  line 76, in applied_migrations
>     if self.has_table():
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
>  line 56, in has_table
>     return self.Migration._meta.db_table in 
> self.connection.introspection.table_names(self.connection.cursor())
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  line 26, in inner
>     return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  line 260, in cursor
>     return self._cursor()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  line 236, in _cursor
>     self.ensure_connection()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  line 26, in inner
>     return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  line 220, in ensure_connection
>     self.connect()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/utils.py", 
> line 90, in __exit__
>     raise dj_exc_value.with_traceback(traceback) from exc_value
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  line 220, in ensure_connection
>     self.connect()
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  line 26, in inner
>     return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
>  line 197, in connect
>     self.connection = self.get_new_connection(conn_params)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
>  line 26, in inner
>     return func(*args, **kwargs)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/postgresql/base.py",
>  line 185, in get_new_connection
>     connection = Database.connect(**conn_params)
>   File 
> "/Applications/Projects/venv/lib/python3.8/site-packages/psycopg2/__init__.py",
>  line 126, in connect
>     conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
> django.db.utils.OperationalError: FATAL:  password authentication failed for 
> user "postgres"
>
> --
> 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/fdcdb68e-ce8d-4326-a519-7ae07a51ee2f%40googlegroups.com.

-- 
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/f5a6ffb7-548a-4da1-96d3-adfe13f9c42b%40Spark.


Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread shailendra singh
The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py", 
line 932, in _bootstrap_inner
self.run()
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py", 
line 870, in run
self._target(*self._args, **self._kwargs)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/autoreload.py",
 
line 53, in wrapper
fn(*args, **kwargs)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/commands/runserver.py",
 
line 120, in inner_run
self.check_migrations()
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/core/management/base.py",
 
line 458, in check_migrations
executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/executor.py",
 
line 18, in __init__
self.loader = MigrationLoader(self.connection)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
 
line 49, in __init__
self.build_graph()
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/loader.py",
 
line 212, in build_graph
self.applied_migrations = recorder.applied_migrations()
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
 
line 76, in applied_migrations
if self.has_table():
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/migrations/recorder.py",
 
line 56, in has_table
return self.Migration._meta.db_table in 
self.connection.introspection.table_names(self.connection.cursor())
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
 
line 26, in inner
return func(*args, **kwargs)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
 
line 260, in cursor
return self._cursor()
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
 
line 236, in _cursor
self.ensure_connection()
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
 
line 26, in inner
return func(*args, **kwargs)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
 
line 220, in ensure_connection
self.connect()
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/utils.py", 
line 90, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
 
line 220, in ensure_connection
self.connect()
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
 
line 26, in inner
return func(*args, **kwargs)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/base/base.py",
 
line 197, in connect
self.connection = self.get_new_connection(conn_params)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/utils/asyncio.py",
 
line 26, in inner
return func(*args, **kwargs)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/django/db/backends/postgresql/base.py",
 
line 185, in get_new_connection
connection = Database.connect(**conn_params)
  File 
"/Applications/Projects/venv/lib/python3.8/site-packages/psycopg2/__init__.py", 
line 126, in connect
conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
django.db.utils.OperationalError: FATAL:  password authentication failed 
for user "postgres"

-- 
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/fdcdb68e-ce8d-4326-a519-7ae07a51ee2f%40googlegroups.com.


Re: I am new in Django. Getting below errors when i am trying to install psycopg2. Please help me.....

2019-10-10 Thread Peter van der Does
Literally the first search result on google:

https://www.google.com/search?q=psycopg2+ld%3A+library+not+found+for+lssl


Google and Stack Overflow is my workflow.

-- 
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/1feaa14a-0e9a-68f2-409d-09fec904055b%40oneilinteractive.com.


I am new in Django. Getting below errors when i am trying to install psycopg2. Please help me.....

2019-10-10 Thread shailendra singh
ook-Air:ioadigital shailendra$ pip install psycopg2
Collecting psycopg2
  Using cached 
https://files.pythonhosted.org/packages/5c/1c/6997288da181277a0c29bc39a5f9143ff20b8c99f2a7d059cfb55163e165/psycopg2-2.8.3.tar.gz
Installing collected packages: psycopg2
  Running setup.py install for psycopg2 ... error
Complete output from command /Users/shailendra/venv/bin/python -u -c 
"import setuptools, 
tokenize;__file__='/private/var/folders/6w/7hpnz4fd22g9vjpb8_9dt6z0gn/T/pip-install-ntzsc_2h/psycopg2/setup.py';f=getattr(tokenize,
 
'open', open)(__file__);code=f.read().replace('\r\n', 
'\n');f.close();exec(compile(code, __file__, 'exec'))" install --record 
/private/var/folders/6w/7hpnz4fd22g9vjpb8_9dt6z0gn/T/pip-record-c2_6wmah/install-record.txt
 
--single-version-externally-managed --compile --install-headers 
/Users/shailendra/venv/include/site/python3.7/psycopg2:
running install
running build
running build_py
creating build
creating build/lib.macosx-10.6-intel-3.7
creating build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/_json.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/extras.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/compat.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/errorcodes.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/tz.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/_range.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/_ipaddress.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/_lru_cache.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/__init__.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/extensions.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/errors.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/sql.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
copying lib/pool.py -> build/lib.macosx-10.6-intel-3.7/psycopg2
running build_ext
building 'psycopg2._psycopg' extension
creating build/temp.macosx-10.6-intel-3.7
creating build/temp.macosx-10.6-intel-3.7/psycopg
gcc -fno-strict-aliasing -Wsign-compare -fno-common -dynamic -DNDEBUG 
-g -fwrapv -O3 -Wall -arch i386 -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt 
dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 
-I/Users/shailendra/venv/include 
-I/Library/Frameworks/Python.framework/Versions/3.7/include/python3.7m -I. 
-I/usr/local/Cellar/postgresql/11.5_1/include 
-I/usr/local/Cellar/postgresql/11.5_1/include/server -c 
psycopg/psycopgmodule.c -o 
build/temp.macosx-10.6-intel-3.7/psycopg/psycopgmodule.o
gcc -fno-strict-aliasing -Wsign-compare -fno-common -dynamic -DNDEBUG 
-g -fwrapv -O3 -Wall -arch i386 -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt 
dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 
-I/Users/shailendra/venv/include 
-I/Library/Frameworks/Python.framework/Versions/3.7/include/python3.7m -I. 
-I/usr/local/Cellar/postgresql/11.5_1/include 
-I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/green.c -o 
build/temp.macosx-10.6-intel-3.7/psycopg/green.o
gcc -fno-strict-aliasing -Wsign-compare -fno-common -dynamic -DNDEBUG 
-g -fwrapv -O3 -Wall -arch i386 -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt 
dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 
-I/Users/shailendra/venv/include 
-I/Library/Frameworks/Python.framework/Versions/3.7/include/python3.7m -I. 
-I/usr/local/Cellar/postgresql/11.5_1/include 
-I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/pqpath.c -o 
build/temp.macosx-10.6-intel-3.7/psycopg/pqpath.o
psycopg/pqpath.c:135:17: warning: implicit conversion from enumeration 
type 'ConnStatusType' to different enumeration type 'ExecStatusType' 
[-Wenum-conversion]
PQstatus(conn->pgconn) : PQresultStatus(*pgres)));
^~
psycopg/pqpath.c:1817:17: warning: implicit conversion from enumeration 
type 'ConnStatusType' to different enumeration type 'ExecStatusType' 
[-Wenum-conversion]
PQstatus(curs->conn->pgconn) : 
PQresultStatus(curs->pgres)));
^~~~
2 warnings generated.
psycopg/pqpath.c:135:17: warning: implicit conversion from enumeration 
type 'ConnStatusType' to different enumeration type 'ExecStatusType' 
[-Wenum-conversion]
PQstatus(conn->pgconn) : PQresultStatus(*pgres)));
^~
psycopg/pqpath.c:1817:17: warning: implicit conversion from enumeration 
type 'ConnStatusType' to different enumeration type 'ExecStatusType' 
[-Wenum-conversion]
PQstatus(curs->conn->pgconn) : 
PQresultStatus(curs->pgres)));
^~~~
2 warnings generated.
gcc -fno-strict-aliasing -Wsign-compare -fno-common -dynamic -DNDEBUG 
-g -fwrapv -O3 -Wall -arch i386 -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 

Re: New project Django.....any one willing to assist in doing a project...

2019-07-10 Thread Nitin Kalmaste
Can you will teach me I am also starting django

On Wed 10 Jul, 2019, 4:56 PM Joel Rotich,  wrote:

> Share your emailNeed someone really quickI have some basics but I
> need to work with an expert to speed up. I will pay for Hrs used.
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d0a6e833-0933-4014-bbfd-8651f593c513%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKroR%2B1o1bD5%2BsJbRUDfXsPpvdPEmLMSU2v9sQ%2BFySk6MM0ONA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


New project Django.....any one willing to assist in doing a project...

2019-07-10 Thread Joel Rotich
Share your emailNeed someone really quickI have some basics but I 
need to work with an expert to speed up. I will pay for Hrs used.

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d0a6e833-0933-4014-bbfd-8651f593c513%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I'm very new to Django. Its possible to do the below project with Django?

2019-05-05 Thread pranayreddy788
I worked on Django from 2 years , you can use lot of Django features to
build these kind of project.
Use Django admin for faster development

Post_save and decorator are very useful for ur project. Go through these
concepts once in Django documentation

Faster and easier way Django

On May 5, 2019 at 22:12, > wrote:

Recently I've signed in my office project which is for HR department. I
want to create an admin panel and Agent view. We have a separate tool named
'PeopleSoft' In that tool somebody(agents) moved to bench it will
automatically publish on my tool and an email triggered to Supervisor(Every
agent have Supervisor{1 supervisor=20 agents}),PHR team,Program head and
Recruitment team. The admin tool will allow the recruiter to tag each bench
employee to Internal vacancy Job, when there is an interview email will be
automatically triggered to an employee. Also Interview feedback for the
employee(agents) in the same tool. If the Employee(agent) passed he will
moved to that program with Job code(Every job has a Code like 5432) If the
Employee failed he will moved back to the bench. Bench Validity period is
14 days. If Validity exceed he will lose his/her job and an email also
triggered to Supervisor, PHR, program head, Recruitment.

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/cdd27aa9-e9ad-4861-bb1d-1e71b92ebd22%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANjRyE3i2h1fW%2BAB4x5XAfAahOysFQsQBV9qMHtLHNoMPpppcQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


I'm very new to Django. Its possible to do the below project with Django?

2019-05-05 Thread rocky2sdat
Recently I've signed in my office project which is for HR department. I 
want to create an admin panel and Agent view. We have a separate tool named 
'PeopleSoft' In that tool somebody(agents) moved to bench it will 
automatically publish on my tool and an email triggered to Supervisor(Every 
agent have Supervisor{1 supervisor=20 agents}),PHR team,Program head and 
Recruitment team. The admin tool will allow the recruiter to tag each bench 
employee to Internal vacancy Job, when there is an interview email will be 
automatically triggered to an employee. Also Interview feedback for the 
employee(agents) in the same tool. If the Employee(agent) passed he will 
moved to that program with Job code(Every job has a Code like 5432) If the 
Employee failed he will moved back to the bench. Bench Validity period is 
14 days. If Validity exceed he will lose his/her job and an email also 
triggered to Supervisor, PHR, program head, Recruitment.

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cdd27aa9-e9ad-4861-bb1d-1e71b92ebd22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-23 Thread Rob Gmail
Yes I did

Rob 
203-671-6514
Sent from my mobile device, please excuse the typos. 

> On Apr 23, 2019, at 11:05 AM, Victor H. Velasquez Rizo 
>  wrote:
> 
> But. Did you get it to work?
> 
>> On Mon, Apr 22, 2019, 11:38 AM Robert Wahoo  wrote:
>> Actually, I found why I got that last message, was a typo on my part.
>> 
>>  
>> 
>> On to the next problem…Thank you.
>> 
>>  
>> 
>> From: "django-users@googlegroups.com"  on 
>> behalf of "Victor H. Velasquez Rizo" 
>> Reply-To: "django-users@googlegroups.com" 
>> Date: Sunday, April 21, 2019 at 9:02 PM
>> To: "django-users@googlegroups.com" 
>> Subject: Re: problems with url and views - new to django
>> 
>>  
>> 
>> Hello Rob.
>> 
>> With the url "hello/", your trying to call the "hello" function on your 
>> view.py.
>> 
>> First, you need to import "hello" to be able to use it. from  from  
>> lct_app.views import hello
>> 
>> Second, call the function. path('hello/', hello),
>> 
>>  
>> 
>> urls.py
>> 
>> from django.contrib import admin
>> 
>> from django.urls import path
>> 
>> from  lct_app.views import hello
>> 
>>  
>> 
>> urlpatterns = [
>> 
>> path('admin/', admin.site.urls),
>> 
>> path('hello/', hello),
>> 
>> ]
>> 
>>  
>> 
>> views.py
>> 
>>  
>> 
>> from django.shortcuts import render
>> 
>>  
>> 
>> def hello(request):
>> 
>>return render(request, "lct_app/templates/hello.html", {})
>> 
>>  
>> 
>> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>> 
>> setting up a new project.
>> 
>> all good, loaded up the project on localhost.
>> 
>>  
>> 
>> however, when creating a view then setting the url, it doesn't work.
>> 
>>  
>> 
>>  
>> 
>> urls.py
>> 
>>  
>> 
>> from django.contrib import admin
>> 
>> from django.urls import path
>> 
>>  
>> 
>> urlpatterns = [
>> 
>> path('admin/', admin.site.urls),
>> 
>> path('hello/', lct_app.site.urls),
>> 
>>
>> 
>>  
>> 
>> views.py
>> 
>>  
>> 
>> from django.shortcuts import render
>> 
>>  
>> 
>> def hello(request):
>> 
>>return render(request, "lct_app/templates/hello.html", {})
>> 
>>  
>> 
>> i comment out the path in urls.py, django comes back. what am i missing?
>> 
>>  
>> 
>>  
>> 
>>  
>> 
>> -- 
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>> 
>> 
>> 
>>  
>> 
>> --
>> 
>> 
>> 
>> 
>> Atte...,.
>> Vìctor Hugo Velàsquez Rizo
>> Cali - Colombia
>> 
>> -- 
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%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 https://groups.google.com/group/django-users.
>

Re: problems with url and views - new to django

2019-04-23 Thread Victor H. Velasquez Rizo
But. Did you get it to work?

On Mon, Apr 22, 2019, 11:38 AM Robert Wahoo  wrote:

> Actually, I found why I got that last message, was a typo on my part.
>
>
>
> On to the next problem…Thank you.
>
>
>
> *From: *"django-users@googlegroups.com" 
> on behalf of "Victor H. Velasquez Rizo" 
> *Reply-To: *"django-users@googlegroups.com"  >
> *Date: *Sunday, April 21, 2019 at 9:02 PM
> *To: *"django-users@googlegroups.com" 
> *Subject: *Re: problems with url and views - new to django
>
>
>
> *Hello Rob.*
>
> With the url "hello/", your trying to call the "hello" function on your
> view.py.
>
> *First*, you need to import "hello" to be able to use it. from  *from
> lct_app.views import hello*
>
> *Second,* call the function. path('hello/', hello),
>
>
>
> *urls.py*
>
> from django.contrib import admin
>
> from django.urls import path
>
> from  lct_app.views import hello
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', hello),
>
> ]
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>
> setting up a new project.
>
> all good, loaded up the project on localhost.
>
>
>
> however, when creating a view then setting the url, it doesn't work.
>
>
>
>
>
> *urls.py*
>
>
>
> from django.contrib import admin
>
> from django.urls import path
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', lct_app.site.urls),
>
>
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> i comment out the path in urls.py, django comes back. what am i missing?
>
>
>
>
>
>
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
>
>
>
>
> Atte...,.
> Vìctor Hugo Velàsquez Rizo
> Cali - Colombia
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com
> <https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzh9yhW5%3DECndL8sst4Z4FB8_YEc4EpMqWuD%3D8xLpdfS7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-23 Thread Victor H. Velasquez Rizo
Whats the structure of your project.?

On Tue, Apr 23, 2019, 7:13 AM Deepali Singh 
wrote:

> I have new to django ad i have created my project my pieshopI don't
> know how it is showing 3 folders in the app
>
> On Mon, 22 Apr 2019 at 22:08, Robert Wahoo  wrote:
>
>> Actually, I found why I got that last message, was a typo on my part.
>>
>>
>>
>> On to the next problem…Thank you.
>>
>>
>>
>> *From: *"django-users@googlegroups.com" 
>> on behalf of "Victor H. Velasquez Rizo" 
>> *Reply-To: *"django-users@googlegroups.com" <
>> django-users@googlegroups.com>
>> *Date: *Sunday, April 21, 2019 at 9:02 PM
>> *To: *"django-users@googlegroups.com" 
>> *Subject: *Re: problems with url and views - new to django
>>
>>
>>
>> *Hello Rob.*
>>
>> With the url "hello/", your trying to call the "hello" function on your
>> view.py.
>>
>> *First*, you need to import "hello" to be able to use it. from  *from
>> lct_app.views import hello*
>>
>> *Second,* call the function. path('hello/', hello),
>>
>>
>>
>> *urls.py*
>>
>> from django.contrib import admin
>>
>> from django.urls import path
>>
>> from  lct_app.views import hello
>>
>>
>>
>> urlpatterns = [
>>
>> path('admin/', admin.site.urls),
>>
>> path('hello/', hello),
>>
>> ]
>>
>>
>>
>> *views.py*
>>
>>
>>
>> from django.shortcuts import render
>>
>>
>>
>> def hello(request):
>>
>>return render(request, "lct_app/templates/hello.html", {})
>>
>>
>>
>> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>>
>> setting up a new project.
>>
>> all good, loaded up the project on localhost.
>>
>>
>>
>> however, when creating a view then setting the url, it doesn't work.
>>
>>
>>
>>
>>
>> *urls.py*
>>
>>
>>
>> from django.contrib import admin
>>
>> from django.urls import path
>>
>>
>>
>> urlpatterns = [
>>
>> path('admin/', admin.site.urls),
>>
>> path('hello/', lct_app.site.urls),
>>
>>
>>
>>
>>
>> *views.py*
>>
>>
>>
>> from django.shortcuts import render
>>
>>
>>
>> def hello(request):
>>
>>return render(request, "lct_app/templates/hello.html", {})
>>
>>
>>
>> i comment out the path in urls.py, django comes back. what am i missing?
>>
>>
>>
>>
>>
>>
>>
>> --
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>>
>>
>> --
>>
>>
>>
>>
>> Atte...,.
>> Vìctor Hugo Velàsquez Rizo
>> Cali - Colombia
>>
>> --
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>> 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 unsubsc

Re: problems with url and views - new to django

2019-04-23 Thread Deepali Singh
I have new to django ad i have created my project my pieshopI don't
know how it is showing 3 folders in the app

On Mon, 22 Apr 2019 at 22:08, Robert Wahoo  wrote:

> Actually, I found why I got that last message, was a typo on my part.
>
>
>
> On to the next problem…Thank you.
>
>
>
> *From: *"django-users@googlegroups.com" 
> on behalf of "Victor H. Velasquez Rizo" 
> *Reply-To: *"django-users@googlegroups.com"  >
> *Date: *Sunday, April 21, 2019 at 9:02 PM
> *To: *"django-users@googlegroups.com" 
> *Subject: *Re: problems with url and views - new to django
>
>
>
> *Hello Rob.*
>
> With the url "hello/", your trying to call the "hello" function on your
> view.py.
>
> *First*, you need to import "hello" to be able to use it. from  *from
> lct_app.views import hello*
>
> *Second,* call the function. path('hello/', hello),
>
>
>
> *urls.py*
>
> from django.contrib import admin
>
> from django.urls import path
>
> from  lct_app.views import hello
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', hello),
>
> ]
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>
> setting up a new project.
>
> all good, loaded up the project on localhost.
>
>
>
> however, when creating a view then setting the url, it doesn't work.
>
>
>
>
>
> *urls.py*
>
>
>
> from django.contrib import admin
>
> from django.urls import path
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', lct_app.site.urls),
>
>
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> i comment out the path in urls.py, django comes back. what am i missing?
>
>
>
>
>
>
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
>
>
>
>
> Atte...,.
> Vìctor Hugo Velàsquez Rizo
> Cali - Colombia
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com
> <https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANbmnTJ7NbZ5KSE-upeT8Hba4H4oTFFi_bL_7aYfPwNRQx8FGg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-22 Thread Robert Wahoo
Actually, I found why I got that last message, was a typo on my part.

On to the next problem…Thank you.

From: "django-users@googlegroups.com"  on behalf 
of "Victor H. Velasquez Rizo" 
Reply-To: "django-users@googlegroups.com" 
Date: Sunday, April 21, 2019 at 9:02 PM
To: "django-users@googlegroups.com" 
Subject: Re: problems with url and views - new to django

Hello Rob.
With the url "hello/", your trying to call the "hello" function on your view.py.
First, you need to import "hello" to be able to use it. from  from  
lct_app.views import hello
Second, call the function. path('hello/', hello),

urls.py
from django.contrib import admin
from django.urls import path
from  lct_app.views import hello

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', hello),
]

views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

On Sun, Apr 21, 2019 at 5:07 PM Rob W 
mailto:randmwhee...@gmail.com>> wrote:
setting up a new project.
all good, loaded up the project on localhost.

however, when creating a view then setting the url, it doesn't work.


urls.py

from django.contrib import admin
from django.urls import path

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', lct_app.site.urls),


views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

i comment out the path in urls.py, django comes back. what am i missing?



--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com<https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email_source=footer>.
For more options, visit https://groups.google.com/d/optout.


--



Atte...,.
Vìctor Hugo Velàsquez Rizo
Cali - Colombia
--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email_source=footer>.
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-22 Thread Robert Wahoo
Awesome,Thanks Victor, I’ll give this a shot.

Thanks.


From: "django-users@googlegroups.com"  on behalf 
of "Victor H. Velasquez Rizo" 
Reply-To: "django-users@googlegroups.com" 
Date: Sunday, April 21, 2019 at 9:02 PM
To: "django-users@googlegroups.com" 
Subject: Re: problems with url and views - new to django

Hello Rob.
With the url "hello/", your trying to call the "hello" function on your view.py.
First, you need to import "hello" to be able to use it. from  from  
lct_app.views import hello
Second, call the function. path('hello/', hello),

urls.py
from django.contrib import admin
from django.urls import path
from  lct_app.views import hello

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', hello),
]

views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

On Sun, Apr 21, 2019 at 5:07 PM Rob W 
mailto:randmwhee...@gmail.com>> wrote:
setting up a new project.
all good, loaded up the project on localhost.

however, when creating a view then setting the url, it doesn't work.


urls.py

from django.contrib import admin
from django.urls import path

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', lct_app.site.urls),


views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

i comment out the path in urls.py, django comes back. what am i missing?



--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com<https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email_source=footer>.
For more options, visit https://groups.google.com/d/optout.


--



Atte...,.
Vìctor Hugo Velàsquez Rizo
Cali - Colombia
--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email_source=footer>.
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/BL0PR01MB43546102A2EB13B93EB26E08F4220%40BL0PR01MB4354.prod.exchangelabs.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-21 Thread Victor H. Velasquez Rizo
*Hello Rob.*
With the url "hello/", your trying to call the "hello" function on your
view.py.
*First*, you need to import "hello" to be able to use it. from  *from
lct_app.views import hello*
*Second,* call the function. path('hello/', hello),

*urls.py*
from django.contrib import admin
from django.urls import path
from  lct_app.views import hello

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', hello),
]

*views.py*

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:

> setting up a new project.
> all good, loaded up the project on localhost.
>
> however, when creating a view then setting the url, it doesn't work.
>
>
> *urls.py*
>
> from django.contrib import admin
> from django.urls import path
>
> urlpatterns = [
> path('admin/', admin.site.urls),
> path('hello/', lct_app.site.urls),
>
>
> *views.py*
>
> from django.shortcuts import render
>
> def hello(request):
>return render(request, "lct_app/templates/hello.html", {})
>
> i comment out the path in urls.py, django comes back. what am i missing?
>
>
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 



Atte...,.
Vìctor Hugo Velàsquez Rizo
Cali - Colombia

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


problems with url and views - new to django

2019-04-21 Thread Rob W
setting up a new project.
all good, loaded up the project on localhost.

however, when creating a view then setting the url, it doesn't work.


*urls.py*

from django.contrib import admin
from django.urls import path

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', lct_app.site.urls),
   

*views.py*

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

i comment out the path in urls.py, django comes back. what am i missing?



-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: New to Django

2018-12-16 Thread Pradeep Sukhwani
Normally this type of issue comes when you are not using the environment 
where Django is installed or maybe you forgot to install Django. To confirm 
Django is install successfully run this in your terminal: 
python -c "import django; print(django.get_version())"

On Saturday, December 15, 2018 at 11:24:32 PM UTC+5:30, elddi...@gmail.com 
wrote:
>
> Hello - I'm trying to get Django up and running and I'm having some likely 
> trivial trouble. I'm following the "Writing your first Django app" 
> tutorial, but I'm getting stuck trying to create the project using 
> 'django-admin 
> startproject mysite'. The output says command not found. I've tried 
> troubleshooting but haven't had any luck so far. Any assistance is much 
> appreciated. 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6588ab93-29b4-4791-8a4a-1597b9ceac64%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: New to Django

2018-12-16 Thread Steven N
I think you have not installed django,  `pip install django` you can
confirm if django is installed in your current environment by doing `pip
list` if it is, you will see it in the list. This
 might come in handy

On Sun, Dec 16, 2018, 1:47 PM Okware Aldo  I can remotely help, provide access me with remote access or push code
> github
>
> On Sat, 15 Dec 2018, 20:54 
>> Hello - I'm trying to get Django up and running and I'm having some
>> likely trivial trouble. I'm following the "Writing your first Django app"
>> tutorial, but I'm getting stuck trying to create the project using 
>> 'django-admin
>> startproject mysite'. The output says command not found. I've tried
>> troubleshooting but haven't had any luck so far. Any assistance is much
>> appreciated.
>>
>> --
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMEZma9fAWn%3DzToF-DF%2B4KyRZjEH_KYAc2_rThE8jcVt2gPQNw%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACem%2B%2BXdzWOOnJq5QyZjGuFmhNxLPJYPo_K1%2Bod%2BmJ%3DcTUBkig%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: New to Django

2018-12-16 Thread tom riddle
Thanks for the responses. I was able to figure this out - I believe my
issue was that I did not activate the virtual environment and cd into the
folder containing the Django-admin exec file. Once I did that the command
worked.

On Sun, Dec 16, 2018 at 5:47 AM Okware Aldo  wrote:

> I can remotely help, provide access me with remote access or push code
> github
>
> On Sat, 15 Dec 2018, 20:54 
>> Hello - I'm trying to get Django up and running and I'm having some
>> likely trivial trouble. I'm following the "Writing your first Django app"
>> tutorial, but I'm getting stuck trying to create the project using 
>> 'django-admin
>> startproject mysite'. The output says command not found. I've tried
>> troubleshooting but haven't had any luck so far. Any assistance is much
>> appreciated.
>>
>> --
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMEZma9fAWn%3DzToF-DF%2B4KyRZjEH_KYAc2_rThE8jcVt2gPQNw%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKWYn%3DE8BB%3DZ-nRa398MVhKHL6efd-jyPtZfZAbaUiUjj6kvXw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: New to Django

2018-12-16 Thread Okware Aldo
I can remotely help, provide access me with remote access or push code
github

On Sat, 15 Dec 2018, 20:54  Hello - I'm trying to get Django up and running and I'm having some likely
> trivial trouble. I'm following the "Writing your first Django app"
> tutorial, but I'm getting stuck trying to create the project using 
> 'django-admin
> startproject mysite'. The output says command not found. I've tried
> troubleshooting but haven't had any luck so far. Any assistance is much
> appreciated.
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMEZma9fAWn%3DzToF-DF%2B4KyRZjEH_KYAc2_rThE8jcVt2gPQNw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: New to Django

2018-12-15 Thread Gene LaRose
Have you installed a new environment and django?

On Sat, Dec 15, 2018, 12:53 PM  Hello - I'm trying to get Django up and running and I'm having some likely
> trivial trouble. I'm following the "Writing your first Django app"
> tutorial, but I'm getting stuck trying to create the project using 
> 'django-admin
> startproject mysite'. The output says command not found. I've tried
> troubleshooting but haven't had any luck so far. Any assistance is much
> appreciated.
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJRs1QhF-iu%3D1gLW5AXp5%3DXEPgWShk%3DpZ3APEjROgYB6VsdBfA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


New to Django

2018-12-15 Thread elddirmmot
Hello - I'm trying to get Django up and running and I'm having some likely 
trivial trouble. I'm following the "Writing your first Django app" 
tutorial, but I'm getting stuck trying to create the project using 
'django-admin 
startproject mysite'. The output says command not found. I've tried 
troubleshooting but haven't had any luck so far. Any assistance is much 
appreciated. 

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I'm new in Django. please help me out

2018-11-13 Thread Joel
You're bound to be trolled if you post a question which clearly looks like
an assignment, with zero effort on your part. Where's your code? What did
you try?

On Tue, 13 Nov, 2018, 3:38 PM Dheeraj Kumar  if you guys do not help ,plz ignore it insist of trying to be over
> smart.this is home work or any thing else you are not authorized to comment
> like this.
>
> just stop it.
>
> On Tue, 13 Nov 2018 at 15:30, amit pant  wrote:
>
>>  sometimes
>>
>> On Tue, Nov 13, 2018 at 3:23 PM PASCUAL Eric 
>> wrote:
>>
>>> > hey, you need to pay for that.
>>>
>>>
>>> Seen quite frequently : some of the visitors of community groups such as
>>> this one confuse them with "do_my_job_for_free.com" or "
>>> do_my_homework.com" 
>>>
>>>
>>> Eric
>>> --
>>> *From:* django-users@googlegroups.com 
>>> on behalf of amit pant 
>>> *Sent:* Tuesday, November 13, 2018 10:27:13 AM
>>> *To:* django-users@googlegroups.com
>>> *Subject:* Re: I'm new in Django. please help me out
>>>
>>> hey, you need to pay for that.
>>>
>>> On Tue, Nov 13, 2018 at 2:55 PM  wrote:
>>>
>>> Hi All,
>>>
>>> can you please solve this.
>>>
>>> 1) Create a simple Category model using DRF with following fields :
>>> Id,name,parent,is_featured,image,is_active,description
>>> 2) Create CRUD APIs for the same.
>>> 3) Validate input at every event/API.
>>> 4) Implement ordering and filtering.
>>> 5) GET API should take params to return :
>>> Ex. /abc.com?params=id|name|is_featured
>>> <http://abc.com?params=id%7Cname%7Cis_featured> : this should return
>>> Array of JSON
>>> object with specified keys, along with an authenticated key mentioning
>>> user
>>> authentication status.
>>>
>>> Thanks
>>>
>>> --
>>> 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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com
>>> <https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> 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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com?utm_medium=email_source=footer>
>>> .
>>> 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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/VI1P193MB043255EC430059412851527A8CC20%40VI1P193MB0432.EURP193.PROD.OUTLOOK.COM
>>> <https://groups.google.com/d/msgid/django-users/VI1P193MB043255EC430059412851527A8CC20%40VI1P193MB0432.EURP193.PROD.OUTLOOK.COM?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" gro

Re: I'm new in Django. please help me out

2018-11-13 Thread Dheeraj Kumar
if you guys do not help ,plz ignore it insist of trying to be over
smart.this is home work or any thing else you are not authorized to comment
like this.

just stop it.

On Tue, 13 Nov 2018 at 15:30, amit pant  wrote:

>  sometimes
>
> On Tue, Nov 13, 2018 at 3:23 PM PASCUAL Eric  wrote:
>
>> > hey, you need to pay for that.
>>
>>
>> Seen quite frequently : some of the visitors of community groups such as
>> this one confuse them with "do_my_job_for_free.com" or "
>> do_my_homework.com" 
>>
>>
>> Eric
>> --
>> *From:* django-users@googlegroups.com  on
>> behalf of amit pant 
>> *Sent:* Tuesday, November 13, 2018 10:27:13 AM
>> *To:* django-users@googlegroups.com
>> *Subject:* Re: I'm new in Django. please help me out
>>
>> hey, you need to pay for that.
>>
>> On Tue, Nov 13, 2018 at 2:55 PM  wrote:
>>
>> Hi All,
>>
>> can you please solve this.
>>
>> 1) Create a simple Category model using DRF with following fields :
>> Id,name,parent,is_featured,image,is_active,description
>> 2) Create CRUD APIs for the same.
>> 3) Validate input at every event/API.
>> 4) Implement ordering and filtering.
>> 5) GET API should take params to return :
>> Ex. /abc.com?params=id|name|is_featured
>> <http://abc.com?params=id%7Cname%7Cis_featured> : this should return
>> Array of JSON
>> object with specified keys, along with an authenticated key mentioning
>> user
>> authentication status.
>>
>> Thanks
>>
>> --
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/VI1P193MB043255EC430059412851527A8CC20%40VI1P193MB0432.EURP193.PROD.OUTLOOK.COM
>> <https://groups.google.com/d/msgid/django-users/VI1P193MB043255EC430059412851527A8CC20%40VI1P193MB0432.EURP193.PROD.OUTLOOK.COM?utm_medium=email_source=footer>
>> .
>> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAF2Ah_Et%3DhoYJnBVhzXCaHRO%2B_iyRS4x1-6vrPaOYPUGTxjS2Q%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAF2Ah_Et%3DhoYJnBVhzXCaHRO%2B_iyRS4x1-6vrPaOYPUGTxjS2Q%40mail.gmail

Re: I'm new in Django. please help me out

2018-11-13 Thread amit pant
 sometimes

On Tue, Nov 13, 2018 at 3:23 PM PASCUAL Eric  wrote:

> > hey, you need to pay for that.
>
>
> Seen quite frequently : some of the visitors of community groups such as
> this one confuse them with "do_my_job_for_free.com" or "do_my_homework.com"
> 
>
>
> Eric
> --
> *From:* django-users@googlegroups.com  on
> behalf of amit pant 
> *Sent:* Tuesday, November 13, 2018 10:27:13 AM
> *To:* django-users@googlegroups.com
> *Subject:* Re: I'm new in Django. please help me out
>
> hey, you need to pay for that.
>
> On Tue, Nov 13, 2018 at 2:55 PM  wrote:
>
> Hi All,
>
> can you please solve this.
>
> 1) Create a simple Category model using DRF with following fields :
> Id,name,parent,is_featured,image,is_active,description
> 2) Create CRUD APIs for the same.
> 3) Validate input at every event/API.
> 4) Implement ordering and filtering.
> 5) GET API should take params to return :
> Ex. /abc.com?params=id|name|is_featured
> <http://abc.com?params=id%7Cname%7Cis_featured> : this should return
> Array of JSON
> object with specified keys, along with an authenticated key mentioning user
> authentication status.
>
> Thanks
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/VI1P193MB043255EC430059412851527A8CC20%40VI1P193MB0432.EURP193.PROD.OUTLOOK.COM
> <https://groups.google.com/d/msgid/django-users/VI1P193MB043255EC430059412851527A8CC20%40VI1P193MB0432.EURP193.PROD.OUTLOOK.COM?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAF2Ah_Et%3DhoYJnBVhzXCaHRO%2B_iyRS4x1-6vrPaOYPUGTxjS2Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: I'm new in Django. please help me out

2018-11-13 Thread PASCUAL Eric
> hey, you need to pay for that.


Seen quite frequently : some of the visitors of community groups such as this 
one confuse them with "do_my_job_for_free.com" or "do_my_homework.com" 


Eric


From: django-users@googlegroups.com  on behalf 
of amit pant 
Sent: Tuesday, November 13, 2018 10:27:13 AM
To: django-users@googlegroups.com
Subject: Re: I'm new in Django. please help me out

hey, you need to pay for that.

On Tue, Nov 13, 2018 at 2:55 PM mailto:talk...@gmail.com>> 
wrote:
Hi All,

can you please solve this.

1) Create a simple Category model using DRF with following fields :
Id,name,parent,is_featured,image,is_active,description
2) Create CRUD APIs for the same.
3) Validate input at every event/API.
4) Implement ordering and filtering.
5) GET API should take params to return :
Ex. 
/abc.com?params=id|name|is_featured<http://abc.com?params=id%7Cname%7Cis_featured>
 : this should return Array of JSON
object with specified keys, along with an authenticated key mentioning user
authentication status.

Thanks

--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com<https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com?utm_medium=email_source=footer>.
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com?utm_medium=email_source=footer>.
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/VI1P193MB043255EC430059412851527A8CC20%40VI1P193MB0432.EURP193.PROD.OUTLOOK.COM.
For more options, visit https://groups.google.com/d/optout.


Re: I'm new in Django. please help me out

2018-11-13 Thread amit pant
hey, you need to pay for that.

On Tue, Nov 13, 2018 at 2:55 PM  wrote:

> Hi All,
>
> can you please solve this.
>
> 1) Create a simple Category model using DRF with following fields :
> Id,name,parent,is_featured,image,is_active,description
> 2) Create CRUD APIs for the same.
> 3) Validate input at every event/API.
> 4) Implement ordering and filtering.
> 5) GET API should take params to return :
> Ex. /abc.com?params=id|name|is_featured
>  : this should return
> Array of JSON
> object with specified keys, along with an authenticated key mentioning user
> authentication status.
>
> Thanks
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAF2Ah_FcL0UEGVFhJBE_nCdCHXFTQyWbzmqPbPV5v13k04r_6A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


I'm new in Django. please help me out

2018-11-13 Thread talkdkg
Hi All,

can you please solve this.

1) Create a simple Category model using DRF with following fields :
Id,name,parent,is_featured,image,is_active,description
2) Create CRUD APIs for the same.
3) Validate input at every event/API.
4) Implement ordering and filtering.
5) GET API should take params to return :
Ex. /abc.com?params=id|name|is_featured : this should return Array of JSON
object with specified keys, along with an authenticated key mentioning user
authentication status.

Thanks

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/dfdb2b20-66a3-4e56-b548-45c0f59a48ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-11-02 Thread William Vincent
Well I'm biased but add Django for Beginners 
<https://djangoforbeginners.com/> to the mix too. Also Django Girls 
<https://tutorial.djangogirls.org/en/>is a great first step.

On Monday, October 22, 2018 at 8:02:01 AM UTC-4, Lokendar Singh wrote:
>
> Hi Community,
>
> I'm new to django and python, however I've experience in development. 
>
> Can someone suggest me the best book/content/tutor to enhance my skills as 
> a lead developer? 
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/300fb8f7-39e2-4cec-b7d9-47953b244bc0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-30 Thread Adrian Chipukuma
I have  sorted it out using  a different approach  'AbstractUser'. Thanks

On Tue, Oct 30, 2018, 12:19 PM Adrian Chipukuma 
wrote:

> Thanks  for the help.  Though if I  remove  the declarations of the
> first_name, last_name and email. Then  I will  not be able to see these  in
> the Register form.. The fields password1 and password2 are just working
> well and can be saved...  The issue  is on the  first_name, last_name and
> email fields...  I can't save them using  the django form..
>
> On Tue, Oct 30, 2018, 7:49 AM Manjunath  wrote:
>
>> Remove declaration of first_name, last_name & email in Form calss.
>> class SignUpForm(UserCreationForm):
>> class meta():
>> model = User
>> fields = ('username', 'first_name', 'last_name', 'email',
>> 'password1', 'password2', )
>>
>>  And while Saving the form, follow below steps.
>> if form.is_valid():
>>new_user = form.save(commit=False)
>>new_user.set_password(form.cleaned_data['password1'])
>>   new_user.save()
>>   # Your next steps
>>
>>
>> I think you might need to declare password1 & password2 fields in your
>> Form. Do Check.
>>
>>
>>
>> On Monday, October 29, 2018 at 10:04:39 PM UTC+5:30, Adrian Chipukuma
>> wrote:
>>>
>>> Hello,
>>>
>>> I am new to Django and enjoying the learning process, unfortunately I am
>>> stuck, and I need expert guidance.
>>> I am learning through developing a User Authentication System. The
>>> system is supposed to have a user registration functionality, login, user
>>> profile editing and logout. I have managed to create the login, logout
>>> functionalities and the registration functionality partly. The problem is
>>> on the registration, I am only able to save the 'username and password '
>>> using django forms, I have written the code for saving the first_name and
>>> the last _name as well as email but it seems not to be working, only the
>>> 'username and password' are saved.. I think I am missing something though
>>> no error comes up. Please anyone to guide me. Thank you.
>>> the code is as shown below:
>>>
>>>
>>> views.py
>>> from django.shortcuts import render, redirect
>>> from django.contrib.auth import authenticate, login, logout
>>> from django.contrib.auth.models import User
>>> from django.contrib import auth, messages
>>> from django.contrib.auth.forms import UserCreationForm
>>> from django import forms
>>> from .forms import SignUpForm
>>>
>>> def home(request):
>>> return render(request, 'authenticate/home.html', {})
>>>
>>> def login_user(request):
>>> if request.method == 'POST':
>>> username = request.POST['username']
>>> password = request.POST['password']
>>> user = authenticate(request, username=username, password=password)
>>> if user is not None:
>>> login(request, user)
>>> messages.success(request,('You have been logged in'))
>>> return redirect('home')
>>> else:
>>> messages.success(request,('Error Logging in!'))
>>> return redirect('login')
>>> else:
>>> return render(request, 'authenticate/login.html', {})
>>>
>>> def logout_user(request):
>>> """if request.method =='POST':"""
>>> logout(request)
>>> messages.success(request,('You have been logged out'))
>>> return redirect('home')
>>>
>>> def register_user(request):
>>> if request.method =='POST':
>>> form = SignUpForm(request.POST)
>>> if form.is_valid():
>>> form.save()
>>> username = form.cleaned_data['username']
>>> password = form.cleaned_data['password1']
>>> user = authenticate(username=username, password=password)
>>> login(request, user)
>>> messages.success(request,(' Successfully Registered!'))
>>> return redirect('home')
>>> else:
>>> form = SignUpForm()
>>>
>>> context = {'form': form }
>>> return render(request, 'authenticate/register.html', context)
>>>
>>> urls.py
>>>
>>> from django.urls import path
>>> from . import views
>>> urlpatterns = [
>>> path('', views.home, name="home"),
>>> path('login/', views.login_user, name="login"),
>>> path('logout/', views.logout_user, name='logout'),
>>> path('register/', views.register_user, name='register'),
>>> ]
>>>
>>> forms.py
>>>

Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-30 Thread Adrian Chipukuma
Thanks  for the help.  Though if I  remove  the declarations of the
first_name, last_name and email. Then  I will  not be able to see these  in
the Register form.. The fields password1 and password2 are just working
well and can be saved...  The issue  is on the  first_name, last_name and
email fields...  I can't save them using  the django form..

On Tue, Oct 30, 2018, 7:49 AM Manjunath  wrote:

> Remove declaration of first_name, last_name & email in Form calss.
> class SignUpForm(UserCreationForm):
> class meta():
> model = User
> fields = ('username', 'first_name', 'last_name', 'email',
> 'password1', 'password2', )
>
>  And while Saving the form, follow below steps.
> if form.is_valid():
>new_user = form.save(commit=False)
>new_user.set_password(form.cleaned_data['password1'])
>   new_user.save()
>   # Your next steps
>
>
> I think you might need to declare password1 & password2 fields in your
> Form. Do Check.
>
>
>
> On Monday, October 29, 2018 at 10:04:39 PM UTC+5:30, Adrian Chipukuma
> wrote:
>>
>> Hello,
>>
>> I am new to Django and enjoying the learning process, unfortunately I am
>> stuck, and I need expert guidance.
>> I am learning through developing a User Authentication System. The system
>> is supposed to have a user registration functionality, login, user profile
>> editing and logout. I have managed to create the login, logout
>> functionalities and the registration functionality partly. The problem is
>> on the registration, I am only able to save the 'username and password '
>> using django forms, I have written the code for saving the first_name and
>> the last _name as well as email but it seems not to be working, only the
>> 'username and password' are saved.. I think I am missing something though
>> no error comes up. Please anyone to guide me. Thank you.
>> the code is as shown below:
>>
>>
>> views.py
>> from django.shortcuts import render, redirect
>> from django.contrib.auth import authenticate, login, logout
>> from django.contrib.auth.models import User
>> from django.contrib import auth, messages
>> from django.contrib.auth.forms import UserCreationForm
>> from django import forms
>> from .forms import SignUpForm
>>
>> def home(request):
>> return render(request, 'authenticate/home.html', {})
>>
>> def login_user(request):
>> if request.method == 'POST':
>> username = request.POST['username']
>> password = request.POST['password']
>> user = authenticate(request, username=username, password=password)
>> if user is not None:
>> login(request, user)
>> messages.success(request,('You have been logged in'))
>> return redirect('home')
>> else:
>> messages.success(request,('Error Logging in!'))
>> return redirect('login')
>> else:
>> return render(request, 'authenticate/login.html', {})
>>
>> def logout_user(request):
>> """if request.method =='POST':"""
>> logout(request)
>> messages.success(request,('You have been logged out'))
>> return redirect('home')
>>
>> def register_user(request):
>> if request.method =='POST':
>> form = SignUpForm(request.POST)
>> if form.is_valid():
>> form.save()
>> username = form.cleaned_data['username']
>> password = form.cleaned_data['password1']
>> user = authenticate(username=username, password=password)
>> login(request, user)
>> messages.success(request,(' Successfully Registered!'))
>> return redirect('home')
>> else:
>> form = SignUpForm()
>>
>> context = {'form': form }
>> return render(request, 'authenticate/register.html', context)
>>
>> urls.py
>>
>> from django.urls import path
>> from . import views
>> urlpatterns = [
>> path('', views.home, name="home"),
>> path('login/', views.login_user, name="login"),
>> path('logout/', views.logout_user, name='logout'),
>> path('register/', views.register_user, name='register'),
>> ]
>>
>> forms.py
>> from django.contrib.auth.forms import UserCreationForm, UserChangeForm
>> from django.contrib.auth.models import User
>> from django import forms
>>
>> class SignUpForm(UserCreationForm):
>> email = forms.EmailField()
>> first_name = forms.CharField(max_length=100,)
>> last_name = forms.CharField(max_length=100,)
>> class meta():
>> model = User
>> fields = ('username', 'first_name', 'last_name', 'email', 'password1',
>> 'password2', )
>>
>> register.html
>> {% extends 'authenticate/base.htm

Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-29 Thread Manjunath
Remove declaration of first_name, last_name & email in Form calss.
class SignUpForm(UserCreationForm):
class meta():
model = User 
fields = ('username', 'first_name', 'last_name', 'email', 
'password1', 'password2', )

 And while Saving the form, follow below steps.
if form.is_valid():
   new_user = form.save(commit=False)
   new_user.set_password(form.cleaned_data['password1'])
  new_user.save()
  # Your next steps


I think you might need to declare password1 & password2 fields in your 
Form. Do Check.



On Monday, October 29, 2018 at 10:04:39 PM UTC+5:30, Adrian Chipukuma wrote:
>
> Hello, 
>
> I am new to Django and enjoying the learning process, unfortunately I am 
> stuck, and I need expert guidance. 
> I am learning through developing a User Authentication System. The system 
> is supposed to have a user registration functionality, login, user profile 
> editing and logout. I have managed to create the login, logout 
> functionalities and the registration functionality partly. The problem is 
> on the registration, I am only able to save the 'username and password ' 
> using django forms, I have written the code for saving the first_name and 
> the last _name as well as email but it seems not to be working, only the 
> 'username and password' are saved.. I think I am missing something though 
> no error comes up. Please anyone to guide me. Thank you.
> the code is as shown below:
>
>
> views.py
> from django.shortcuts import render, redirect
> from django.contrib.auth import authenticate, login, logout
> from django.contrib.auth.models import User
> from django.contrib import auth, messages
> from django.contrib.auth.forms import UserCreationForm
> from django import forms
> from .forms import SignUpForm
>
> def home(request):
> return render(request, 'authenticate/home.html', {})
>
> def login_user(request):
> if request.method == 'POST':
> username = request.POST['username']
> password = request.POST['password']
> user = authenticate(request, username=username, password=password)
> if user is not None:
> login(request, user)
> messages.success(request,('You have been logged in'))
> return redirect('home')
> else:
> messages.success(request,('Error Logging in!'))
> return redirect('login')
> else:
> return render(request, 'authenticate/login.html', {})
>
> def logout_user(request):
> """if request.method =='POST':"""
> logout(request)
> messages.success(request,('You have been logged out'))
> return redirect('home')
>
> def register_user(request):
> if request.method =='POST':
> form = SignUpForm(request.POST)
> if form.is_valid():
> form.save()
> username = form.cleaned_data['username']
> password = form.cleaned_data['password1']
> user = authenticate(username=username, password=password)
> login(request, user)
> messages.success(request,(' Successfully Registered!'))
> return redirect('home')
> else:
> form = SignUpForm()
>
> context = {'form': form }
> return render(request, 'authenticate/register.html', context)
>
> urls.py
>
> from django.urls import path
> from . import views
> urlpatterns = [
> path('', views.home, name="home"),
> path('login/', views.login_user, name="login"),
> path('logout/', views.logout_user, name='logout'),
> path('register/', views.register_user, name='register'),
> ]
>
> forms.py
> from django.contrib.auth.forms import UserCreationForm, UserChangeForm
> from django.contrib.auth.models import User
> from django import forms
>
> class SignUpForm(UserCreationForm):
> email = forms.EmailField()
> first_name = forms.CharField(max_length=100,)
> last_name = forms.CharField(max_length=100,)
> class meta():
> model = User 
> fields = ('username', 'first_name', 'last_name', 'email', 'password1', 
> 'password2', )
>
> register.html
> {% extends 'authenticate/base.html'%}
> {% block content%}
> This is the Registration Page
> 
> {% csrf_token %}
> {% if form.errors %}
> Your form has errors
> {{ error }}
> {% endif %}
> 
> {{ form.as_p }}
> 
> 
> 
> 
> {% endblock %}
>
>
> Chao!
>
> Adrian
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9a58de45-95d1-4fc6-8948-0cc6994c85fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-29 Thread Adrian Chipukuma
Hello,

I am new to Django and enjoying the learning process, unfortunately I am
stuck, and I need expert guidance.
I am learning through developing a User Authentication System. The system
is supposed to have a user registration functionality, login, user profile
editing and logout. I have managed to create the login, logout
functionalities and the registration functionality partly. The problem is
on the registration, I am only able to save the 'username and password '
using django forms, I have written the code for saving the first_name and
the last _name as well as email but it seems not to be working, only the
'username and password' are saved.. I think I am missing something though
no error comes up. Please anyone to guide me. Thank you.
the code is as shown below:


views.py
from django.shortcuts import render, redirect
from django.contrib.auth import authenticate, login, logout
from django.contrib.auth.models import User
from django.contrib import auth, messages
from django.contrib.auth.forms import UserCreationForm
from django import forms
from .forms import SignUpForm

def home(request):
return render(request, 'authenticate/home.html', {})

def login_user(request):
if request.method == 'POST':
username = request.POST['username']
password = request.POST['password']
user = authenticate(request, username=username, password=password)
if user is not None:
login(request, user)
messages.success(request,('You have been logged in'))
return redirect('home')
else:
messages.success(request,('Error Logging in!'))
return redirect('login')
else:
return render(request, 'authenticate/login.html', {})

def logout_user(request):
"""if request.method =='POST':"""
logout(request)
messages.success(request,('You have been logged out'))
return redirect('home')

def register_user(request):
if request.method =='POST':
form = SignUpForm(request.POST)
if form.is_valid():
form.save()
username = form.cleaned_data['username']
password = form.cleaned_data['password1']
user = authenticate(username=username, password=password)
login(request, user)
messages.success(request,(' Successfully Registered!'))
return redirect('home')
else:
form = SignUpForm()

context = {'form': form }
return render(request, 'authenticate/register.html', context)

urls.py

from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name="home"),
path('login/', views.login_user, name="login"),
path('logout/', views.logout_user, name='logout'),
path('register/', views.register_user, name='register'),
]

forms.py
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth.models import User
from django import forms

class SignUpForm(UserCreationForm):
email = forms.EmailField()
first_name = forms.CharField(max_length=100,)
last_name = forms.CharField(max_length=100,)
class meta():
model = User
fields = ('username', 'first_name', 'last_name', 'email', 'password1',
'password2', )

register.html
{% extends 'authenticate/base.html'%}
{% block content%}
This is the Registration Page

{% csrf_token %}
{% if form.errors %}
Your form has errors
{{ error }}
{% endif %}

{{ form.as_p }}




{% endblock %}


Chao!

Adrian

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHBk_LKtZ7VP1BrKv_HFYckBAqM%2BMWwjv5WJKjx9bpYkNLd3tw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-24 Thread SHUBHAM .SINGH. RATHORE
First you createsuperuser than runserver

On Thu 18 Oct, 2018 2:50 pm ,  wrote:

> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
> is not working showing "django-admin' is not recognized as an internal or 
> external command," what to do?
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/843b5648-de8b-49a7-99da-965a1c64e871%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALkhXJUwwL8GZTnGn6FfAm1GxWEhqkqsyRR%2Bsc4CXbvVRnVdQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-24 Thread Mamadou Harouna Diallo
Hello, Are you active your virtuel env ?
You must active the virtuel env

Le jeu. 18 oct. 2018 à 09:20,  a écrit :

> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
> is not working showing "django-admin' is not recognized as an internal or 
> external command," what to do?
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/843b5648-de8b-49a7-99da-965a1c64e871%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAO73PDoE41eBESrZ_gwmhddStkV_OaZ8_OY6CX6t-_Hh7AsVBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-24 Thread maunish dave
Chech if you have installed django or not
Type this command on cmd ' django pip install'

On Wed 24 Oct, 2018, 8:05 PM Aditya Bohra,  wrote:

>
>
> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com
> wrote:
>>
>> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
>> is not working showing "django-admin' is not recognized as an internal or 
>> external command," what to do?
>>
>> Is it working now
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/64032c27-c402-4f42-8530-12b2ca56ad5d%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALpJ3u%2Bpcqad6Mz3%2B4Tk_XSxjNOfFg2cZfNhNn93x-KvF5Tcmg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-24 Thread Ing.Daniel Bojorge
Thanks for tell us.


Dios L@s Bendiga

Saludos,



[image: --]

daniel.bojorge
[image: http://]about.me/daniel.bojorge

 *Curso Django 2.1 (Course of Django 2.1)* 
Mi Blog 
Nicaragua

"Si ustedes permanecen unidos a mí, y si permanecen fieles a mis
enseñanzas, pidan lo que quieran y se les dará.
(Juan 15:7 DHH)
Bendito el varón que se fía en el SEÑOR, y cuya confianza es el SEÑOR.
(Jeremías 17:7 RV2000)



El mié., 24 oct. 2018 a las 8:35, Aditya Bohra ()
escribió:

>
>
> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com
> wrote:
>>
>> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
>> is not working showing "django-admin' is not recognized as an internal or 
>> external command," what to do?
>>
>> Is it working now
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/64032c27-c402-4f42-8530-12b2ca56ad5d%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMQeQjZRi_rnCmT2RHoVDnjLrWVb2pmnc-XuiNhSLgXbKDM2cg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-24 Thread Aditya Bohra


On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com 
wrote:
>
> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
> is not working showing "django-admin' is not recognized as an internal or 
> external command," what to do?
>
> Is it working now

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/64032c27-c402-4f42-8530-12b2ca56ad5d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-10-22 Thread manu . pascual . luna
I don't know if it's the best book but I'm enjoying 
http://www.obeythetestinggoat.com. I like 
the 
 

 TDD approach for learning a new technology. Also you can read it for free 
online.


El lunes, 22 de octubre de 2018, 14:02:01 (UTC+2), Lokendar Singh escribió:
>
> Hi Community,
>
> I'm new to django and python, however I've experience in development. 
>
> Can someone suggest me the best book/content/tutor to enhance my skills as 
> a lead developer? 
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d3b9f7cb-8379-413b-b626-0eb06f12b2c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-10-22 Thread Joel
If you don't know python, spend time on basic language and structure before
starting django. The python documentation has a good tutorial. The courses
on udemy are good.
For learning django, the official django tutorial set is sufficient.

On Mon, 22 Oct, 2018, 5:31 PM Lokendar Singh,  wrote:

> Hi Community,
>
> I'm new to django and python, however I've experience in development.
>
> Can someone suggest me the best book/content/tutor to enhance my skills as
> a lead developer?
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0c69fb3c-1ddf-4781-b94c-d3c28faefb71%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/0c69fb3c-1ddf-4781-b94c-d3c28faefb71%40googlegroups.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw_-40gpfeikRpix22a0VUSYzzNk6pM5der%2BZVzqZztOCqw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-10-22 Thread Mo-rema07
I have found The Django Book <https://djangobook.com/> to be a very good 
book to get a handle of Djangoa and it's philosophy.

On Monday, October 22, 2018 at 2:02:01 PM UTC+2, Lokendar Singh wrote:
>
> Hi Community,
>
> I'm new to django and python, however I've experience in development. 
>
> Can someone suggest me the best book/content/tutor to enhance my skills as 
> a lead developer? 
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3e0a9b82-84f4-4578-b09f-6e7e711c03d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Where to start - New to Django and Python

2018-10-22 Thread Lokendar Singh
Hi Community,

I'm new to django and python, however I've experience in development. 

Can someone suggest me the best book/content/tutor to enhance my skills as 
a lead developer? 
Currently I'm going through django documentation.


Thanks in advance!
Lokendar 

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0c69fb3c-1ddf-4781-b94c-d3c28faefb71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Joel
No, sorry.

On Fri, 19 Oct, 2018, 9:18 AM Shubham Bajaj, 
wrote:

> I already did these all...
> Can u help me with team viewer if possible
>
> On Fri 19 Oct, 2018, 9:14 AM Joel,  wrote:
>
>> Or you may need to add the location of your installation directory to the
>> system path.
>>
>> On Fri, 19 Oct, 2018, 9:00 AM Shubham Bajaj, 
>> wrote:
>>
>>> Thank u..
>>>
>>> On Fri 19 Oct, 2018, 8:35 AM Joel Mathew,  wrote:
>>>
 just purge and reinstall django


 On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj 
 wrote:
 >
 > I tried this but it showing no module found django.core
 > Pls help me..
 >
 > On Fri 19 Oct, 2018, 6:37 AM satyam mishra, 
 wrote:
 >>
 >> just install all the necessary module needed, just open the location
 of project where you want your project located to be..for example if you
 want your project to be located in desktop then use cmd in cmd prompt 'cd
 desktop' then create your project by using the command ;django-admin
 startproject projectname
 >>
 >> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30,
 shubham...@gmail.com wrote:
 >>>
 >>> "django-admin startproject mysite" i tried to run this in cmd
 propmt but it is not working showing "django-admin' is not recognized as an
 internal or external command," what to do?
 >>
 >> --
 >> 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 https://groups.google.com/group/django-users.
 >> To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.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 https://groups.google.com/group/django-users.
 > To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%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 https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%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 

Re: new to django

2018-10-18 Thread Shubham Bajaj
Kk thanks..

On Fri 19 Oct, 2018, 9:22 AM Joel,  wrote:

> No, sorry.
>
> On Fri, 19 Oct, 2018, 9:18 AM Shubham Bajaj, 
> wrote:
>
>> I already did these all...
>> Can u help me with team viewer if possible
>>
>> On Fri 19 Oct, 2018, 9:14 AM Joel,  wrote:
>>
>>> Or you may need to add the location of your installation directory to
>>> the system path.
>>>
>>> On Fri, 19 Oct, 2018, 9:00 AM Shubham Bajaj, 
>>> wrote:
>>>
 Thank u..

 On Fri 19 Oct, 2018, 8:35 AM Joel Mathew,  wrote:

> just purge and reinstall django
>
>
> On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj 
> wrote:
> >
> > I tried this but it showing no module found django.core
> > Pls help me..
> >
> > On Fri 19 Oct, 2018, 6:37 AM satyam mishra, 
> wrote:
> >>
> >> just install all the necessary module needed, just open the
> location of project where you want your project located to be..for example
> if you want your project to be located in desktop then use cmd in cmd
> prompt 'cd desktop' then create your project by using the command
> ;django-admin startproject projectname
> >>
> >> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30,
> shubham...@gmail.com wrote:
> >>>
> >>> "django-admin startproject mysite" i tried to run this in cmd
> propmt but it is not working showing "django-admin' is not recognized as 
> an
> internal or external command," what to do?
> >>
> >> --
> >> 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 https://groups.google.com/group/django-users.
> >> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.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 https://groups.google.com/group/django-users.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%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 https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit 

Re: new to django

2018-10-18 Thread Shubham Bajaj
I already did these all...
Can u help me with team viewer if possible

On Fri 19 Oct, 2018, 9:14 AM Joel,  wrote:

> Or you may need to add the location of your installation directory to the
> system path.
>
> On Fri, 19 Oct, 2018, 9:00 AM Shubham Bajaj, 
> wrote:
>
>> Thank u..
>>
>> On Fri 19 Oct, 2018, 8:35 AM Joel Mathew,  wrote:
>>
>>> just purge and reinstall django
>>>
>>>
>>> On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj 
>>> wrote:
>>> >
>>> > I tried this but it showing no module found django.core
>>> > Pls help me..
>>> >
>>> > On Fri 19 Oct, 2018, 6:37 AM satyam mishra,  wrote:
>>> >>
>>> >> just install all the necessary module needed, just open the location
>>> of project where you want your project located to be..for example if you
>>> want your project to be located in desktop then use cmd in cmd prompt 'cd
>>> desktop' then create your project by using the command ;django-admin
>>> startproject projectname
>>> >>
>>> >> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30,
>>> shubham...@gmail.com wrote:
>>> >>>
>>> >>> "django-admin startproject mysite" i tried to run this in cmd propmt
>>> but it is not working showing "django-admin' is not recognized as an
>>> internal or external command," what to do?
>>> >>
>>> >> --
>>> >> 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 https://groups.google.com/group/django-users.
>>> >> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.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 https://groups.google.com/group/django-users.
>>> > To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%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 

Re: new to django

2018-10-18 Thread Joel
Or you may need to add the location of your installation directory to the
system path.

On Fri, 19 Oct, 2018, 9:00 AM Shubham Bajaj, 
wrote:

> Thank u..
>
> On Fri 19 Oct, 2018, 8:35 AM Joel Mathew,  wrote:
>
>> just purge and reinstall django
>>
>>
>> On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj 
>> wrote:
>> >
>> > I tried this but it showing no module found django.core
>> > Pls help me..
>> >
>> > On Fri 19 Oct, 2018, 6:37 AM satyam mishra,  wrote:
>> >>
>> >> just install all the necessary module needed, just open the location
>> of project where you want your project located to be..for example if you
>> want your project to be located in desktop then use cmd in cmd prompt 'cd
>> desktop' then create your project by using the command ;django-admin
>> startproject projectname
>> >>
>> >> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30,
>> shubham...@gmail.com wrote:
>> >>>
>> >>> "django-admin startproject mysite" i tried to run this in cmd propmt
>> but it is not working showing "django-admin' is not recognized as an
>> internal or external command," what to do?
>> >>
>> >> --
>> >> 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 https://groups.google.com/group/django-users.
>> >> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.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 https://groups.google.com/group/django-users.
>> > To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Shubham Bajaj
Thank u..

On Fri 19 Oct, 2018, 8:35 AM Joel Mathew,  wrote:

> just purge and reinstall django
>
>
> On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj 
> wrote:
> >
> > I tried this but it showing no module found django.core
> > Pls help me..
> >
> > On Fri 19 Oct, 2018, 6:37 AM satyam mishra,  wrote:
> >>
> >> just install all the necessary module needed, just open the location of
> project where you want your project located to be..for example if you want
> your project to be located in desktop then use cmd in cmd prompt 'cd
> desktop' then create your project by using the command ;django-admin
> startproject projectname
> >>
> >> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30,
> shubham...@gmail.com wrote:
> >>>
> >>> "django-admin startproject mysite" i tried to run this in cmd propmt
> but it is not working showing "django-admin' is not recognized as an
> internal or external command," what to do?
> >>
> >> --
> >> 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 https://groups.google.com/group/django-users.
> >> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.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 https://groups.google.com/group/django-users.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Joel Mathew
just purge and reinstall django


On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj  wrote:
>
> I tried this but it showing no module found django.core
> Pls help me..
>
> On Fri 19 Oct, 2018, 6:37 AM satyam mishra,  wrote:
>>
>> just install all the necessary module needed, just open the location of 
>> project where you want your project located to be..for example if you want 
>> your project to be located in desktop then use cmd in cmd prompt 'cd 
>> desktop' then create your project by using the command ;django-admin 
>> startproject projectname
>>
>> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com 
>> wrote:
>>>
>>> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
>>> is not working showing "django-admin' is not recognized as an internal or 
>>> external command," what to do?
>>
>> --
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Shubham Bajaj
I tried this but it showing no module found django.core
Pls help me..

On Fri 19 Oct, 2018, 6:37 AM satyam mishra,  wrote:

> just install all the necessary module needed, just open the location of
> project where you want your project located to be..for example if you want
> your project to be located in desktop then use cmd in cmd prompt 'cd
> desktop' then create your project by using the command ;django-admin
> startproject projectname
>
> On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com
> wrote:
>>
>> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
>> is not working showing "django-admin' is not recognized as an internal or 
>> external command," what to do?
>>
>> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Shubham Bajaj
I am using windows 10

On Fri 19 Oct, 2018, 12:59 AM Vivek Jha,  wrote:

> Use this step and don't forget to install pip3
> Command is for linux it is sido apt-get install Python3.6-pip3
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/291cb631-701e-4109-9ab5-c0bdacb0e303%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gjO%2Bdnk%2B5zu8e2yCpD-wpVd4MRZmPJ5vh0KecPdeFJz4w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread satyam mishra
just install all the necessary module needed, just open the location of 
project where you want your project located to be..for example if you want 
your project to be located in desktop then use cmd in cmd prompt 'cd 
desktop' then create your project by using the command ;django-admin 
startproject projectname

On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com 
wrote:
>
> "django-admin startproject mysite" i tried to run this in cmd propmt but it 
> is not working showing "django-admin' is not recognized as an internal or 
> external command," what to do?
>
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread satyam mishra
just try 'python manage.py projectname/ ' and run the project

On Thu, Oct 18, 2018 at 8:05 PM Nelson Varela 
wrote:

>
> did you install django...
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/359e2b8a-fc18-4c22-870a-27713f73768c%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACMqkY%2B5AnAu1qgoMpzvuiqXo0r8p_PrdpbA9qiE_%3DqPKvAgJw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


new to django

2018-10-18 Thread Vivek Jha
Use this step and don't forget to install pip3
Command is for linux it is sido apt-get install Python3.6-pip3

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/291cb631-701e-4109-9ab5-c0bdacb0e303%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


new to django

2018-10-18 Thread Vivek Jha
1. virtualenv environmentname
2. cd environmentname
3. Scripts\activate #to activate environment
4. pip3 install dango==2.1
5. django-admin startproject projectname
6. cd projectname
7. Python manage.py runserver

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/801799d2-9dd3-458d-af81-a71b60847ae1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Shubham Bajaj
Yeah..
When I tried running import django in idle it is not showing any error

On Thu 18 Oct, 2018, 8:05 PM Nelson Varela, 
wrote:

>
> did you install django...
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/359e2b8a-fc18-4c22-870a-27713f73768c%40googlegroups.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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gg7C3nLMr5o-KHn5QtSWCQ7O3hZxDsBSM4gN0VBmurZ2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Nelson Varela

did you install django... 

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/359e2b8a-fc18-4c22-870a-27713f73768c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: New to Django

2018-10-18 Thread fatoubinetou196


Le mercredi 17 octobre 2018 21:21:54 UTC, fatoubi...@gmail.com a écrit :
>
> Hi! I wanted to know if you could frame me on how to design my application 
> of visualizations of the statutes of a payments by the owner with Django. 
> Because it's my first time and I do not quite understand how to list this 
> project in app.
>
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/685f2173-396b-4130-8d1d-1f2ecec7fcb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Shubham Bajaj
Django.core*


On Thu 18 Oct, 2018, 3:28 PM Pradeep Singh,  wrote:

> bro first select a file where your project have stored.
>
> On Thu, 18 Oct 2018 at 15:23, Shubham Bajaj 
> wrote:
>
>> I and getting error no module found django.cargo.
>> I tried for three hours but unable to start my first project pls help me..
>>
>> On Thu 18 Oct, 2018, 3:19 PM Dilip Krishna, <
>> dilipkrishna.adap...@gmail.com> wrote:
>>
>>> You might have created a virtual environment for django and got out of
>>> it.check for it??
>>>
>>> --
>>> 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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CANwgZcbYv6UkOY-vTLv%3DeGB2AyZ%2Bdz8mrEUSocg%2BQWdxDF94cw%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gg%3DoJ7T-%2BrFwr5hgeVM0nQg2YJVHZy5WF3-rxzp9EXDpQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Shubham Bajaj
No module named django.core how to solve this issue

On Thu 18 Oct, 2018, 4:05 PM Shubham Bajaj, 
wrote:

> When I tried to run "admin.py start project mysite" in cmd  it shows
> module django.cargo not found
>
> On Thu 18 Oct, 2018, 3:28 PM Pradeep Singh,  wrote:
>
>> bro first select a file where your project have stored.
>>
>> On Thu, 18 Oct 2018 at 15:23, Shubham Bajaj 
>> wrote:
>>
>>> I and getting error no module found django.cargo.
>>> I tried for three hours but unable to start my first project pls help
>>> me..
>>>
>>> On Thu 18 Oct, 2018, 3:19 PM Dilip Krishna, <
>>> dilipkrishna.adap...@gmail.com> wrote:
>>>
 You might have created a virtual environment for django and got out of
 it.check for it??

 --
 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 https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CANwgZcbYv6UkOY-vTLv%3DeGB2AyZ%2Bdz8mrEUSocg%2BQWdxDF94cw%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57ggOFhk577DxozHqMYpU2NyLdD%3DHVtzu61Tr1Z7CzQOwgA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to django

2018-10-18 Thread Shubham Bajaj
When I tried to run "admin.py start project mysite" in cmd  it shows module
django.cargo not found

On Thu 18 Oct, 2018, 3:28 PM Pradeep Singh,  wrote:

> bro first select a file where your project have stored.
>
> On Thu, 18 Oct 2018 at 15:23, Shubham Bajaj 
> wrote:
>
>> I and getting error no module found django.cargo.
>> I tried for three hours but unable to start my first project pls help me..
>>
>> On Thu 18 Oct, 2018, 3:19 PM Dilip Krishna, <
>> dilipkrishna.adap...@gmail.com> wrote:
>>
>>> You might have created a virtual environment for django and got out of
>>> it.check for it??
>>>
>>> --
>>> 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 https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CANwgZcbYv6UkOY-vTLv%3DeGB2AyZ%2Bdz8mrEUSocg%2BQWdxDF94cw%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57giS1TTJao_jYAE%2BDvyZ38%2B3TeOqNZTDLZkmq3w28sj4bA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   3   4   5   >