I am trying to write a Python script to search a (very large) SVN repository for specific files (ending with .mat). Usually I would use os.walk() to walk through a directory and then search for the files with a RegEx. Unfortunately I can't use os.walk() for a repository, since it is not a local directory.
Does anyone know how to do that? The repository is too large to download, so I need to search for it "online".
Thanks in advance.