I\'m trying to compile a list of all the MAC address Apple devices will have. oui.txt tells me Apple has been assigned 77 MAC ranges to use. These ranges come i
oui.txt
Don't use readlines
with file('apple mac list') as f: for x in f: print x