Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,14 @@ from cryptography.hazmat.primitives import hashes
|
|
13 |
from cryptography.hazmat.primitives import serialization
|
14 |
from cryptography.hazmat.primitives.asymmetric import padding
|
15 |
from cryptography.exceptions import InvalidTag
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
break
|
|
|
|
|
18 |
# --- Configure Logging ---
|
19 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
20 |
logger = logging.getLogger(__name__)
|
|
|
13 |
from cryptography.hazmat.primitives import serialization
|
14 |
from cryptography.hazmat.primitives.asymmetric import padding
|
15 |
from cryptography.exceptions import InvalidTag
|
16 |
+
|
17 |
+
|
18 |
+
import subprocess
|
19 |
+
result = subprocess.run(["pip", "freeze"], capture_output=True, text=True)
|
20 |
+
print(result.stdout)
|
21 |
break
|
22 |
+
|
23 |
+
|
24 |
# --- Configure Logging ---
|
25 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
26 |
logger = logging.getLogger(__name__)
|