Posts by Arcyde • 41 points
4 posts
-
0
votes0
answers27
viewsQ: How to correct __imp errors?
I found on github an HTTP/HTTPS library header (https://github.com/yhirose/cpp-httplib), which says it is only necessary to import it into the archive and use it. I created the code: #include…
-
1
votes0
answers76
viewsQ: REQUEST POST
Greetings, I have a test python server: from flask import request, Flask app = Flask (__name__) @app.route ('/Teste', methods=['POST']) def teste(): recebido = request.form['variavel']…
-
2
votes3
answers75
viewsQ: Add Character at the end of the line
Greetings, when I add a ";" to the end of the file, even if I specify that it is not to add if I am done with it, it is still added: newf="" with open('teste.txt','r') as f: for line in f: lastchar…
-
0
votes0
answers40
viewsQ: Is it possible to select periods from a table in a select without subquery?
Greetings, I wonder if it is possible to select a table period without using a subquery as an example below: Select Usuario, Divida.Janeiro , Divida.Fevereiro, Divida.Marco ... from Usuarios a left…