Spaces:
Sleeping
Sleeping
a-v-bely
commited on
Commit
•
0b9b99e
1
Parent(s):
e4c9b34
cosmetics
Browse files
requirements.txt
CHANGED
@@ -3,12 +3,12 @@ nltk>=3.8.1
|
|
3 |
spacy>=3.7.2
|
4 |
torch>=2.1.0
|
5 |
gensim>=4.3.2
|
6 |
-
pandas>=2.
|
7 |
requests>=2.31.0
|
8 |
trycourier>=5.0.0
|
9 |
streamlit==1.28.0
|
10 |
argon2-cffi>=21.3.0
|
11 |
-
cryptography>=
|
12 |
-
transformers>=4.
|
13 |
-
streamlit-extras>=0.
|
14 |
es_core_news_lg @ https://github.com/explosion/spacy-models/releases/download/es_core_news_lg-3.7.0/es_core_news_lg-3.7.0-py3-none-any.whl
|
|
|
3 |
spacy>=3.7.2
|
4 |
torch>=2.1.0
|
5 |
gensim>=4.3.2
|
6 |
+
pandas>=2.2.0
|
7 |
requests>=2.31.0
|
8 |
trycourier>=5.0.0
|
9 |
streamlit==1.28.0
|
10 |
argon2-cffi>=21.3.0
|
11 |
+
cryptography>=42.0.3
|
12 |
+
transformers>=4.37.2
|
13 |
+
streamlit-extras>=0.4.0
|
14 |
es_core_news_lg @ https://github.com/explosion/spacy-models/releases/download/es_core_news_lg-3.7.0/es_core_news_lg-3.7.0-py3-none-any.whl
|
utilities_database/user_database_utils.py
CHANGED
@@ -21,6 +21,8 @@ def check_usr_pass(user_log_in_database, user_name: str, password: str) -> bool:
|
|
21 |
return False
|
22 |
except VerifyMismatchError:
|
23 |
pass
|
|
|
|
|
24 |
return False
|
25 |
|
26 |
|
|
|
21 |
return False
|
22 |
except VerifyMismatchError:
|
23 |
pass
|
24 |
+
except IndexError:
|
25 |
+
pass
|
26 |
return False
|
27 |
|
28 |
|