Re: Django Chat Help

2019-04-21 Thread PARTH PATIL
You can refer to this video tutorial, I found this pretty useful. https://youtu.be/Wv5jlmJs2sU This uses django channels to implement a asynchronous chat app. Best Regards, PARTH PATIL On Sun, 21 Apr 2019, 8:20 pm Fahad Bin Munir, wrote: > how to create chatting system using api in dj

Re: Integrating Machine Learning Model in Django

2019-04-11 Thread PARTH PATIL
Assuming that you have to do all the processing locally on your server computer. Best Regards, PARTH PATIL On Thu, 11 Apr 2019, 1:29 pm Aakash Baranwal, wrote: > Hi Everybody, > > I need a help in integrating a machine learning model with my website. > > I have a file upload but

Re:

2019-02-20 Thread PARTH PATIL
Hey bhushan you might be running the command in wrong directory, open the terminal into the django project directory and and then run ./manage.py runserver If you are still stuck you can upload some screenshots so that we can better help you On Wednesday, February 20, 2019 at 5:46:58 PM

Upgrading project from Django 1.11 to 2.1

2019-02-10 Thread PARTH PATIL
Six.text_types is used to represent unicode() in python2 and str in python3. And now you are only using python3, it would be safe to replace it with str() -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

REST Framework alternatives

2019-02-05 Thread PARTH PATIL
I agree that indeed REST Framework has a decent learning curve, but i would say it is worth a shot if you only have to do validation it will handle it like magic with very few lines of code. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Help to get started with Gsoc 2019

2018-10-25 Thread PARTH PATIL
Hey i am* Parth Patil*, a second year undergraduate engineer. I have been using django since the last year and had done many cool projects with it, also I'm cureently a maintainer for 3 websites as well. I am willing to participate in* GSoC 2019*. I thought this would be a good time to start

I Suck

2018-10-24 Thread PARTH PATIL
Hey don't get disheartened, even i faced the same problem when i was learning django for the first time. I will just you don't rush things. Just try doing some small things first. You can change a few lnes from example code and see how it affects the system. This kind of things really help.