From b532ed96e644c96b4a7cb5f81a7805510db04258 Mon Sep 17 00:00:00 2001 From: Hao Lyu <20434183+IncubatorShokuhou@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:31:17 +0800 Subject: [PATCH] Update README.md (#57) * Update README.md AttributeError: module 'tsdb' has no attribute 'list_available_datasets' . It seems that `list_available_datasets` has been replaced to `list` --------- Co-authored-by: Wenjie Du --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da70e57..4673ee4 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ GitHub Repo stars - GitHub Repo forks + GitHub Repo forks Code Climate maintainability @@ -81,7 +81,7 @@ or install from source code: import tsdb # list all available datasets in TSDB -tsdb.list_available_datasets() +tsdb.list() # select the dataset you need and load it, TSDB will download, extract, and process it automatically data = tsdb.load('physionet_2012') # if you need the raw data, use download_and_extract()