-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added minimal file upload functionality and python virtual environmen…
…t requirements.txt
- Loading branch information
1 parent
2a7efd4
commit b2240dc
Showing
5 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/env/* | ||
/__pycache__/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
def does_user_exist(username: str) -> bool: | ||
return False | ||
|
||
|
||
def register_user(username: str, password_hash: str): | ||
print( | ||
"Registering User with Username = " | ||
+ username | ||
+ " and password hash = " | ||
+ password_hash | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
appdirs==1.4.4 | ||
argon2-cffi==20.1.0 | ||
black==20.8b1 | ||
cffi==1.14.5 | ||
click==7.1.2 | ||
dataclasses==0.8 | ||
Flask==1.1.2 | ||
itsdangerous==1.1.0 | ||
Jinja2==2.11.3 | ||
jsonify==0.5 | ||
MarkupSafe==1.1.1 | ||
mypy-extensions==0.4.3 | ||
pathspec==0.8.1 | ||
pkg-resources==0.0.0 | ||
pycparser==2.20 | ||
regex==2021.3.17 | ||
six==1.15.0 | ||
toml==0.10.2 | ||
typed-ast==1.4.2 | ||
typing-extensions==3.7.4.3 | ||
Werkzeug==1.0.1 |