Python定期从SVN更新文件

时间:2023-01-19 17:57:23
如果一个测试站点要及时的从svn获取最新的文件,那么写一个定期更新程序是非常必要的,下面的代码Python的简单实现

svnupdate.py
Python定期从SVN更新文件import time,os,sys,svnconfig
Python定期从SVN更新文件
Python定期从SVN更新文件dist
=svnconfig.setting['dist']
Python定期从SVN更新文件os.chdir(svnconfig.setting[
'svn'])
Python定期从SVN更新文件
Python定期从SVN更新文件
def checkout():
Python定期从SVN更新文件    svnconfig.setting[
'dist']=dist+time.strftime('%Y-%m-%d-%H-%M-%S',time.localtime())
Python定期从SVN更新文件    cmd
='svn export %(url)s %(dist)s --username %(user)s --password %(pwd)s'%svnconfig.setting
Python定期从SVN更新文件    
print "execute %s"%cmd
Python定期从SVN更新文件    
#print os.popen(cmd).read()
Python定期从SVN更新文件
    return os.system(cmd)
Python定期从SVN更新文件
Python定期从SVN更新文件
while True:
Python定期从SVN更新文件    ret
=checkout()
Python定期从SVN更新文件    
if(ret==0):
Python定期从SVN更新文件        
print 'check out success'
Python定期从SVN更新文件    
else:
Python定期从SVN更新文件        
print 'check out fail'
Python定期从SVN更新文件    time.sleep(svnconfig.setting[
'interval'])

svnconfig.py

Python定期从SVN更新文件setting={
Python定期从SVN更新文件    
'svn':'C:/Program Files/Subversion/bin/',#svn的程序所在路径
Python定期从SVN更新文件
    'url':'http://www.xxx.com/svn/project/trunk',#svn地址
Python定期从SVN更新文件
    'user':'xxx,#用户名
Python定期从SVN更新文件
    'pwd':'xxx',#密码
Python定期从SVN更新文件
    'dist':'D:/svn/',#目标地址
Python定期从SVN更新文件
    'interval':15 #更新时间
Python定期从SVN更新文件
}

可能是装了多个svn的缘故,直接用system('svn xx')命令执行失败,所以就先chdir到svn的目录下面,然后在执行svn命令

svn也有一个Python程序包,也可以直接使用,没有具体使用过。
svn以及python包的地址:
 http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91

上面的代码主要用了 svn export ,该命令获取了一个无版本控制的副本,所以用于定时备份比较好,及时更新的话用 svn checkout 命令,每次获得最新的版本,或者第一次用 svn checkout以后用 svn -r HEAD update 也可以.