tags:

views:

190

answers:

1

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

+1  A: 

Do you try info2 instead of info? Documentation says it can access URL of repository.

Dmitry Kochkin
Yes! That's exactly what I wanted, (but with recurse=False). Thanks.
mozillalives