From 9379aaeef6a616200ba3e4d5f02c9323d0a77a89 Mon Sep 17 00:00:00 2001 From: n0body Date: Thu, 28 Aug 2025 19:58:48 +0300 Subject: [PATCH] Fix Changed minioPopulator.py to ask required data though std::in instead of getting it from config --- minioPopulator.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/minioPopulator.py b/minioPopulator.py index e06bcfc..3c53f65 100644 --- a/minioPopulator.py +++ b/minioPopulator.py @@ -24,19 +24,19 @@ def upload_image(bucket_name, object_name, file_path): print(f'Error during MinIO operation: {e}') -# print('Please enter your MinIO instance cloud address:') -# IS_address = input() -# print('Please enter MinIO access key:') -# access_key = input() -# print('Please enter MinIO secret key:') -# secret_key = input() -# print('Please enter bucket name:') -# bucket = input() +print('Please enter your MinIO instance cloud address:') +IS_address = input() +print('Please enter MinIO access key:') +access_key = input() +print('Please enter MinIO secret key:') +secret_key = input() +print('Please enter bucket name:') +bucket = input() -IS_address = config.IS_address -access_key = config.acc_key -secret_key = config.sec_key -bucket = config.bucket_name +# IS_address = config.IS_address +# access_key = config.acc_key +# secret_key = config.sec_key +# bucket = config.bucket_name client = Minio( IS_address,