You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fraud_detection/main.py

8 lines
253 B

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)