Created
June 12, 2018 11:33
-
-
Save thilohuellmann/7e61162b755d349a9dc5838cffe99377 to your computer and use it in GitHub Desktop.
medium2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def addresses_from_csv(path=None, column=None): | |
addresses = [] | |
with open(path, 'r') as f: | |
reader = csv.reader(f) | |
for row in reader: | |
addresses.append(row[column]) | |
return addresses |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment