Browse Source

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

Mario Hüttel 3 years ago
parent
commit
fdcc35174f
1 changed files with 1 additions and 1 deletions
  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')