RE: help required with a concept.

2020-08-21 Thread Mike Dewhirst
>From my perspective the difficult part is OTP and interfacing with SMS because >I haven't done that before.The relational design requires modeling real world >relationships which usually isn't hard. Trying to use "@institution" for >userid is fraught with potential problems. Normally a registr

Re: help required with a concept.

2020-08-21 Thread Ogunsanya Opeyemi
Hi you need to carefully create an algorithm because this implementation is a big one. Send your whatsapp number to me if you still dont get what i meant. If i could help you in it. On Saturday, August 22, 2020, Asish Ojha wrote: > i am designing a project on online registration of students for

Re: Who can help me?

2020-08-21 Thread Hella thor
- Why did he report an error?It's 'Watching for file changes with StatReloader' Ahmed Yasin 于2020年8月21日周五 下午9:38写道: > Can you tell me what are you trying to do? > > On Fri, Aug 21, 2020, 6:29 PM Hella thor > wrote: > >> Hey guys: >> >> My python version is 3.7.1 >> Django version is

help required with a concept.

2020-08-21 Thread Asish Ojha
i am designing a project on online registration of students for an educational institution. Now that institution is having several schools registered under it. The School has a school id code and school name. Now i want a generalised login system for the school where they have their school id c

Re:

2020-08-21 Thread ankit baliyan
Thank you so much sir, On Fri, 21 Aug, 2020, 9:39 pm Tobi DEGNON, wrote: > You can try dokku, search dokku on Google, if you have already deploy on > Heroku, it is very similar, you just need to install dokku on your Vps, > they have really great doc or you can try this > > https://djangocentra

Re:

2020-08-21 Thread Tobi DEGNON
You can try dokku, search dokku on Google, if you have already deploy on Heroku, it is very similar, you just need to install dokku on your Vps, they have really great doc or you can try this https://djangocentral.com/deploy-django-with-nginx-gunicorn-postgresql-and-lets-encrypt-ssl-on-ubuntu/ Le

[no subject]

2020-08-21 Thread ankit baliyan
Plz, tell me how to deploy docker django project on server -- 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 thi

Re: django - admin error

2020-08-21 Thread RANGA BHARATH JINKA
Try using virtual environment On Fri, 21 Aug 2020, 6:59 pm sapna Choudhary, wrote: > run command line django-admin ,you will see list of commands to run > > On Thu, Aug 20, 2020 at 6:47 PM company <2071...@hansung.ac.kr> wrote: > >> Hi, Django users. >> I started to learn programming this year

Re: Who can help me?

2020-08-21 Thread Ahmed Yasin
Can you tell me what are you trying to do? On Fri, Aug 21, 2020, 6:29 PM Hella thor wrote: > Hey guys: > > My python version is 3.7.1 > Django version is 3.1 > > When I started the project > > [image: 9.png] > > -- > You received this message because you are subscribed to the Google Groups > "Dj

Re: django - admin error

2020-08-21 Thread sapna Choudhary
run command line django-admin ,you will see list of commands to run On Thu, Aug 20, 2020 at 6:47 PM company <2071...@hansung.ac.kr> wrote: > Hi, Django users. > I started to learn programming this year and joined to make new homepage > for my programming club. So I want to know how to solve this

Re: Sources for learning django

2020-08-21 Thread sapna Choudhary
Follow Corey Schafer youtube channel and don't have any about any book. Documentation of django would take away your interest to learn django so start with this channel. please do share your experience.Corey Schafer On Fri, Aug 21

Who can help me?

2020-08-21 Thread Hella thor
Hey guys: My python version is 3.7.1 Django version is 3.1 When I started the project [image: 9.png] -- 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-u

Re: data too long in a CharField column

2020-08-21 Thread hans alexander
I changed my database from mysql to postgresql. But when I tried saving data on forms, I got this error " value too long for type character varying(50)" I don't know why, because when I was using MYSQL, I didn't get any error. Can someone help me with this Postgresql? On Monday, May 4, 2009 at 10

Re: Sources for learning django

2020-08-21 Thread Md. Nazmul Hossain
It is the best for beginners to professionals. https://wsvincent.com/best-django-books/ On Fri, Aug 21, 2020 at 4:30 AM Mohamed Ghoneim wrote: > Hey guys, > > can any one tell me name of books , websites or youtube channels which > are good to learn django . > > i also want to ask ,how long do

If posible connect Django with IBM i.

2020-08-21 Thread Eduardo Alberto Marcó
Which are the parameters to settings.py -- 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

Re: URGENT ---- Third party API integration basics

2020-08-21 Thread Arpana Mehta
Thanks a lot for the super fast response! 🤩 On Fri, 21 Aug 2020, 15:40 RANGA BHARATH JINKA, wrote: > Hi, > > create a variable like APIKEY = 'value' in settings.py. > If you want to access that api key in views just use this import "from > django.conf import settings" > In views.py:

Re: URGENT ---- Third party API integration basics

2020-08-21 Thread Tobi DEGNON
You add the key to your environment and read it in Django with django environ or the os module, then you can create a utils.py in the app module where you need to fetch the data, you create a function(something like fetch_api) to fetch the data and call it where you need it, you can use the request

Re: URGENT ---- Third party API integration basics

2020-08-21 Thread RANGA BHARATH JINKA
Hi, create a variable like APIKEY = 'value' in settings.py. If you want to access that api key in views just use this import "from django.conf import settings" In views.py: api_key = settings.APIKEY All the best. On Fri, Aug 21, 2020 at 3:33 PM Ogunsanya Opeyemi < ogunsanyao

Re: URGENT ---- Third party API integration basics

2020-08-21 Thread Ogunsanya Opeyemi
You just need to add define the key in your settings file Key_Name= "key" OGUNSANYA OPEYEMI On Fri, Aug 21, 2020 at 10:55 AM Arpana Mehta wrote: > Hello everybody, > I wanted to know if there's anybody who can help me integrate a very > simple third party API using client ID and secret key. > >

URGENT ---- Third party API integration basics

2020-08-21 Thread Arpana Mehta
Hello everybody, I wanted to know if there's anybody who can help me integrate a very simple third party API using client ID and secret key. I just want to know the basic steps of where to add the key and ID in settings file so I can access that API from my app in django-project. *It's kind of ur

Re: Sources for learning django

2020-08-21 Thread Ahmed Hashim
You can check youtube channel Coding Entrepreneurs, this guy is amazing. https://www.youtube.com/channel/UCWEHue8kksIaktO8KTTN_zg your other question regarding how long does it takes to learn, is solely depends on your will and passion, als