Skip to content

Commit 3494a22

Browse files
committed
ADd the actual baseline file.
1 parent 1157cdd commit 3494a22

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from pathlib import Path
2+
import zipfile
3+
import wget
4+
5+
from pybool_ir.datasets.ctgov.datautils import CTGOV_URL
6+
7+
def download_baseline(path: Path):
8+
wget.download(CTGOV_URL)
9+
with zipfile.ZipFile("ctg-public-xml.zip", "r") as f:
10+
f.extractall(path)
11+

0 commit comments

Comments
 (0)