Skip to content

Commit

Permalink
Update typewind.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudh-hegde authored Apr 6, 2024
1 parent b97cb52 commit 6a6253b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions typewind.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
"""Implements the TypeFlash app to test the speed of your typing"""
import streamlit as st
import time


def streamlit_typing_speed_test():
"""Contributes to the process of identifying the speed of your typed text"""

st.set_page_config(
page_title="Typing Speed Test",
page_icon="🧊",
layout="centered",
initial_sidebar_state="collapsed"
)

st.markdown("""
Welcome to the Typing Speed Test! 🚀
Expand All @@ -26,6 +30,7 @@ def streamlit_typing_speed_test():

if 'start_time' not in st.session_state:
st.session_state.start_time = 0

if 'end_time' not in st.session_state:
st.session_state.end_time = 0

Expand Down

0 comments on commit 6a6253b

Please sign in to comment.