Skip to main content
1 of 3
meck373
  • 1.1k
  • 1
  • 19
  • 32

You have to change from wb to w:

def __init__(self): self.myCsv = csv.writer(open('Item.csv', 'wb')) self.myCsv.writerow(['title', 'link']) 

to

def __init__(self): self.myCsv = csv.writer(open('Item.csv', 'w')) self.myCsv.writerow(['title', 'link']) 
meck373
  • 1.1k
  • 1
  • 19
  • 32