io.rst 1023 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .. This is a autogemerated documentation from python docstrings. It was generated using DStrings2Doc.
  2. .. module:: io
  3. .. _io:
  4. Module io
  5. =========
  6. .. py:method:: is_data_consistent(dataset)
  7. .. py:method:: _cached_exist(filename)
  8. .. py:method:: decode_data(data)
  9. .. py:method:: data_has_header(data)
  10. .. py:method:: get_num_of_skipped_turns(data, header_info)
  11. .. py:method:: parse_header(data, header_info)
  12. Parse the Header and return the values in a dictionary
  13. :param data: the data which contains a header
  14. :return: dictionary with header entries
  15. .. py:method:: read_from_file(filename, force=False, header=False, cache=False)
  16. Read data from file
  17. :param filename: file to read
  18. :param force: force reread and do not take values from cache
  19. :param header: only for backwards compatibility
  20. :param cache: save cache
  21. :return: dataset
  22. .. py:method:: read_from_string(raw_data, force=False, header=False, cache=False, cache_filename="_heb_data_cache")