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 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/CAKYSAw3XPSHh3iHdb8sysYfgcNGX7iR1hFtm9-kiA_1%3D2XD-nA%40mail.gmail.com.


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 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/441320b3-f6cc-4390-b04e-0ef03abe10a5o%40googlegroups.com
> 
> .
>


-- 
Thanks and Regards

J. Ranga Bharath
cell: 9110334114

-- 
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/CAK5m3168Y-4fTjWmOHN-zC2bCJQMKZipi7WJVMKE%3D6ZFYGHs7g%40mail.gmail.com.


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 to Django. This might be a silly question. But I need to know for 
>> my existing project.
>>
>> -- 
>> 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/441320b3-f6cc-4390-b04e-0ef03abe10a5o%40googlegroups.com
>>  
>> 
>> .
>>
>
>
> -- 
> Thanks and Regards
>
> J. Ranga Bharath
> cell: 9110334114
>

-- 
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/09b46851-e639-4d60-add0-3f0a65ad7b22n%40googlegroups.com.


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:
>
> 1) A JWT library that implements this type of authentication which helps
> you to create a login route to obtain the access token, route to the
> refresh token, or other routes and resources you need. I can recommend you:
> Simple JWT (my favorite)
> https://github.com/SimpleJWT/django-rest-framework-simplejwt or REST
> framework JWT Auth - https://jpadilla.github.io/django-rest-framework-jwt
> /
>
> 2) Next, you must correctly configure these Django modules.
>
> 3) When everything is properly configured, you must first obtain the
> access token and refresh token through a previously created user login.
>
> 4) Once you have the access token, you must send it to the request head as
> follows, for example:
>  {Authorization: "Bearer
> eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTU5NTYwMzIyNSwianRpIjoiY2QxYTRiYWJiZTgzNDVhMjlkMGJmYTIzNTc0Zjk0ZjEiLCJ1c2VyX2lkIjo4fQ.i6bmtiqFyWyxo7mMuZxQjN9RvM-DjaiOwRVxeRBdiwM"}
>
> 5) Every 5 minutes you must request a new access token through the refresh
> token, but now in the body of the request:
>  { "Refresh",
> "ppADdAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTU5NTYwMzIyNSwianRpIjoiY2QxYTRiYWJiZTgzNDVhMjlkMGJmYTIzNTc0Zjk0ZjEiLCJ1c2VyX2lkIjo4fQ.i6bmtiqFyWyxo7mMuZxQjN9RvM-DjaiOwRVxeRBccdSA"}
>
> Read this article:
> https://simpleisbetterthancomplex.com/tutorial/2018/12/19/how-to-use-jwt-authentication-with-django-rest-framework.html
>
> Hope this helps!
>
> See you later!
>
> Em sábado, 25 de julho de 2020 16:52:38 UTC-3, ola neat escreveu:
>>
>> hey guy i got an issue implementing jwt in my drf project, i've got it
>> installed and when the user signs up or login the token get generated but
>> when i use the same token to test other end point i get
>> i've got my code and response attached
>> {
>> "detail": "Authentication credentials were not provided."
>> }
>>
> --
> 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/069d7c8c-3aba-457c-ba7c-b047779a5f29o%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/CAHLKn733Qz%3DF_vQRvNhC_pk3cbvXerCFR%3D%3DsOGPLBGQa428Tmw%40mail.gmail.com.


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 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 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/441320b3-f6cc-4390-b04e-0ef03abe10a5o%40googlegroups.com
>>> 
>>> .
>>>
>>
>>
>> --
>> Thanks and Regards
>>
>> J. Ranga Bharath
>> cell: 9110334114
>>
> --
> 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/09b46851-e639-4d60-add0-3f0a65ad7b22n%40googlegroups.com
> 
> .
>


-- 
Thanks and Regards

J. Ranga Bharath
cell: 9110334114

-- 
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/CAK5m314gvPD%2BWWg67ZDU485xdku5NS6eKpFkxswHayYxTbN%2BQQ%40mail.gmail.com.


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 chrome it is showing
unsecured. I am using Automatic certs on Heroku  and my domain in on
Godaddy

any solution to the problem


Step I have taken:
1.cleaning cookies
2.when i try curl request like :- curl -vI https://www.apnaganna.com

it shows me :-  SSL: no alternative certificate subject name matches target
host name 'www.apnaganna.com'

Thankyou

-- 
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/CAL8_rkEeZhW-_appFb_KRRAjQepJ%3D11ORZvMYkYh7-1BT0T0qA%40mail.gmail.com.


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 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/e7116e9b-9458-4f49-a638-135c4b5874e0o%
> 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/CAG_zNb--MuYzCdxh4PmzbCmXiKCMxefeM%3D4zUx5mRU7zkvE99A%40mail.gmail.com.


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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/dd90d45a-dfbf-47a6-86b2-a4e600d4a9c9n%40googlegroups.com.


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 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/dd90d45a-dfbf-47a6-86b2-a4e600d4a9c9n%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/CAEbKJVi%3DPfRdjN7AxWiEb-BuUZ_cjwinBpwrbQ9-iTi7e_hyrQ%40mail.gmail.com.


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 there. - 9561879917

On Sun, 26 Jul, 2020, 8:38 pm Anirudh choudhary, <
anirudhchoudary...@gmail.com> wrote:

> 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 chrome it is showing unsecured. I am using Automatic certs on
> Heroku  and my domain in on Godaddy
>
> any solution to the problem
>
>
> Step I have taken:
> 1.cleaning cookies
> 2.when i try curl request like :- curl -vI https://www.apnaganna.com
>
> it shows me :-  SSL: no alternative certificate subject name matches
> target host name 'www.apnaganna.com'
>
> Thankyou
>
> --
> 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/CAL8_rkEeZhW-_appFb_KRRAjQepJ%3D11ORZvMYkYh7-1BT0T0qA%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/CALeETX%2BO4xthrVWbqpPW6bfzQL%2B-oKKokE%3DfNrPuiTXpYc%3DGUg%40mail.gmail.com.


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 
>  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 chrome it is showing unsecured. 
> I am using Automatic certs on Heroku  and my domain in on Godaddy 
> 
> any solution to the problem 
> 
> 
> Step I have taken:
> 1.cleaning cookies
> 2.when i try curl request like :- curl -vI https://www.apnaganna.com 
> 
> 
> it shows me :-  SSL: no alternative certificate subject name matches target 
> host name 'www.apnaganna.com '
> 
> Thankyou
> 
> 
> -- 
> 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/CAL8_rkEeZhW-_appFb_KRRAjQepJ%3D11ORZvMYkYh7-1BT0T0qA%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/604A6786-557A-44FD-9867-802CE6AAD66F%40gmail.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 django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1faeda85-0f48-4f07-85f4-a8528a134d4dn%40googlegroups.com.


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 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/CACwCsY4jm_U-GCGPB%3D%3DE5-2EEff9Je_77%2BFCS%3DM-RahguQ0DhA%40mail.gmail.com.


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.
>
> Use websockets and channels.
>

-- 
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/764d6ce2-1903-42e7-96a7-3c1f3044e1e3n%40googlegroups.com.


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 Django!
>
> On Jul 26, 2020, at 11:07 AM, Anirudh choudhary <
> anirudhchoudary...@gmail.com> wrote:
>
> 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 chrome it is showing unsecured. I am using Automatic certs on
> Heroku  and my domain in on Godaddy
>
> any solution to the problem
>
>
> Step I have taken:
> 1.cleaning cookies
> 2.when i try curl request like :- curl -vI https://www.apnaganna.com
>
> it shows me :-  SSL: no alternative certificate subject name matches
> target host name 'www.apnaganna.com'
>
> Thankyou
>
>
> --
> 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/CAL8_rkEeZhW-_appFb_KRRAjQepJ%3D11ORZvMYkYh7-1BT0T0qA%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/604A6786-557A-44FD-9867-802CE6AAD66F%40gmail.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/CAL8_rkGYDR2q495wNp3L946VfMRj%2BhxqDkguYk6%2Bya0TTxP2%3Dg%40mail.gmail.com.


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, adiath...@gmail.com wrote:
>
> can you please give a documentation reference on that?
>
>
> On Sunday, July 26, 2020 at 10:59:22 AM UTC-7 larry@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. 
>>
>> Use websockets and channels. 
>>
>

-- 
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/8a4b79c4-ae93-42ce-89e9-a6de9d9d8d92o%40googlegroups.com.


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). When the visitor sends me a message 
>through my blog's contact form, I want his email to appear in the 
>section that says From... attach an image
>/
>
>/How can I set it up so that it reaches me correctly?/
>
>-- 
>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/60523d43-20aa-77d9-b2e3-b912be6ecca6%40gmail.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/60483395-423B-4238-8CD3-3900AC3FB199%40fattuba.com.


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 this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e10f80b0-3110-4108-8cbe-9852f16a3205o%40googlegroups.com.


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()




On Sun, Jul 26, 2020 at 2:00 PM ola neat  wrote:

> good day, i'm working on a project that allow user create their profile
> after they have signup, thereby having 2 seperate model, User and Profile
> but i'm getting a not null constraint error, below is they screenshot of my
> code and err msg
>
> --
> 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/CAHLKn73K5hEjn%3DzeoQQtaZBOTj4J6f4LH45V1xOKSE6E%3DoOeFQ%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/CACmeZJz1cGJT4Tzqy6QT-ncXJC1TUExEQi7y%2BgDpsfh88bO1WA%40mail.gmail.com.


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 
https://groups.google.com/d/msgid/django-users/90074d5c-2004-4a0a-9535-83d345cde60eo%40googlegroups.com.


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 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/e10f80b0-3110-4108-8cbe-9852f16a3205o%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/CAP%3DJD9zJdx3dSPmewVs2JqPif_QiwKXtUxpVNGOGqquuMHAeSA%40mail.gmail.com.


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, 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 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/e10f80b0-3110-4108-8cbe-9852f16a3205o%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/CAP%3DJD9zJdx3dSPmewVs2JqPif_QiwKXtUxpVNGOGqquuMHAeSA%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/CAOwHV69MBSW-ETBSN4H1WbXA7RAO%3Df25j44LbEsxHOyQhcWb6w%40mail.gmail.com.


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 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 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/dd90d45a-dfbf-47a6-86b2-a4e600d4a9c9n%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/CAEbKJVi%3DPfRdjN7AxWiEb-BuUZ_cjwinBpwrbQ9-iTi7e_hyrQ%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/CAOwHV68PecSp_MB-%2B23-tEVzPUjdij69qKR5omgAOuLgnMYSJg%40mail.gmail.com.