From 452c31a9768419ab8521e7edee8179eb4ebaeef1 Mon Sep 17 00:00:00 2001 From: Hiromichi MATSUSHIMA Date: Thu, 28 Jul 2011 19:59:26 +0900 Subject: [PATCH] fix auto-import htmltree.py --- __init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/__init__.py b/__init__.py index e69de29..fca68f4 100644 --- a/__init__.py +++ b/__init__.py @@ -0,0 +1,16 @@ +# Copyright (c) 2011 hylom +# All rights reserved. +# +# This module is released under BSD License. +# http://www.opensource.org/licenses/bsd-license.php +# +"""htmltree module + +Parse and convert HTML to tree-style object +""" +#__all__ = ["htmltree"] + +import htmltree +from htmltree import parse + +version = (0, 2, 1) -- 2.11.0