Skip to content

Instantly share code, notes, and snippets.

@thilohuellmann
Created July 17, 2018 14:31
Show Gist options
  • Save thilohuellmann/cc7b09230b112f5e5eab0f83dec0f4a0 to your computer and use it in GitHub Desktop.
Save thilohuellmann/cc7b09230b112f5e5eab0f83dec0f4a0 to your computer and use it in GitHub Desktop.
# Writing the results to a CSV file
with open('linkedin.csv', 'w', newline='', encoding='utf-8') as f:
writer = csv.writer(f)
for row in linkedin:
writer.writerow(row)
print('Number of LinkedIn profiles found:')
print(len(linkedin))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment