SVN / python library

I need to manipulate a subversion client from python. I need:

  • check the latest version to change something in the given path.
  • upgrade the client to this version (head or not head).
  • Get logs for a given path (changes that changed it and when).

A quick search did not display what I'm looking for, and I would prefer not to write my own wrapper svn command line tool. (BTW: works under Linux and python 2.6)

+3
source share
1 answer
+6

Source: https://habr.com/ru/post/1763520/


All Articles