Python Library For Getting Information About Svn Repository?
I'm searching for a library that can extract (at least) the following information from a SVN repository (not a working copy!): Revision numbers and their author & commit messa
Solution 1:
There are Python bindings to libsvn: http://pysvn.tigris.org/docs/pysvn.html. They facilitate doing pretty much everything the svn command line client can do.
In particular, the Client.log()
method does what you are looking for.
Solution 2:
I think you want something like py-svn.
Post a Comment for "Python Library For Getting Information About Svn Repository?"