Commit
·
007efe1
1
Parent(s):
abbeb13
add source files
Browse files- demo_code_plugin/plugin.py +3 -0
- requirements.txt +11 -1
demo_code_plugin/plugin.py
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
from flask import render_template, Blueprint, current_app
|
| 2 |
import os
|
| 3 |
|
|
|
|
| 1 |
+
import eventlet
|
| 2 |
+
eventlet.monkey_patch()
|
| 3 |
+
|
| 4 |
from flask import render_template, Blueprint, current_app
|
| 5 |
import os
|
| 6 |
|
requirements.txt
CHANGED
|
@@ -1 +1,11 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Flask and SQL
|
| 2 |
+
bcrypt
|
| 3 |
+
Flask-Login
|
| 4 |
+
Flask-Session
|
| 5 |
+
Flask-SocketIO
|
| 6 |
+
Flask-SQLAlchemy
|
| 7 |
+
SQLAlchemy-Utils~=0.41
|
| 8 |
+
wtforms~=3.2.1
|
| 9 |
+
flask-wtf
|
| 10 |
+
eventlet
|
| 11 |
+
python-dotenv
|