Skip to content

Commit

Permalink
Skip SSL check for download bikes dataset.
Browse files Browse the repository at this point in the history
  • Loading branch information
Liraim committed Nov 13, 2023
1 parent f34a873 commit 2843806
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/evidently/ui/demo_projects/bikes.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@


def create_data():
content = requests.get("https://archive.ics.uci.edu/static/public/275/bike+sharing+dataset.zip").content
content = requests.get(
"https://archive.ics.uci.edu/static/public/275/bike+sharing+dataset.zip",
verify=False,
).content
with zipfile.ZipFile(io.BytesIO(content)) as arc:
raw_data = pd.read_csv(
arc.open("hour.csv"),
Expand Down

0 comments on commit 2843806

Please sign in to comment.