Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cairoplot/handlers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'cairoplot/handlers/__init__.py')
-rwxr-xr-xcairoplot/handlers/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/cairoplot/handlers/__init__.py b/cairoplot/handlers/__init__.py
new file mode 100755
index 0000000..364fb90
--- /dev/null
+++ b/cairoplot/handlers/__init__.py
@@ -0,0 +1,10 @@
+__all__ = ["handler", "png", "pdf", "ps", "svg", "vector"]
+
+# default handlers
+from .handler import Handler
+from .png import PNGHandler
+from .pdf import PDFHandler
+from .ps import PSHandler
+from .svg import SVGHandler
+from .vector import VectorHandler
+