From c2e195845ed23f79aa98d63075f629355cc3ed30 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 1 Feb 2023 04:20:09 +0100 Subject: [PATCH] Second commit --- .gitignore | 3 +- .idea/inspectionProfiles/Project_Default.xml | 12 + .idea/misc.xml | 2 +- data/scripts/import-db.sh | 3 + data/scripts/run-db.sh | 3 + poetry.lock | 372 +++++++++++++++++++ pyproject.toml | 3 + unimore-bda-6.iml | 7 +- unimore_bda_6/__main__.py | 3 +- unimore_bda_6/analysis.py | 14 + unimore_bda_6/config.py | 37 ++ unimore_bda_6/database.py | 101 +++++ 12 files changed, 556 insertions(+), 4 deletions(-) create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100755 data/scripts/import-db.sh create mode 100755 data/scripts/run-db.sh create mode 100644 poetry.lock create mode 100644 unimore_bda_6/analysis.py create mode 100644 unimore_bda_6/config.py create mode 100644 unimore_bda_6/database.py diff --git a/.gitignore b/.gitignore index a2c3170..f11c9ac 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,8 @@ # Add your own ignores here! - +data/raw/ +data/db/ ################## # Python ignores # diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..06bb031 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 2ca2389..c31251c 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -4,7 +4,7 @@