I’m looking for a good python library to manipulate subversion repositories. I’m trying out PySvn, but finding that it can’t handle something like
pysvn.Client().info("/path/to/svn/repo")
because it’s not a working copy. Anyone know of any good libraries that can handle this kind of thing?
Update – I’ll try to simplify it – I want to get info about the repository. The same kind of info I get when I run svn info file:///path/to/svn/repo
Do you try info2 instead of info? Documentation says it can access URL of repository.