Changes between Version 9 and Version 10 of PyYAML
- Timestamp:
- 05/07/06 10:56:29 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PyYAML
v9 v10 16 16 * a '''complete''' [http://yaml.org/spec/cvs/current.html YAML 1.1] parser. 17 17 In particular, PyYAML can parse all examples from the specification. 18 The parsing algorithm is simple enough to be ported to C or other language.18 The parsing algorithm is simple enough to be a reference for YAML parser implementors. 19 19 * Unicode support including UTF-8/UTF-16 input/output and '''\u''' escape sequences. 20 * event-based parser and emitter API (like SAX).20 * low-level event-based parser and emitter API (like SAX). 21 21 * high-level API for serializing and deserializing native Python objects (like DOM or pickle). 22 22 * support for all types from the [http://yaml.org/type/index.html YAML types repository]. … … 35 35 == Download and Installation == 36 36 37 You may check out PyYAML code from the Subversion repository 37 The current stable release of PyYAML: '''3.01'''. 38 39 Download links: 40 41 * '''TAR.GZ package''': http://pyyaml.org/download/pyyaml/PyYAML-3.01.tar.gz 42 * '''ZIP package''': http://pyyaml.org/download/pyyaml/PyYAML-3.01.zip 43 * '''Windows installer''': http://pyyaml.org/download/pyyaml/PyYAML-3.01.win32.exe 44 45 Unpack the archive and install the package by executing 46 {{{ 47 $ python setup.py install 48 }}} 49 50 You may check out the latest development code of PyYAML from the Subversion repository 38 51 http://svn.pyyaml.org/pyyaml/trunk 39 52 40 53 {{{ 41 54 $ svn checkout http://svn.pyyaml.org/pyyaml/trunk pyyaml-trunk 42 }}}43 44 Install it by running45 {{{46 $ python setup.py install47 55 }}} 48 56
