Posts by marloswn • 19 points
7 posts
-
0
votes1
answer27
viewsA: How to generate several Zips dynamically in memory, with Python?
Fixed problem: basically, it was necessary to open only one Zipfile (instead of 2, as shown above) in memory, and go saving the files according to the key. After the loop, the memory pointer of the…
-
-2
votes1
answer27
viewsQ: How to generate several Zips dynamically in memory, with Python?
I am reading a Python dataframe, and for each row of it, I need to save the column that contains an XML in a file, in memory, to later zip these files. So far so good. The point is that I need to…
-
0
votes1
answer25
views -
-1
votes1
answer25
viewsQ: How to create a directory structure in memory with Python?
Hello. I have the following scenario: I am reading a dataframe, which has a column with Xmls. I am writing these Xmls to files. xml separately, to later save them in a certain folder structure and…
-
-1
votes1
answer151
views -
0
votes0
answers40
viewsQ: How to zip files on a Cloud Storage Bucket using Python?
Good morning guys! I need to zip the files present in a particular Cloud Storage Pack. I have tried several alternatives, but so far unsuccessful. Please, could you help me with this question? At…
-
0
votes2
answers312
viewsQ: How to fill a column of a DF Pandas using, as a comparison, a specific column between this and another DF?
I have a Pandas dataframe, in which I need to add a new column called codprojeto. To do this, I created this new column and inserted zeros, so that it has the type int64, as follows:…