Re:

2019-11-28 Thread Integr@te System
Hi Kasper, dont serious here is group to share knowledges. On Fri, Nov 29, 2019, 02:52 Kasper Laudrup wrote: > Hi "Guy" > > On 28/11/2019 20.35, Integr@te System wrote: > > Hi guy, > > > > also see df1 go to GC when conn.close() > > > > I think you answered the wrong person here. I cannot see

Re:

2019-11-28 Thread Kasper Laudrup
Hi "Guy" On 28/11/2019 20.35, Integr@te System wrote: Hi guy, also see df1 go to GC when conn.close() I think you answered the wrong person here. I cannot see how this is related to my answer. Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the

Re:

2019-11-28 Thread Integr@te System
Hi guy, also see df1 go to GC when conn.close() On Fri, Nov 29, 2019, 02:31 Kasper Laudrup wrote: > Hi Rajat, > > On 28/11/2019 07.06, RAJAT MAAN wrote: > > > > > > can someone help me where I am getting wrong? Unable to compare df1 == > df2. > > > > I don't see how this is related to Django.

Re:

2019-11-28 Thread Kasper Laudrup
Hi Rajat, On 28/11/2019 07.06, RAJAT MAAN wrote: can someone help me where I am getting wrong? Unable to compare df1 == df2. I don't see how this is related to Django. You'll probably have a much better chance of getting help if you ask in the relevant forum/mailing list. Kind regards,

Re: Monitoring Production Cookiecutter-Django

2019-11-28 Thread Integr@te System
Promethus: https://hub.docker.com/r/prom/prometheus/ On Thu, Nov 28, 2019, 20:40 Yoo wrote: > I’m using cookiecutter-django and Docker for production, and I’m looking > for some kind of monitoring package that comes with a GUI. My website is > heavy on memory for calculations, so I’m testing

Re: Choosing MySQL or PostGres on Heroku

2019-11-28 Thread Tim Johnson
On 11/27/19 6:53 PM, Leon Vaks wrote: Hello Tim, I was given the same advice to convert to PostgreSQL because PostgreSQL is Horizontally scalable. I did some research: Horizontal scaling means that you scale by adding more machines into your pool of resources whereas Vertical scaling means

Re:

2019-11-28 Thread Integr@te System
Hi man, plz show err msg. On Thu, Nov 28, 2019, 18:08 RAJAT MAAN wrote: > > > can someone help me where I am getting wrong? Unable to compare df1 == df2. > > > import mysql.connector as mysql > import socket > import sys > > def server_program(): > HOST = '192.168.0.115' > PORT = > > s =

Re: Internship

2019-11-28 Thread Shubham Mishra
sir , I want to join internship program and I'm in delhi , so when I can meet you . Please reply me as soon as possible . On Sat, Nov 23, 2019, 13:26 Anirudh Jain wrote: > If anyone, based out of Delhi/NCR, is looking for an internship as a > Django developer, message me on telegram @i_m_root

Re: Internship

2019-11-28 Thread Shubham Mishra
sir , I want to join the internship program . Recently I have done my Python and Django course . Revert me as soon as possible. On Sat, Nov 23, 2019, 16:37 Atul Anand wrote: > Forward the resume. > > On Fri, Nov 22, 2019, 5:04 PM Scyil sharma > wrote: > >> I am sahil sharma, a student of btech

Re: Internship

2019-11-28 Thread Shubham Mishra
I also want to join internship and I'm OK to work at romete location On Sat, Nov 23, 2019, 02:14 Devender Kumar wrote: > Can I get your linkedin profile. And git repo links > > On Sat 23 Nov, 2019, 2:00 AM Elijah O. Raji, wrote: > >> Sir, I'm also interested in the internship as a backend

Monitoring Production Cookiecutter-Django

2019-11-28 Thread Yoo
I’m using cookiecutter-django and Docker for production, and I’m looking for some kind of monitoring package that comes with a GUI. My website is heavy on memory for calculations, so I’m testing it with locust.io. I want to be able to monitor a bunch of things such as firewall for SIEM and

Re:

2019-11-28 Thread Saswat Ray
Without looking your code and folder structure its hard to tell. *Thanks*, *Saswat* On Thu, Nov 28, 2019 at 5:59 PM vaneet bawa wrote: > First of all thanks Saswat for the response but i have already done this > thing on my views.py but my html file is not displaying anything rather it >

Re:

2019-11-28 Thread Integr@te System
Hi man, where ur template coming from!? to display content you want to. On Thu, Nov 28, 2019, 19:28 vaneet bawa wrote: > First of all thanks Saswat for the response but i have already done this > thing on my views.py but my html file is not displaying anything rather it > throws an exception

Re:

2019-11-28 Thread vaneet bawa
First of all thanks Saswat for the response but i have already done this thing on my views.py but my html file is not displaying anything rather it throws an exception templatedoesnot exit I hope you are geeting what i am saying Best Regards Vaneet > On 28-Nov-2019, at 5:42 PM, Saswat Ray

Re:

2019-11-28 Thread Saswat Ray
Django app expects a response from your view file to render and show to user.You need add a template to render. like in views.py return render(request, "xyz.html") https://docs.djangoproject.com/en/2.2/topics/http/shortcuts/ render *Thanks*, *Saswat* On Thu, Nov 28, 2019 at 5:35 PM vaneet

[no subject]

2019-11-28 Thread vaneet bawa
Exception Type: TemplateDoesNotExist Could someone please tell me that i m getting this error how I can handle it... what i m trying to do is i have created a input field and in that field i m providing a message and then i want that on button click that message should be displayed on my

Django retry query when error.

2019-11-28 Thread Mateusz MTB90
Hi it is possible to catch e.g connection error and retry query in Django 2.2? -- 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

Retrying query when connection error

2019-11-28 Thread Mateusz MTB90
Hi It is possible to catch connection error in Django and retry query? How this can be done? Scenario: query -> connection error occurs -> catch connection error -> create new connection -> retry query -- You received this message because you are subscribed to the Google Groups "Django

Re: Choosing MySQL or PostGres on Heroku

2019-11-28 Thread Leon Vaks
Hello Tim, I was given the same advice to convert to PostgreSQL because PostgreSQL is Horizontally scalable. I did some research: Horizontal scaling means that you scale by adding more machines into your pool of resources whereas Vertical scaling means that you scale by adding more power (CPU,

Re: basic_app not provide the User how to reslove ?

2019-11-28 Thread nikitha malkapuram
In models.py in onetoone field remove User from quotes. It is now 'User' make it to User and try once. On Thu 28 Nov, 2019, 9:41 AM MEGA NATHAN, wrote: > Hi. > > > > PS C:\Users\Meghanathan\Desktop\django\django_levelfive\learning_users> > python manage.py migrate basic_app > SystemCheckError:

Re: Internship

2019-11-28 Thread Dvs Khamele
Hello We do interns for our firm Pythonmate, Interested candidates please do share resumes at pythonmatedivy...@gmail.com Many Thanks, Divyesh Khamele On Thu, 28 Nov 2019 at 08:37, Aniket Jain wrote: > Yes I already have an experience with remote working > > On Thu, 28 Nov, 2019, 2:17 AM John

Re:

2019-11-28 Thread RAJAT MAAN
can someone help me where I am getting wrong? Unable to compare df1 == df2. import mysql.connector as mysql import socket import sys def server_program(): HOST = '192.168.0.115' PORT = s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) print('socket created') try:

Re: basic_app not provide the User how to reslove ?

2019-11-28 Thread Forrest Hartley
You don't have a model called "user". On Wed, Nov 27, 2019 at 11:11 PM MEGA NATHAN wrote: > Hi. > > > > PS C:\Users\Meghanathan\Desktop\django\django_levelfive\learning_users> > python manage.py migrate basic_app > SystemCheckError: System check identified some issues: > > ERRORS: >

Re: basic_app not provide the User how to reslove ?

2019-11-28 Thread Vignesh Kumar
machii nee return panrathu andha model la iruka field tha return pananum.. *return self.User* On Thu, Nov 28, 2019 at 9:41 AM MEGA NATHAN wrote: > Hi. > > > > PS C:\Users\Meghanathan\Desktop\django\django_levelfive\learning_users> > python manage.py migrate basic_app > SystemCheckError: System