Skip to content

Instantly share code, notes, and snippets.

@hwrdprkns
Last active December 16, 2015 11:38
Show Gist options
  • Save hwrdprkns/5428706 to your computer and use it in GitHub Desktop.
Save hwrdprkns/5428706 to your computer and use it in GitHub Desktop.
moved = {}
for file in args.files:
current_week_dict = csv.DictReader(file, dialect='excel')
for current_row in current_week_dict:
symbol = current_row['Symbol']
if moved.has_key(symbol):
#Do some logic stuff.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment