DEV Community

Akhil Athuluri
Akhil Athuluri

Posted on

Speed-Typing-Test-Using-Python-and-curses-Library

Main.py

import curses
from curses import wrapper
import time
import random


def start_screen(stdscr):
    stdscr.clear()
    stdscr.addstr("Welcome to the Speed Typing Test!")
    stdscr.addstr("\nPress any key to begin!")
    stdscr.refresh()
    stdscr.getkey()

def display_text(stdscr, target, current, wpm=0):
    stdscr.addstr(target)
    stdscr.addstr(1, 0, f"WPM: {wpm}")

    for i, char in enumerate(current):
        correct_char = target[i]
        color = curses.color_pair(1)
        if char != correct_char:
            color = curses.color_pair(2)

        stdscr.addstr(0, i, char, color)

def load_text():
    with open("text.txt", "r") as f:
        lines = f.readlines()
        return random.choice(lines).strip()

def wpm_test(stdscr):
    target_text = load_text()
    current_text = []
    wpm = 0
    start_time = time.time()
    stdscr.nodelay(True)

    while True:
        time_elapsed = max(time.time() - start_time, 1)
        wpm = round((len(current_text) / (time_elapsed / 60)) / 5)

        stdscr.clear()
        display_text(stdscr, target_text, current_text, wpm)
        stdscr.refresh()

        if "".join(current_text) == target_text:
            stdscr.nodelay(False)
            break

        try:
            key = stdscr.getkey()
        except:
            continue

        if ord(key) == 27:
            break

        if key in ("KEY_BACKSPACE", '\b', "\x7f"):
            if len(current_text) > 0:
                current_text.pop()
        elif len(current_text) < len(target_text):
            current_text.append(key)


def main(stdscr):
    curses.init_pair(1, curses.COLOR_GREEN, curses.COLOR_BLACK)
    curses.init_pair(2, curses.COLOR_RED, curses.COLOR_BLACK)
    curses.init_pair(3, curses.COLOR_WHITE, curses.COLOR_BLACK)

    start_screen(stdscr)
    while True:
        wpm_test(stdscr)
        stdscr.addstr(2, 0, "You completed the text! Press any key to continue...")
        key = stdscr.getkey()

        if ord(key) == 27:
            break

wrapper(main)
Enter fullscreen mode Exit fullscreen mode

text.txt

Hello world my name is Akhil and I am the best at making tutorials!
This is another test block of text for this project!
Subscribe to Akhil Tech Channel on YouTube.
Okay this is just another test to make sure the app is working okay!
The quick brown fox jumped over the rest of the sentence that I forget.
Enter fullscreen mode Exit fullscreen mode

Speed-Typing-Test-Using-Python-and-curses-Library

This is a command-line program that tests a user's typing speed by asking them to type out a random line of text. It uses the curses library to create a user interface in the terminal.

How to Use

  1. Clone the repository onto your computer.
  2. Make sure you have Python 3 and the curses library installed.
  3. Run the main.py file in your terminal by navigating to the cloned repository and typing python3 main.py.
  4. The program will display a welcome screen. Press any key to begin.
  5. A random line of text will be displayed on the screen. Type out the text as quickly and accurately as you can.
  6. Once you have typed out the entire line, the program will display your words per minute (WPM).
  7. Press any key to continue to the next line of text.
  8. You can exit the program at any time by pressing the escape key.

How it Works

The program uses the curses library to create a terminal-based user interface. When the program is run, it first displays a welcome screen that prompts the user to press any key to begin.

Once the user presses a key, the program selects a random line of text from a text file and displays it on the screen. The user is then prompted to type out the text as quickly and accurately as they can.

As the user types, the program displays the text they have entered so far in green, and any incorrect characters in red. It also displays the current words per minute (WPM) based on the user's typing speed.

Once the user has typed out the entire line of text, the program displays their final WPM and prompts them to press any key to continue to the next line of text.

If the user wants to exit the program at any time, they can press the escape key.

The Concept Is Used-

  1. File I/O: The program reads in a text file to select a random line of text for the user to type.

  2. Libraries: The program uses the curses library to create a user interface in the terminal.

  3. Randomness: The program selects a random line of text from the text file for the user to type.

  4. Time and Timing: The program measures the user's typing speed by calculating their words per minute (WPM) based on the time it takes them to type the line of text.

  5. User Input: The program captures the user's keystrokes as they type out the line of text.

  6. Control Flow: The program uses loops and conditionals to control the flow of the program and determine when to exit.

Top comments (0)