Skip to content

Python functions to parse the DomeVRLog files produced by the DomeVR project or TimedLog plugin.

License

Notifications You must be signed in to change notification settings

zero-noise-lab/ParseDomeVRLog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

parse_domevrlog

Python module containing the class TextLog to parse the DomeVRLog files produced by the DomeVR project or TimedLog plugin.

Uses a memory-map to speed up the parsing of large files.

Example usage

from parse_domevrlog import TextLog
with TextLog(filename) as log:
    start_trial_times = log.parse_all_state_times(state='StartTrial', times='StateStarted')
    end_trial_times = log.parse_all_state_times(state='EndTrial', times='StateStarted')
print(start_trial_times)
print(end_trial_times)

About

Python functions to parse the DomeVRLog files produced by the DomeVR project or TimedLog plugin.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages