Posts by Johann Albino • 5 points
2 posts
-
0
votes1
answer57
viewsQ: Django application (NGINX and WSGI) consuming only one core, reaching 100% and locking
I have a problem that I have deployed with NGINX and UWSGI on a debian 9 with 24 cores, the application is simply running correctly, but when I upload an excel file the application is using only one…
-
0
votes1
answer255
viewsQ: Generate Python CSV from txt
I’m trying to run the code: import csv listaG = [] arquivoSaida = 'teste.csv' with open('Arquivos_avanco.txt', newline='') as csvfile: spamreader = csv.reader(csvfile, delimiter='-', quotechar='|')…