Skip to main content

The simplest one/two ways sync module in python.

Project description

SYNC_MODULE

introduction

sync_module is the simplest way to set-up a one/two ways syncronisations between folders from a python script ! just use it like so :

# import the module
from qsync import SyncIniter

from sys import argv # here to get command lines args

if __name__ == "__main__":
    
    # define your 2 folders path (here the command line arguments)
    sync_src = argv[0].replace("\\","/")
    sync_dst = argv[1].replace("\\","/")

    # create a SyncIniter object with the two sync source and destination (commutative if bi directionnal)
    s = SyncIniter(sync_src,sync_dst,bi_directionnal=True)

    # do I really need to explain the rest ?  
    s.start_sync()
    print("started to sync")
    s.stop_sync()
    print("stopped to sync")

    

A cli is also available with this module :

Start to sync two folders in one way :

qsync "src_dir" "dst_dir" false

start to sync two folders in two ways :

qsync "dir1" "dir2" true

Errors :

InvalidPathError

raised in start_sync() when a path don't exists

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qsync-0.1.2.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

qsync-0.1.2-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page