Sync s3 from one source to another place
Project description
s3-sync
Sync AWS S3 storage:
- Sync file from s3 -> s3
- Sync file from s3 -> local storage
- Sync file from local storage -> s3
Installation
pip install s3sync
S3 sync s3 to s3
Read from parameters
s3-sync --sync-s3-bucket true \
# using 5 concurrent thread default is 2
--thread 5 \
--source-bucket-name source-bucket \
--source-region-name ap-southeast-1 \
--source-access-key-id source-access-key \
--source-secret-access source-secret \
--target-bucket-name target-bucket \
--target-region-name ap-southeast-3 \
--target-access-key-id target-access-key \
--target-secret-access target-secret
Read from json file
- Create example json file as bellow example, you can name this file whatever
{
"source": {
"bucket_name": "source-bucket",
"region_name": "ap-southeast-1",
"access_key_id": "source-access-key",
"secret_access_key": "source-secret-key"
},
"target": {
"bucket_name": "target-bucket",
"region_name": "ap-southeast-3",
"access_key_id": "target-access-key",
"secret_access_key": "target-secret-key"
}
}
- Then execute command
s3-sync --sync-s3-bucket true -json /home/ubuntu/config.json --thread 5
S3 sync s3 to local (Give absolute path for this)
Read from parameters
s3-sync --sync-s3-local true \
# using 5 concurrent thread default is 2
--thread 5 \
--source-bucket-name source-bucket \
--source-region-name ap-southeast-1 \
--source-access-key-id source-access-key \
--source-secret-access source-secret-key \
--target-local-path /home/ubuntu/sync-s3/my-folder
Read from json file
- Create example json file as bellow example, you can name this file whatever
{
"source": {
"bucket_name": "source-bucket",
"region_name": "ap-southeast-1",
"access_key_id": "source-access-key",
"secret_access_key": "source-secret-key"
},
"target": {
"path": "/home/ubuntu/sync-s3/my-folder"
}
}
- Then execute command
s3-sync --sync-s3-local true -json /home/ubuntu/config.json --thread 5
S3 sync local to s3
Read from parameters
s3-sync --sync-local-s3 true \
# using 5 concurrent thread default is 2
--thread 5 \
--source-local-path /home/ubuntu/sync-s3/my-folder \
--target-bucket-name target-bucket \
--target-region-name ap-southeast-3 \
--target-access-key-id target-access-key \
--target-secret-access target-secret-key
Read from json file
- Create example json file as bellow example, you can name this file whatever
{
"source": {
"path": "/home/ubuntu/sync-s3/my-folder"
},
"target": {
"bucket_name": "target-bucket-name",
"region_name": "ap-southeast-3",
"access_key_id": "target-access-key",
"secret_access_key": "target-secret-key"
}
}
- Then execute command
s3-sync --sync-local-s3 true -json /home/ubuntu/config.json --thread 5
Help & Bugs
If you are still confused or found a bug, please open the issue. All bug reports are appreciated, some features have not been tested yet due to lack of free time.
License
s3-sync released under MIT. See LICENSE for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
s3sync-0.1.1.tar.gz
(6.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
s3sync-0.1.1-py3-none-any.whl
(10.4 kB
view details)
File details
Details for the file s3sync-0.1.1.tar.gz.
File metadata
- Download URL: s3sync-0.1.1.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.5 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a6006228a68ab369c546c0c6dd15d508ce994c8c4c885df6121965d252a7961
|
|
| MD5 |
b8f5d1b7f86a53dca097653a9429b469
|
|
| BLAKE2b-256 |
1135ccf5ccdae8127bc10fbca4d18b0d296fc5a157981e2e8f73f125326079b0
|
File details
Details for the file s3sync-0.1.1-py3-none-any.whl.
File metadata
- Download URL: s3sync-0.1.1-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.5 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43ed733513e00169dbf080d818a82a58a3fed93ad8bb4f234a50681f0cf81414
|
|
| MD5 |
eaf8d11390f4bf2ca237c3fe8e363497
|
|
| BLAKE2b-256 |
1984c78930b118234bddf2a0ea2cd78d8f5261a6e80da02fc438b0197c95d508
|