boto_rsync icon indicating copy to clipboard operation
boto_rsync copied to clipboard

An rsync-like utility using boto's S3 and Google Storage interfaces. [DEPRECATED -- Use awscli instead]

Results 23 boto_rsync issues
Sort by recently updated
recently updated
newest added

I have been trying to upload multiple files, and at the beginning the files were overwritten in the bucket, but now they don't, how can I overwrite files or delete...

``` $ pip install boto_rsync Collecting boto_rsync Downloading https://files.pythonhosted.org/packages/b9/d7/989c5beeddfd9ba60c4cefdcad444ce0102e2a82f79f5ece6449e95ecf33/boto_rsync-0.8.1.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "", line 1, in File "/tmp/pip-install-7l2i_dcy/boto-rsync/setup.py", line 10,...

The Python team at AWS has been working hard on a boto-based CLI project for their cloud services. Among the tools included is an interface for S3 which duplicates (and...

important

Attempt at implementing last-modified check. It's slightly different than rsync's default "quick check" because (in my testing at least) this turned out to be the time uploaded rather than preserving...

Some times boto-rsync fail to detect that some files are already up to date, and re-download them, as if some changed occured. This is on a Raspberry running Raspbian.

This tools is fantastic-- but it seems crash on broken symlinks. Telling it to ignore 0 byte files doesn't solve it, since the symlinks are not 0 bytes. Maybe I'm...

Hello, I've added the --exclude argument to be in line with the rsync --exclude=PATTERN argument: http://ss64.com/bash/rsync.html It doesn't support actual patterns, just path and file names (relative or absolute). Thank...

for the moment, boto-rsync only connect to s3 on port 443. I add an option "--insecure" to connect to 80 without ssl. It also use the "new" s3 way with...

distutils does not support `install_requires`. Per the advice [1] from the BFDL-Packaging and for compatibility with FPM [2] building from a git clone try distribute/setuptools before distutils. Perhaps this is...

I use a custom s3 gateway who tend to do some 404 error for some objects. For the moment, boto-rsync raise an exception. with this patch, it will continue.