diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2010-10-10 17:47:46 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2010-10-10 17:47:46 +0200 |
| commit | df8888dfc2fbb462122a1f4d8ff847ea9dfeca2d (patch) | |
| tree | 19c0c58263b444d745ced836f50d18ca327dd69e /importutils/import.py | |
| parent | 98a562c9c7391b1fbf601a032d360e8710dcd3db (diff) | |
added import utility
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 + |
