summaryrefslogtreecommitdiff
path: root/box/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'box/__init__.py')
-rw-r--r--box/__init__.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/box/__init__.py b/box/__init__.py
new file mode 100644
index 0000000..7cd918f
--- /dev/null
+++ b/box/__init__.py
@@ -0,0 +1,24 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+__author__ = "Chris Griffith"
+__version__ = "7.3.2"
+
+from box.box import Box
+from box.box_list import BoxList
+from box.config_box import ConfigBox
+from box.exceptions import BoxError, BoxKeyError
+from box.from_file import box_from_file, box_from_string
+from box.shorthand_box import SBox, DDBox
+import box.converters
+
+__all__ = [
+ "Box",
+ "BoxList",
+ "ConfigBox",
+ "BoxError",
+ "BoxKeyError",
+ "box_from_file",
+ "SBox",
+ "DDBox",
+]