A small utility for synchronizing a local folder with a remote web repository
Project description
A small Python utility/module for synchronizing a local folder with a remote web repository.
Install
Just do
pip install wsync
Usage
As a standalone script
Suppose that you need to mantain a local mirror of the remote repository at http://cdimage.debian.org/debian-cd/current/source/iso-dvd/.
Then it is enough to do as follows:
wsync \ --digest-list http://cdimage.debian.org/debian-cd/current/source/iso-dvd/SHA1SUMS \ --remote-repo http://cdimage.debian.org/debian-cd/current/source/iso-dvd/ \ --local-copy ~/debian-iso-dvd
Of course, any subsequent execution of the script will detect any change and download what is needed.
You can also use the testing branch of the GitHub repository for a quick test: just do:
wsync \ --digest-list https://raw.githubusercontent.com/reale/wsync/testing/SHA1SUMS \ --remote-repo https://raw.githubusercontent.com/reale/wsync/testing/
As a module
As before:
from wsync import * digest_list_url = "http://cdimage.debian.org/debian-cd/current/source/iso-dvd/SHA1SUMS" remote_repo_url = "http://cdimage.debian.org/debian-cd/current/source/iso-dvd/" local_copy = "~/debian-iso-dvd" wsync = Wsync(digest_list_url, remote_repo_url, local_copy) wsync.sync()
Or:
digest_list_url = "https://raw.githubusercontent.com/reale/wsync/testing/SHA1SUMS" remote_repo_url = "https://raw.githubusercontent.com/reale/wsync/testing/"
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
wsync-0.9.6.tar.gz
(6.0 kB
view details)
File details
Details for the file wsync-0.9.6.tar.gz
.
File metadata
- Download URL: wsync-0.9.6.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fa8cce613a615df91319a63b20ca1a34ca4ddc973ba1daf74a2ee0c7299b001 |
|
MD5 | bc9e9d27b1d1831eecd22ee4be22481f |
|
BLAKE2b-256 | b64ac13cfd64ac4df98fb5f8607d75708cbb1ac8f84ec99815aea515fc10ffa4 |