Small collection of Python programming exercises.
- Caesar cipher experiments (
caesar_cipher.py) - Password manager practice (
password_manager.py) - Log parsing + counting (
log_counting.py) - Simple event scheduler (
event_scheduler.py) - Library system exercise (
library.py) - Basic data analysis notebook-style script (
data_science.py)
Use a virtual environment and install dependencies from pyproject.toml.
Example (Git Bash):
python -m venv .venv
source .venv/Scripts/activate
uv pip install .This repository is for practice and learning purposes.