My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Natural Language Toolkit: Support for OLAC Metadata
#
# Copyright (C) 2001-2011 NLTK Project
# Author: Steven Bird <sb@csse.unimelb.edu.au>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT


from StringIO import StringIO

def read_olac(xml):
"""
Read an OLAC XML record and return a list of attributes.

@param xml: XML string for conversion
@type xml: C{string}
@rtype: C{list} of C{tuple}
"""
from lxml import etree

root = etree.parse(StringIO(xml)).getroot()
return [(element.tag, element.attrib, element.text) for element in root.getchildren()]

def pprint_olac(xml):
for tag, attrib, text in read_olac(xml):
print "%-12s" % tag + ':',
if text:
print text,
if attrib:
print "(%s=%s)" % (attrib['type'], attrib['code']),
print

def demo():
from lxml import etree
import nltk.data

file = nltk.data.find('corpora/treebank/olac.xml')
xml = open(file).read()
pprint_olac(xml)

if __name__ == '__main__':
demo()

__all__ = ['read_olac', 'pprint_olac']

Change log

r8730 by StevenBird1 on Mar 7, 2011   Diff
Updated NLTK copyright year range from
2001-2010 to 2001-2011
Go to: 
Sign in to write a code review

Older revisions

r8479 by StevenBird1 on Jan 12, 2010   Diff
Updated copyright period to 2001-2010
r7460 by StevenBird1 on Jan 28, 2009   Diff
changed copyright period to 2001-2009
r7065 by StevenBird1 on Nov 29, 2008   Diff
Add www to nltk.org url globally.
New script for general-purpose
recursive substitution
in files tools/global_replace.py
All revisions of this file

File info

Size: 1102 bytes, 44 lines
Powered by Google Project Hosting