Django help needed URGENTLY!!!!

2021-11-29 Thread Kay TV
Hi everyone. Can anyone please help. I have a Django project which i want to distribute as a Windows executable file. What do I do please? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

Re: Django-error about files

2019-01-13 Thread kennedy kay
This is most probably because you are not in the directory containing manage.py Ensure you are in the directory containing 'manage.py' To do enter the command >dir see if the list of files in that directory contains manage.py If not, then >cd nam-of-folder-containing-manage.py Voila. On Sunday,

Re: Pip installation

2019-01-12 Thread kennedy kay
What you can also do is install Python from Anaconda. It comes with inbuilt pip goto: https://www.anaconda.com/download/ After installation: Open Ananaconda prompt and install any pip package *Kind regards,* *E.I Kenneth[Python developer/Machine Learner]@www.wolfiegrabber.in

RE: Direction Distance measure in python code

2018-12-09 Thread kennedy kay
What I would do if I were you is separate this distance into longitude and latitude. I am sure you know what I mean by that then use a python library called ‘cartopy’. You can pip install this package: Pip install cartopy OR conda install -c conda-forge cartopy There is another python library f

Re: Integrating ml in django

2018-12-05 Thread kennedy kay
Yes friend...You can always preprocess you data with a python script at the backend. You can as well use machine predictive modeling, clustering and classification algorithms using sklearn, pandas and numpy libraries. This is no problem at all so long it is all in python. Django can output it a

Re: Problem

2018-12-05 Thread kennedy kay
Hi David, I suggest you look at this git project Perhaps it could help https://github.com/divio/django-polls/tree/master/polls Cheers! On Wednesday, December 5, 2018 at 1:30:50 PM UTC+1, David Figueroa wrote: > > > David Figueroa *por * >

Re: Easiest front end JavaScript framework to integrate with a Django backend?

2018-11-30 Thread kennedy kay
and Angular! >> >> Sincerely yours, >> >> Joel G Mathew >> >> >> >> On Fri, 30 Nov 2018 at 01:51, Benjamin SOULAS >> wrote: >> >>> Hello, >>> >>> Currently I integrate VueJS, it works like a charm, the documen

Re: Easiest front end JavaScript framework to integrate with a Django backend?

2018-11-29 Thread kennedy kay
For me personally I would recommend AngularJS. Not just because it easy to integrate with Django but because you can also create mobile applications on the fly. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: Make a loop to get request.POST information

2018-11-26 Thread kennedy kay
Or you can simply do something like this ##method 1 > > Polls = [] > > for x in range(1, 4): > > #then creat a list of poll objects and append to the polls list > > Polls.append('input_'+str(x)) > > polls = Polls.object.create(motsclef = request.POST['input_{x}' for x in range(3)]) On M

Re: Make a loop to get request.POST information

2018-11-26 Thread kennedy kay
This should work ##method 1 > Polls = [] > for x in range(1, 4): > #then create a list of poll objects and append to the polls list > Polls.append('input_'+str(x)) On Monday, November 26, 2018 at 5:13:01 PM UTC+1, Thibaud MONTAGNON wrote: > > Hi, > > I got 3 differents input named input_1, i

technique about using thread in views.py

2012-01-02 Thread Kay
owing is the code I used. What's wrong with my code Any tips? Thanks. Kay --- from django.http import HttpResponse from django.shortcuts import render_to_response from django.core.context_processors import

Re: how to use asyncore socket in django views.py

2011-12-27 Thread Kay
Hello~ I need to run the python django project and meanwhile accept the socket connection from somewhere to receive data. But I dont know is this can be done,so any tips if this is possible? thanks~ kay On 12月27日, 下午4時34分, Vovk Donets wrote: > For what you need this? > Maybe you

how to use asyncore socket in django views.py

2011-12-22 Thread Kay
.0.1',1234) asyncore.loop() then how to use this in my django project views.py to let it automatically work for receiving connection while i start the project as "python manage.py runserver [port]"?? thanks kay -- You received th