From f1f54bc4a57d6f5e5212565d6261debb52e081b6 Mon Sep 17 00:00:00 2001 From: mirai Date: Thu, 1 Dec 2022 10:33:41 +0300 Subject: [PATCH] Updated client/client.py Updated requirements.txt --- client/client.py | 10 +++++----- requirements.txt | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/client/client.py b/client/client.py index 5984dfe..8b9f31e 100644 --- a/client/client.py +++ b/client/client.py @@ -1,10 +1,10 @@ -from cryptography.fernet import Fernet -import platform -import threading -import requests +import os import time import rsa -import os +import platform +import requests +import threading +from cryptography.fernet import Fernet OS = "Windows" if "Linux" in str(platform.platform()): diff --git a/requirements.txt b/requirements.txt index c4277cf..a16dccb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ sanic requests rsa -cryptography \ No newline at end of file +cryptography +colorama \ No newline at end of file