mirror of
https://github.com/sascha-hemi/spaceDevices.git
synced 2026-03-21 12:05:46 +01:00
13 lines
293 B
Python
Executable File
13 lines
293 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import csv
|
|
|
|
with open('oui.csv', newline='') as csvfile:
|
|
oui = csv.reader(csvfile, delimiter=',', quotechar='"')
|
|
skipFirst = True
|
|
for row in oui:
|
|
if skipFirst:
|
|
skipFirst = False
|
|
continue
|
|
print('%s,%s' % (row[1], row[2]))
|