Package Pyblio :: Package Parsers :: Package Syntax :: Module XMLEndNote :: Class Reader
[hide private]
[frames] | no frames]

Class Reader

source code

object --+
         |
        Reader

Instance Methods [hide private]
 
clean_tag(self, tag) source code
 
process_children(self, elem) source code
 
style_genocide(self, elem) source code
 
record_begin(self) source code
 
record_end(self) source code
 
do_default(self, elem) source code
 
add(self, field, value)
Use this function to add anything to your record.
source code
 
id_add(self, field, value)
Deprecated: use add instead.
source code
 
text_add(self, field, value)
Deprecated: use add instead.
source code
 
url_add(self, field, value)
Deprecated: use add instead.
source code
 
person_add(self, field, value) source code
 
parse(self, fd, db) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]
  log = logging.getLogger('pyblio.import.xmlendnote')
  id2type = {0: 'Journal Article', 1: 'Book', 2: 'Thesis', 3: 'C...
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

add(self, field, value)

source code 
Use this function to add anything to your record. It's auto-typeing, even for Txo's.

Class Variable Details [hide private]

id2type

Value:
{0: 'Journal Article',
 1: 'Book',
 2: 'Thesis',
 3: 'Conference Proceedings',
 4: 'Personal Communication',
 5: 'Newspaper Article',
 6: 'Computer Program',
 7: 'Book Section',
...