master
cynic 3 years ago
parent 876c96e829
commit 408ccca866
  1. 8
      main.py

@ -0,0 +1,8 @@
import pandas, seaborn
from requests import get
try: open("creditcard.csv").read()
except FileNotFoundError:
print("downloading dataset...")
txt = get("https://the.silly.computer/creditcard.csv").text
open("creditcard.csv", "w").write(txt)
Loading…
Cancel
Save