Re: Celery tutorial

2021-10-26 Thread waqar khan
codewithharry geekyshows dennis lvy This is youtube channel name On Tue, Oct 26, 2021 at 9:34 PM parag gupta wrote: > Is there any good celery tutorial that might help? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Re: help

2021-10-26 Thread waqar khan
pip uninstall django On Tue, Oct 26, 2021 at 6:41 PM Kasper Laudrup wrote: > On 26/10/2021 13.53, machine learning wrote: > > Uninstall it and install it again. > > > > What? > > I think you're replying to the wrong person, but what do you think > uninstalling and reinstalling would achieve?

Mouse movement detection and processing from client UI

2021-10-26 Thread Tristania W
So there are Python packages out there that can handle mouse movement detection locally. But for a Django app, how do we go about do this? Clearly we cannot have any processing power on the client machine. Below are some examples to be more specific: 1 - An e-commerce page where buyer clicks,

Re: Celery tutorial

2021-10-26 Thread pankaj palmate
Simple is better' than complex article On Tue, 26 Oct, 2021, 9:33 pm parag gupta, wrote: > Is there any good celery tutorial that might help? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop

Re: Celery tutorial

2021-10-26 Thread Miracle
Check this out: https://realpython.com/asynchronous-tasks-with-django-and-celery/ https://www.youtube.com/watch?v=THxCy-6EnQM https://www.section.io/engineering-education/django-celery-tasks/ On Tue, Oct 26, 2021 at 5:04 PM parag gupta wrote: > Is there any good celery tutorial that might help?

Celery tutorial

2021-10-26 Thread parag gupta
Is there any good celery tutorial that might help? -- 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

Re: help

2021-10-26 Thread Akash Verma
Use python -m django-admin startproject On Tue 26 Oct, 2021, 3:45 PM Kasper Laudrup, wrote: > On 25/10/2021 21.59, Planet X wrote: > > hey there i can not figure out while django is installed to but its > > showing django-admin is not recongnized as an internal or external > > command please

Re: Mozilla Django Tutorial.

2021-10-26 Thread Luigi Cleffi
Can you send me the path to find ? Em ter., 26 de out. de 2021 10:31, KUYESO ROGERS <2019bce...@std.must.ac.ug> escreveu: > Class Model name(models.Model): > > > Please show your code > > On Tue, Oct 26, 2021, 3:47 PM Cheikh SOW wrote: > >> Hello everyone, >> >> I'm new to Django and I'm

Re: Modeform Foreign key column not working

2021-10-26 Thread Aruna Priya Nagarajan
Hi, I am trying to save the model form and getting error that foreign key column is not there. *Error:* column "connection_type_id" of relation "connection_details_test" does not exist ( There is no column connection_type_id, why its looking for this column, should I change my model?)

Re: CRUD OPERATION CLASS BASED API

2021-10-26 Thread Avinash Alanjakar
Hello, You can refer this repo. https://github.com/mrAvi07/drf-blog-api On Sat, 23 Oct 2021 at 07:22, Lahu Chavan wrote: > Hey DjangoUsersConnection, > How to use common(single) url for combining ADD, UPDATE, GET, > DELETE class based api. please give me an example with brief

Re: help

2021-10-26 Thread Luigi Cleffi
First of all you need to activate your virtual envirolment before installing python on your machine. To do that you need to run on your cmd ou terminal.:"python3 -m venv env && cd env\scripts\activate" than you install django with The following code: "pip install django". To make sure that django

Re: Mozilla Django Tutorial.

2021-10-26 Thread Luigi Cleffi
Try "pip freeze > requirements.txt" if YouTube already have this requirements file. Try: "pip install -r requirements.txt". If it doesn't work, you may need tô reinstall django because that is a package error. Em ter., 26 de out. de 2021 09:46, Cheikh SOW escreveu: > Hello everyone, > > I'm new

Re: Mozilla Django Tutorial.

2021-10-26 Thread KUYESO ROGERS
Class Model name(models.Model): Please show your code On Tue, Oct 26, 2021, 3:47 PM Cheikh SOW wrote: > Hello everyone, > > I'm new to Django and I'm currently following the Mozilla tutorial to be > familiar with this Python written framework. > > The issue I have is that after building my

Re: help

2021-10-26 Thread Kasper Laudrup
On 26/10/2021 13.53, machine learning wrote: Uninstall it and install it again. What? I think you're replying to the wrong person, but what do you think uninstalling and reinstalling would achieve? Kind regards, Kasper Laudrup -- You received this message because you are subscribed to

Re: help

2021-10-26 Thread Mohammad Naebi
> > > Hi > Enter the virtual environment first > Write the following command in your terminal or shell > pip freeze All the modules you have installed will be shown to you along with the version. -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: help

2021-10-26 Thread machine learning
Uninstall it and install it again. On Tue, 26 Oct 2021 at 03:15, Kasper Laudrup wrote: > On 25/10/2021 21.59, Planet X wrote: > > hey there i can not figure out while django is installed to but its > > showing django-admin is not recongnized as an internal or external > > command please help >

Mozilla Django Tutorial.

2021-10-26 Thread Cheikh SOW
Hello everyone, I'm new to Django and I'm currently following the Mozilla tutorial to be familiar with this Python written framework. The issue I have is that after building my database models and typing : '*python3 manage.py makemigrations*' I get the error "*AttributeError: 'Model'

Re: help

2021-10-26 Thread Boateng Isaac
If you're using a virtual environment try installing django in that environment again On Mon, 25 Oct 2021, 7:59 pm Planet X, wrote: > hey there i can not figure out while django is installed to but its > showing django-admin is not recongnized as an internal or external command > please help >

Re: help

2021-10-26 Thread Kasper Laudrup
On 25/10/2021 21.59, Planet X wrote: hey there i can not figure out while django is installed to but its showing django-admin is not recongnized as an internal or external command please help How did you install Django? What OS are you using? A bit of information like that would make it

Re: how to solve that type of error

2021-10-26 Thread Kasper Laudrup
On 25/10/2021 20.54, Ashutosh Gayakwad wrote: Using the URLconf defined in shop.urls, Django tried these URL patterns, in this order By creating the correct URL mappings in your shop.urls file: https://docs.djangoproject.com/en/3.2/topics/http/urls/ Kind regards, Kasper Laudrup -- You