Posts by brunocpradom • 21 points
4 posts
-
1
votes2
answers67
viewsQ: Is there a better way to deal with relational and non-relational databases in the same project?
I am refactoring a code, where I process some data and send it to a database. I have two versions. One where I use Mongodb and the other where I use Mysql. But I’d like to put the two versions…
-
0
votes0
answers68
viewsQ: Docker Compose - pymongo - server_type:Unknown
I want to place my application in TWO Docker containers. One with mongodb (official image) and one with the Ubuntu image, which runs a series of scripts to populate the database. I’m having trouble…
-
0
votes3
answers2351
viewsA: Import csv with pandas. Column values with semicolon. What to do?
I solved the mystery! The problem was not pandas. But rather the way he was supervising the generated tables. When he opened the file. csv in libre office, the program initially asked to choose…
-
-2
votes3
answers2351
viewsQ: Import csv with pandas. Column values with semicolon. What to do?
I’m importing CSV files with pandas to do a data wipe. And I’m finding a problem. Some values have ';' . For example: df[0][1] = "STREET A ; " I import csv through: df = pd.read_csv('GUAXUPE.csv',…