user1029968
user1029968

Reputation: 297

How to check if SVN credentials are correct and SVN server is running

I'm trying to write a Python application that will be able to determine if various SVN servers configurations are proper. This means server is accessible and credentials are correct. What is the easiest and convienient way to achieve this?

Thank you for your suggestions!

Upvotes: 2

Views: 1037

Answers (1)

Heinz
Heinz

Reputation: 26

well the easiest way would be to use a library like pysvn and simply try to fetch the info of your svn repositories.

Upvotes: 1

Related Questions