We are using Google App Engine with Python for our application. I already wrote code that exports data to CSV, using the csv module. But when I try to read from the CSV:
import csv
users_csv_file = self.request.get("users_csv_file")
csv_reader = csv.reader(users_csv_file)
I get this exception:
AttributeError: 'module' object has no attribute 'reader'
What is the problem and why can't I import csv?