cmlenz@1: # -*- coding: utf-8 -*- cmlenz@1: # cmlenz@852: # Copyright (C) 2006-2009 Edgewall Software cmlenz@1: # All rights reserved. cmlenz@1: # cmlenz@1: # This software is licensed as described in the file COPYING, which cmlenz@1: # you should have received as part of this distribution. The terms cmlenz@230: # are also available at http://genshi.edgewall.org/wiki/License. cmlenz@1: # cmlenz@1: # This software consists of voluntary contributions made by many cmlenz@1: # individuals. For the exact contribution history, see the revision cmlenz@230: # history and logs, available at http://genshi.edgewall.org/log/. cmlenz@1: cmlenz@1: """This package provides various means for generating and processing web markup cmlenz@1: (XML or HTML). cmlenz@1: cmlenz@1: The design is centered around the concept of streams of markup events (similar cmlenz@1: in concept to SAX parsing events) which can be processed in a uniform manner cmlenz@1: independently of where or how they are produced. cmlenz@1: """ cmlenz@1: cmlenz@425: __docformat__ = 'restructuredtext en' cmlenz@901: __version__ = '0.7' cmlenz@424: cmlenz@230: from genshi.core import * cmlenz@230: from genshi.input import ParseError, XML, HTML