How to access SVN in Python?
python, svn
Solution
There are bindings for `subversion` here called `pysvn`. I've never used them, but they seem reasonable.
You can also just use the `subprocess` module and call out to `svn`, but I'd try the bindings first.
Problem
I was trying to implement an extension to an exception collecting system. After extracting file path and line number from an exception, I want to know who wrote that line and one obvious to accomplish this is "svn blame". But I don't know how to access SVN in Python.