Created
July 17, 2018 14:31
-
-
Save thilohuellmann/cc7b09230b112f5e5eab0f83dec0f4a0 to your computer and use it in GitHub Desktop.
This file contains 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
# 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