Deploying Django Project on Kubernetes

2021-05-06 Thread 'Muhammad Asim Khaskheli' via Django users
Hello everyone! I want to make my django project with mysql backend live on kubernetes, however, I dont have any prior knowledge about this. Can anyone guide me in this? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Authentication using Email or Password

2021-05-05 Thread 'Muhammad Asim Khaskheli' via Django users
Hi, I have to make an application that can either accpet phone number or email address during registration. Right now, I am only handling the email part. I dont know how to make it flexible to accept phone number or email address option. Any one please help me in this user/models.py: from djan

Loading csv data in database

2021-04-29 Thread 'Muhammad Asim Khaskheli' via Django users
Hi, I wanted to ask how to load CSV data into the model. What steps do we have to follow? I have made this function but how exactly to run this code because, python manage.py load data won't work. def import_data(): with open('sample-dataset.csv') as f: reader = csv.reader(f) for row in read