fixed login and moved up to EagleEyev3 0.0.20

database
Mark Cotton 2023-09-06 21:52:07 -05:00
parent 0ec6698db7
commit dbf7c39400
2 changed files with 7 additions and 5 deletions

8
app.py
View File

@ -240,10 +240,10 @@ def login_callback():
@app.route('/logout') @app.route('/logout')
def logout(): def logout():
# logout isn't working APIv3 right now so don't wait for the call to fail before logging out if 'een' in session:
# if 'een' in session: een = session['een']
# een = session['een'] logging.debug(f"calling logout { een.access_token = }")
# een.logout() een.logout()
session.pop('een') session.pop('een')

View File

@ -14,8 +14,10 @@ Werkzeug==2.3.6
gunicorn==20.1.0 gunicorn==20.1.0
cachelib==0.10.2 cachelib==0.10.2
Flask-Session==0.5.0 Flask-Session==0.5.0
EagleEyev3>=0.0.18
tqdm tqdm
pandas pandas
numpy numpy
matplotlib matplotlib
Flask-SQLAlchemy==3.0.5
Flask-Migrate==4.0.4
EagleEyev3>=0.0.20