aboutsummaryrefslogtreecommitdiffstats
path: root/python/collateral/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/collateral/__init__.py')
-rw-r--r--python/collateral/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/python/collateral/__init__.py b/python/collateral/__init__.py
new file mode 100644
index 00000000..d33b2db4
--- /dev/null
+++ b/python/collateral/__init__.py
@@ -0,0 +1,10 @@
+import sys
+
+sys.path.append("..")
+try:
+ from env import DAILY_DIR, LOG_DIR
+except KeyError:
+ sys.exit("Please set 'DAILY_DIR' and 'LOG_DIR' in the environment")
+
+from exchange import ExchangeMessage
+from dates import bus_day