AVRO 1.8.2 python3 API中的搜索方法在哪里?

时间:2017-12-20 15:33:46

标签: python-3.x avro

我确实看到在1.2 api版本中有一种搜索方法,https://avro.apache.org/docs/1.2.0/api/py/avro.io.html,但它似乎已经消失在1.8.2,还有其他选择吗?

from avro.io import DatumReader    
dir(DatumReader)
    Out[20]: 
    ['__class__',
     '__delattr__',
     '__dict__',
     '__dir__',
     '__doc__',
     '__eq__',
     '__format__',
     '__ge__',
     '__getattribute__',
     '__gt__',
     '__hash__',
     '__init__',
     '__init_subclass__',
     '__le__',
     '__lt__',
     '__module__',
     '__ne__',
     '__new__',
     '__reduce__',
     '__reduce_ex__',
     '__repr__',
     '__setattr__',
     '__sizeof__',
     '__str__',
     '__subclasshook__',
     '__weakref__',
     '_read_default_value',
     'check_props',
     'match_schemas',
     'read',
     'read_array',
     'read_data',
     'read_enum',
     'read_fixed',
     'read_map',
     'read_record',
     'read_union',
     'reader_schema',
     'set_reader_schema',
     'set_writer_schema',
     'skip_array',
     'skip_data',
     'skip_enum',
     'skip_fixed',
     'skip_map',
     'skip_record',
     'skip_union',
     'writer_schema']

0 个答案:

没有答案