Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 1.08 KB

README.md

File metadata and controls

31 lines (18 loc) · 1.08 KB

Typing Test Application proudly made with Python

This is a Python program made with Tkinter, a default GUI library in Python. It is a typing test application that allows users to test their typing speed and accuracy. The program displays a random paragraph and the user must type it out as quickly and accurately as possible. It uses a timer that counts down from 60 seconds, after which the user can see their words per minute (WPM) speed and accuracy.

Screenshot of Typing Test Application Screenshot of Typing Test Application Results

Running it Locally

To run the Typing Test Application locally, follow these steps:

  1. Clone the repository:

git clone https://github.com/yourusername/typing-test-app.git

  1. Create and activate a virtual environment:

python3 -m venv venv source venv/bin/activate

  1. Install the required dependencies:

pip install -r requirements.txt

  1. Start the application:

python3 typing_test.py

  1. Enjoy testing your typing speed!