OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python311
/
lib
/
python3.11
/
site-packages
/
s3transfer
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/09/2025 02:18:04 AM
rwxr-xr-x
📄
__init__.py
28.46 KB
05/14/2024 03:18:42 PM
rw-r--r--
📁
__pycache__
-
05/14/2024 03:18:42 PM
rwxr-xr-x
📄
bandwidth.py
15.27 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
compat.py
2.9 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
constants.py
910 bytes
05/14/2024 03:18:42 PM
rw-r--r--
📄
copies.py
14.13 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
crt.py
30.44 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
delete.py
2.5 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
download.py
27.44 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
exceptions.py
1.04 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
futures.py
20.66 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
manager.py
27.84 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
processpool.py
35.42 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
subscribers.py
3.53 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
tasks.py
15.81 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
upload.py
29.79 KB
05/14/2024 03:18:42 PM
rw-r--r--
📄
utils.py
27.13 KB
05/14/2024 03:18:42 PM
rw-r--r--
Editing: constants.py
Close
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You # may not use this file except in compliance with the License. A copy of # the License is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. import s3transfer KB = 1024 MB = KB * KB GB = MB * KB ALLOWED_DOWNLOAD_ARGS = [ 'ChecksumMode', 'VersionId', 'SSECustomerAlgorithm', 'SSECustomerKey', 'SSECustomerKeyMD5', 'RequestPayer', 'ExpectedBucketOwner', ] USER_AGENT = 's3transfer/%s' % s3transfer.__version__ PROCESS_USER_AGENT = '%s processpool' % USER_AGENT