basic-app-frame-xethhung12 0.0.2__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/PKG-INFO +1 -1
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/pyproject.toml +1 -1
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/src/basic_app_frame_xethhung12/connectors/s3.py +1 -8
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/.gitignore +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/LICENSE +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/README.md +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/build-and-deploy.sh +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/build.sh +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/dev-requirements.txt +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/install-dependencies.sh +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/requirements.txt +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/src/basic_app_frame_xethhung12/__init__.py +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/src/basic_app_frame_xethhung12/__main__.py +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/src/basic_app_frame_xethhung12/_cmd/run.py +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/src/basic_app_frame_xethhung12/_module_helloworld.py +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/src/basic_app_frame_xethhung12/connectors/mongo_db.py +0 -0
- {basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/src/basic_app_frame_xethhung12/encryptions.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: basic_app_frame_xethhung12
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: A small package targeting to help on python project packaging process
|
|
5
5
|
Project-URL: Homepage, https://github.com/pypa/sampleproject
|
|
6
6
|
Project-URL: Issues, https://github.com/pypa/sampleproject/issues
|
|
@@ -18,7 +18,6 @@ class S3Context:
|
|
|
18
18
|
self,
|
|
19
19
|
aws_access_key_id: str,
|
|
20
20
|
aws_secret_access_key: str,
|
|
21
|
-
aws_session_token: str,
|
|
22
21
|
region_name: str,
|
|
23
22
|
endpoint_url: str,
|
|
24
23
|
bucket_name: str,
|
|
@@ -27,7 +26,6 @@ class S3Context:
|
|
|
27
26
|
):
|
|
28
27
|
self.aws_access_key_id = aws_access_key_id
|
|
29
28
|
self.aws_secret_access_key = aws_secret_access_key
|
|
30
|
-
self.aws_session_token = aws_session_token
|
|
31
29
|
self.region_name = region_name
|
|
32
30
|
self.endpoint_url = endpoint_url
|
|
33
31
|
self.bucket_name = bucket_name
|
|
@@ -275,7 +273,6 @@ class S3Connector:
|
|
|
275
273
|
self,
|
|
276
274
|
aws_access_key_id: str,
|
|
277
275
|
aws_secret_access_key: str,
|
|
278
|
-
aws_session_token: str,
|
|
279
276
|
region_name: str,
|
|
280
277
|
endpoint_url: str,
|
|
281
278
|
bucket_name: str,
|
|
@@ -285,7 +282,6 @@ class S3Connector:
|
|
|
285
282
|
# Store configuration parameters lazily, loading defaults from environment if needed
|
|
286
283
|
self.aws_access_key_id = aws_access_key_id
|
|
287
284
|
self.aws_secret_access_key = aws_secret_access_key
|
|
288
|
-
self.aws_session_token = aws_session_token
|
|
289
285
|
self.region_name = region_name
|
|
290
286
|
self.endpoint_url = endpoint_url
|
|
291
287
|
self.bucket_name = bucket_name
|
|
@@ -299,7 +295,6 @@ class S3Connector:
|
|
|
299
295
|
return S3Context(
|
|
300
296
|
aws_access_key_id=self.aws_access_key_id,
|
|
301
297
|
aws_secret_access_key=self.aws_secret_access_key,
|
|
302
|
-
aws_session_token=self.aws_session_token,
|
|
303
298
|
region_name=self.region_name,
|
|
304
299
|
endpoint_url=self.endpoint_url,
|
|
305
300
|
bucket_name=self.bucket_name,
|
|
@@ -307,10 +302,9 @@ class S3Connector:
|
|
|
307
302
|
config=self.config,
|
|
308
303
|
)
|
|
309
304
|
|
|
310
|
-
def
|
|
305
|
+
def connect(
|
|
311
306
|
aws_access_key_id: str,
|
|
312
307
|
aws_secret_access_key: str,
|
|
313
|
-
aws_session_token: str,
|
|
314
308
|
region_name: str,
|
|
315
309
|
endpoint_url: str,
|
|
316
310
|
bucket_name: str,
|
|
@@ -323,7 +317,6 @@ def Connecor(
|
|
|
323
317
|
return S3Connector(
|
|
324
318
|
aws_access_key_id=aws_access_key_id,
|
|
325
319
|
aws_secret_access_key=aws_secret_access_key,
|
|
326
|
-
aws_session_token=aws_session_token,
|
|
327
320
|
region_name=region_name,
|
|
328
321
|
endpoint_url=endpoint_url,
|
|
329
322
|
bucket_name=bucket_name,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{basic_app_frame_xethhung12-0.0.2 → basic_app_frame_xethhung12-0.0.3}/install-dependencies.sh
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|