PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
def main():
buffer = getFile("https://raw.githubusercontent.com/justmarkham/pandas-videos/master/data/ufo.csv")
# Your code goes here:
print(buffer[:1000] +
"..." if len(buffer)>1000 else "<<<end")
##########################################
# IGNORE all this basically.
# All your code goes above, after getFile()
# Version 0.3 (beta)
from urllib.parse import urlparse
import socket, ssl
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run