2021-05-07 12:44:34 +02:00
|
|
|
from collections.abc import Collection
|
2021-05-04 17:45:48 +02:00
|
|
|
|
|
|
|
import pandas as pd
|
|
|
|
|
2021-05-07 12:10:46 +02:00
|
|
|
from config.models import Participant, Screen
|
2021-05-04 17:45:48 +02:00
|
|
|
from setup import db_engine, session
|
|
|
|
|
|
|
|
screen_status = {0: "off", 1: "on", 2: "locked", 3: "unlocked"}
|
|
|
|
|
|
|
|
|
2021-05-07 12:44:34 +02:00
|
|
|
def get_screen_data(usernames: Collection) -> pd.DataFrame:
|
2021-05-04 17:45:48 +02:00
|
|
|
"""
|
|
|
|
Read the data from the screen table and return it in a dataframe.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
2021-05-07 15:18:56 +02:00
|
|
|
usernames: Collection
|
2021-05-04 17:45:48 +02:00
|
|
|
A list of usernames to put into the WHERE condition.
|
|
|
|
|
|
|
|
Returns
|
|
|
|
-------
|
|
|
|
df_screen: pd.DataFrame
|
|
|
|
A dataframe of screen data.
|
|
|
|
"""
|
|
|
|
query_screen = (
|
|
|
|
session.query(Screen, Participant.username)
|
|
|
|
.filter(Participant.id == Screen.participant_id)
|
|
|
|
.filter(Participant.username.in_(usernames))
|
|
|
|
)
|
|
|
|
with db_engine.connect() as connection:
|
|
|
|
df_screen = pd.read_sql(query_screen.statement, connection)
|
|
|
|
return df_screen
|