1

上記のコードは、コードの実行が終了したときにのみ rsync の進行状況を示しています。進行状況をそのまま印刷したい。たとえば、ファイルが転送されているときに、進行状況をずっと表示したいと考えています。どうやってやるの?

    import re 
    import subprocess

    def sort(rprogress):
        '''This function extracts the percentage from the rsync progress and return strings of percentanges'''
        progress1 = re.findall(r'\d+%', rprogress)
        remove_duplicate = set(progress1)     #Remove Duplicate percentage from list
        remove_percent = [a.replace('%', '') for a in remove_duplicate]     #Removes percentage
        sorted_list = sorted(remove_percent, key=int)     #Sort in ascending order
        #result = ', '.join(map(lambda sorted_list: str(sorted_list) + '%', sorted_list)) #Adds the percentage
        return sorted_list


    source12 = 'sachet.adhikari@69.43.202.97:/home/sachet/my_files/ok.txt'
    password = 'password'
    destination = '/home/zurelsoft/files'
    result = subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz', '--info=progress2', source12, destination], 
                                       stdout=subprocess.PIPE).communicate()[0]   

    print result               


print sort(result)
4

1 に答える 1

2

stdout=subprocess.PIPEサブプロセスが stdout に出力するのを防ぎ、代わりに bash の場合と同様にresultusingに渡します。communicate

sshpass -[args] rsync [source] [dest]

進行状況を出力しますが、

sshpass -[args] rsync [source] [dest] | sort

プロセスが完了するまで何も印刷しません。

あなたが望むのはteestdout. ここを見てください。これらの回答に基づいて、次のようなことができます。

# Caution! untested code
result = []
process = subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz',
                            '--info=progress2', source12, destination], 
                           stdout=subprocess.PIPE)
while process.poll() is None:
    line = process.stdout.readline()
    print line
    result.append(line)
print sort(result)
于 2013-02-28T06:06:50.477 に答える