Re: Data Science and sql problem

2020-07-26 Thread Yamen Gamal Eldin
Try sql alchemy, if you need a full access with many functionality. Other than that, u can connect directly to the database through python. The exact implementation will depend on the database type Le dim. 26 juil. 2020 à 18:15, Gurmeet Kaur a écrit : > you could try using connection and cursor

Re: help me

2020-07-26 Thread Yamen Gamal Eldin
Premièrement tu peux copier l'erreur dans Google, c'est un import erreur dans votre virtual environment du python. He pense que la solution serra quelque chose comme "pip install " Le lun. 27 juil. 2020 à 06:00, MUGOYA DIHFAHSIH a écrit : > if you could translate the error in Enl=glish,

Re: help me

2020-07-26 Thread MUGOYA DIHFAHSIH
if you could translate the error in Enl=glish, maybe we could be of help On Mon, 27 Jul 2020 at 03:08, Deborah wrote: > bonsoir > > je suis bloquée avec -ça je ne sais pas quoi faire > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

Re: Python-django project

2020-07-26 Thread jhabar singh
I am Interested -- 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

Re: help on creating user profile using drf

2020-07-26 Thread Fernando Hernandez
I think the issue is here instance.profile will be None first time the CustomUser is created, you need to assign the created Profile to the instance and then save the user [image: image.png] try this if created: instance.profile = Profile.objects.create(user=instance) instance.save()

help me

2020-07-26 Thread Deborah
bonsoir je suis bloquée avec -ça je ne sais pas quoi faire -- 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

Re: Help me pleace

2020-07-26 Thread Ryan Nowakowski
You probably want to put the sender's email in the reply-to header. That way the from header can be your Django project's from email. On July 22, 2020 11:16:49 AM CDT, Nikola Tesla wrote: >/Hi, I'm trying to get the sender's email in the headers of my email (I > >mean my blog's contact form).

Re: Django dynamic time settings in DB

2020-07-26 Thread jhabar singh
It is never a good approach to store something in database which needs to be changed after every second. If you to perform asynchronous task then you can use celery https://docs.celeryproject.org/en/stable/getting-started/introduction.html On Sunday, July 26, 2020 at 11:54:17 PM UTC+5:30,

Re: Site not Secure only on Google Chrome

2020-07-26 Thread Anirudh choudhary
Yes I it have lot of javascript and lot to rest framework .. thanks if your like my website and my work  On Sun, 26 Jul, 2020, 11:21 PM Kovy Jacob, wrote: > I don’t know how to fix that, but I checked out the site on safari - it > looks REALLY cool! Its really cool you made that with

Re: Django dynamic time settings in DB

2020-07-26 Thread adiath...@gmail.com
can you please give a documentation reference on that? On Sunday, July 26, 2020 at 10:59:22 AM UTC-7 larry.mart...@gmail.com wrote: > On Sun, Jul 26, 2020 at 1:50 PM adiath...@gmail.com > wrote: > > > > How can you continuously update your DB time field in django without > post request. > >

Re: Django dynamic time settings in DB

2020-07-26 Thread Larry Martell
On Sun, Jul 26, 2020 at 1:50 PM adiath...@gmail.com wrote: > > How can you continuously update your DB time field in django without post > request. Use websockets and channels. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: Site not Secure only on Google Chrome

2020-07-26 Thread Kovy Jacob
I don’t know how to fix that, but I checked out the site on safari - it looks REALLY cool! Its really cool you made that with Django! > On Jul 26, 2020, at 11:07 AM, Anirudh choudhary > wrote: > > Hello everyone > > I hosted my app on Heroku. when is try to access www.apnaganna.herokuapp.com

Django dynamic time settings in DB

2020-07-26 Thread adiath...@gmail.com
How can you continuously update your DB time field in django without post request. -- 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

Re: Site not Secure only on Google Chrome

2020-07-26 Thread Vishnu Bhandari
Hi Folks, Decided to make a whats app group of all django users (aspiring and expert) for sharing problem and asnwers. Request you all, please ping me om +919561879917... Or u can join thru this link - https://chat.whatsapp.com/Gmr7QDkNw8YIxobnzNQfbl If any existing group exists, please add me

Re: Data Science and sql problem

2020-07-26 Thread Gurmeet Kaur
you could try using connection and cursor to connect nd then pandas to read csv using readcsv function On Sun, Jul 26, 2020, 11:59 AM Prashant Singh wrote: > How can i connect database with help of function in jupyter notebook and > then conver data into csv to build model ? > > -- > You

Data Science and sql problem

2020-07-26 Thread Prashant Singh
How can i connect database with help of function in jupyter notebook and then conver data into csv to build model ? -- 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

Re: Python-django project

2020-07-26 Thread Andi Setyawan
Interested Pada tanggal 21 Jul 2020 10:10 AM, "learn code" menulis: > Hi everyone, > > I am learning python and django, like to work on the projects to improve > more.If any one interested to join with me to work on the projects,plz send > me a email. > > -- > You received this message because

Site not Secure only on Google Chrome

2020-07-26 Thread Anirudh choudhary
Hello everyone I hosted my app on Heroku. when is try to access www.apnaganna.herokuapp.com it show me secure but when I try to access https://www.apnaganna.com on google chrome it shows me not secure. but on any other browser like Opera, Mozilla, IE it is showing me unsecured only in google

Re: downloading image files from django template

2020-07-26 Thread RANGA BHARATH JINKA
Good On Sun, Jul 26, 2020 at 8:17 PM adiath...@gmail.com wrote: > Thanks, I got the answer. Working now. > > On Sunday, July 26, 2020 at 7:40:42 AM UTC-7 bharath...@gmail.com wrote: > >> Use anchor tag for images url >> >> On Sun, Jul 26, 2020 at 10:16 AM Teaching Tech >> wrote: >> >>> How can

Re: help with my api and JWT

2020-07-26 Thread ola neat
thanks it worked On Sat, Jul 25, 2020 at 10:45 PM Robson Andrade wrote: > Hello friend, > > I noticed that you are using the standard token authentication system. > However, this method does not correspond to JWT. > > Since you want to use authentication through JWT with DRF, you must use: > >

Re: downloading image files from django template

2020-07-26 Thread adiath...@gmail.com
Thanks, I got the answer. Working now. On Sunday, July 26, 2020 at 7:40:42 AM UTC-7 bharath...@gmail.com wrote: > Use anchor tag for images url > > On Sun, Jul 26, 2020 at 10:16 AM Teaching Tech > wrote: > >> How can I download an image file that is shown to the template in Django? >> I'm new

Re: downloading image files from django template

2020-07-26 Thread RANGA BHARATH JINKA
Use anchor tag for images url On Sun, Jul 26, 2020 at 10:16 AM Teaching Tech wrote: > How can I download an image file that is shown to the template in Django? > I'm new to Django. This might be a silly question. But I need to know for > my existing project. > > -- > You received this message

SYMMETRIC DS

2020-07-26 Thread Sunday Iyanu Ajayi
Please who has used Symmetric DS? I need help with registering a node *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@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