Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 1.13 KB

File metadata and controls

5 lines (5 loc) · 1.13 KB
1
python fetch file on GitHubimport requests<newline>contractions ='https://raw.githubusercontent.com/mooerslab/voice-in-plus-contractions/main/contractions.csv'<newline>with open('contractions.csv', 'w') as file:<newline> r = requests.get(contractions)<newline> file.write( r.text)