summaryrefslogtreecommitdiffstats
path: root/pendulum/tz/zoneinfo/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pendulum/tz/zoneinfo/__init__.py')
-rw-r--r--pendulum/tz/zoneinfo/__init__.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/pendulum/tz/zoneinfo/__init__.py b/pendulum/tz/zoneinfo/__init__.py
new file mode 100644
index 0000000..890351a
--- /dev/null
+++ b/pendulum/tz/zoneinfo/__init__.py
@@ -0,0 +1,16 @@
+from .reader import Reader
+from .timezone import Timezone
+
+
+def read(name, extend=True): # type: (str, bool) -> Timezone
+ """
+ Read the zoneinfo structure for a given timezone name.
+ """
+ return Reader(extend=extend).read_for(name)
+
+
+def read_file(path, extend=True): # type: (str, bool) -> Timezone
+ """
+ Read the zoneinfo structure for a given path.
+ """
+ return Reader(extend=extend).read(path)