Преглед изворни кода

nmake pandas convert the CSV correctly as strings and not as numbers when inputing case sizes like 0603

Mario Hüttel пре 3 година
родитељ
комит
fdcc35174f
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      print_labels_from_csv.py

+ 1 - 1
print_labels_from_csv.py

@@ -6,7 +6,7 @@ import os
 medir = os.path.dirname(__file__)
 example_data_path = os.path.join(medir, 'labels.csv')
 
-df = pd.read_csv(example_data_path)
+df = pd.read_csv(example_data_path, converters={i: str for i in range(3)})
 
 printer = ql_wrapper.BrotherQlPrinter(model='QL-800', printer_connection='usb://0x04f9:0x209b')