Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
1 Antworten
2521 Ansichten

I have a button where I can attach a csv file and load a series of data contained in this file. However, I would like that once the file is read, the file is stored in another variable of the Binary type so that it can be viewed later. How could I do this? My code to read the csv file is the following:

csv_data = base64.b64decode(self.purchase_order_file)
data_file = io.StringIO(csv_data.decode("utf-8"))
data_file.seek(0)
file_reader = []
csv_reader = csv.reader(data_file, delimiter=',')
file_reader.extend(csv_reader)

Avatar
Verwerfen
Beste Antwort

Hi, you want to save your file in ir_attachment after read ?


Gus

Avatar
Verwerfen
Autor

Yes, how can i do this after mi code?

Verknüpfte Beiträge Antworten Ansichten Aktivität
1
März 24
2172
1
Nov. 23
4154
3
Jan. 25
4001
2
Mai 24
2460
2
Mai 24
2353