Posts by Gilberto Araujo Gomes Junior • 1 point
3 posts
-
-2
votes1
answer40
viewsA: Error while converting bytes file into literal string in python
Simpler solution than I thought. I was converting to utf-8 which is the standard python when no argument passed in the Decode function. was just changed to utf-16 and the problem was gone…
-
-3
votes1
answer40
viewsQ: Error while converting bytes file into literal string in python
I select to bring an xml file that is stored as a blob in the oracle database. I read the file and save the contents in a variable. When checking the type of the variable is of type bytes. I do the…
-
0
votes1
answer705
viewsQ: Last record of each Django object
I am developing a web application in Python, Django and Sqlite. I have two models, one for "Seller" and one for "Orders". I need to take the last order of each seller and I’m not able to do this…