The repository where I will put the mini applications that I will develop in Python - 100 Python applications in one folder.
The following ten command-line tools are included in this update:
- Palindrome Checker (
palindrome_checker/app.py): Determine whether a piece of text is a palindrome with optional case and whitespace normalization. - Multiplication Table Generator (
multiplication_table_generator/app.py): Produce multiplication tables for any number up to a specified limit. - Caesar Cipher Tool (
caesar_cipher_tool/app.py): Encode or decode text using a configurable Caesar cipher shift. - Temperature Converter CLI (
temperature_converter_cli/app.py): Convert temperature values between Celsius and Fahrenheit. - Word Frequency Counter (
word_frequency_counter/app.py): Count the most common words from a text input or file. - Countdown Timer CLI (
countdown_timer_cli/app.py): Run a simple countdown timer directly from the terminal. - Prime Number Tester (
prime_number_tester/app.py): Quickly check whether an integer is prime. - Simple Stopwatch (
simple_stopwatch/app.py): Measure elapsed time between two keypresses. - Dice Roller CLI (
dice_roller_cli/app.py): Roll any number of dice with an arbitrary number of sides. - BMI Calculator (
bmi_calculator/app.py): Calculate Body Mass Index values and provide category feedback.