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
import json | |
import sys | |
import csv | |
from urllib import request | |
counter = 0 | |
f = open('followers.csv','w',encoding='utf-8',newline="\n") | |
mywriter = csv.writer(f,dialect='excel',quoting=csv.QUOTE_MINIMAL) | |
mywriter.writerow(['Followed At (UTC)','Notifications?','User ID','User Name','User Created At (UTC)','User Updated At (UTC)','Display Name','Logo URL','Bio','User Type']) |