Aqdas commited on
Commit
20869c1
·
verified ·
1 Parent(s): b6e29c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -2,6 +2,7 @@ from cryptography.fernet import Fernet
2
  import os
3
 
4
  key = os.getenv('ENCRYPTION_KEY').encode('utf-8')
 
5
  cipher = Fernet(key)
6
 
7
  files = ['my_extractor.enc', 'pdf_to_image.enc', 'image_to_text.enc', 'run_app.enc']
 
2
  import os
3
 
4
  key = os.getenv('ENCRYPTION_KEY').encode('utf-8')
5
+ print('This is ENCRYPTION_KEY key', key)
6
  cipher = Fernet(key)
7
 
8
  files = ['my_extractor.enc', 'pdf_to_image.enc', 'image_to_text.enc', 'run_app.enc']