diff options
Diffstat (limited to 'importutils/import.py')
| -rw-r--r-- | importutils/import.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/importutils/import.py b/importutils/import.py new file mode 100644 index 0000000..e2aa14a --- /dev/null +++ b/importutils/import.py @@ -0,0 +1,9 @@ +import os +import sys + +RAW_DATA_BASE_DIR = "/base/dir/location" # update this + +def importYear(year): + yearDir = os.path.join(RAW_DATA_BASE_DIR, str(year)) + print + |
