|
Last change
on this file was
1209,
checked in by hodgestar, 11 years ago
|
|
Bump version number and add new section to ChangeLog.
|
-
Property svn:eol-style set to
native
|
|
File size:
935 bytes
|
| Rev | Line | |
|---|
| [2] | 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # |
|---|
| [1075] | 3 | # Copyright (C) 2006-2009 Edgewall Software |
|---|
| [2] | 4 | # All rights reserved. |
|---|
| 5 | # |
|---|
| 6 | # This software is licensed as described in the file COPYING, which |
|---|
| 7 | # you should have received as part of this distribution. The terms |
|---|
| [287] | 8 | # are also available at http://genshi.edgewall.org/wiki/License. |
|---|
| [2] | 9 | # |
|---|
| 10 | # This software consists of voluntary contributions made by many |
|---|
| 11 | # individuals. For the exact contribution history, see the revision |
|---|
| [287] | 12 | # history and logs, available at http://genshi.edgewall.org/log/. |
|---|
| [2] | 13 | |
|---|
| 14 | """This package provides various means for generating and processing web markup |
|---|
| 15 | (XML or HTML). |
|---|
| 16 | |
|---|
| 17 | The design is centered around the concept of streams of markup events (similar |
|---|
| 18 | in concept to SAX parsing events) which can be processed in a uniform manner |
|---|
| 19 | independently of where or how they are produced. |
|---|
| 20 | """ |
|---|
| 21 | |
|---|
| [517] | 22 | __docformat__ = 'restructuredtext en' |
|---|
| [1209] | 23 | __version__ = '0.8' |
|---|
| [516] | 24 | |
|---|
| [287] | 25 | from genshi.core import * |
|---|
| 26 | from genshi.input import ParseError, XML, HTML |
|---|
Note: See
TracBrowser
for help on using the repository browser.