Learn · Build · Automate

Make technology
work for you.

Practical, example-led guides for solving real problems with spreadsheets, Python and business automation.

automate.py
# Turn a repetitive task into a script
from pathlib import Path

files = Path("reports").glob("*.csv")

for report in files:
    clean(report)
    print(f"✓ {report.name}")

# Small script. Big time saved.
Ready to run
Find your way in

What are you working on?

View all topics →
Recently published

Fresh from the notebook

View all guides →