From 952b692e61d6719f70aea344daf98fd418132569 Mon Sep 17 00:00:00 2001 From: Llloooggg Date: Wed, 22 Apr 2020 22:51:50 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=20=D1=83=D0=B2=D0=B5=D0=B4=D0=BE=D0=BC=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BE=20=D0=BD=D0=B0=D1=87=D0=B0=D0=BB?= =?UTF-8?q?=D0=B5=20=D0=B8=20=D0=BA=D0=BE=D0=BD=D1=86=D0=B5=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=B4=D1=80=D1=83=D0=B3=D0=BE=D0=B3=D0=BE=20=D0=B2?= =?UTF-8?q?=D0=B0=D1=80=D0=B8=D0=B0=D0=BD=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 8e2d85d..1c07daf 100755 --- a/__init__.py +++ b/__init__.py @@ -382,6 +382,8 @@ def another_main(): respondents = int(input(datetime.now().strftime( '[%X] ') + 'Введите желаемое число респондентов: ')) + print(datetime.now().strftime('[%X] ') + 'Начало') + with progressbar.ProgressBar(max_value=respondents) as bar: for i in range(respondents): bar.update(i) @@ -392,6 +394,8 @@ def another_main(): another_profile_maker() button_by_text('Отправить') + print(datetime.now().strftime('[%X] ') + 'Завершено') + if __name__ == '__main__': @@ -399,4 +403,3 @@ if __name__ == '__main__': another_main() except: driver.close() -