2026-05-28 07:33:18 +00:00
2026-05-28 07:33:18 +00:00
2026-05-26 13:09:39 +00:00
2026-05-26 13:20:46 +00:00
2026-05-28 07:32:54 +00:00
2026-05-28 07:23:32 +00:00
2026-05-28 07:32:37 +00:00
2026-05-28 07:33:04 +00:00
2026-05-28 07:30:07 +00:00

AI Fluency Personal Plan

This repository contains a simple Python script that generates a personal AI fluency plan based on the course structure described in the assignment. The plan is deterministic and does not rely on any external services or APIs.

Project Structure

├── main.py          # Generates and prints the plan
├── requirements.txt # Empty  no thirdparty dependencies are required
└── README.md        # This file

Installation

No installation is necessary. The script uses only the Python standard library.

python3 -m pip install --upgrade pip  # optional, for a clean environment

Usage

Run the script directly:

python main.py

The output will be a formatted plan with sections such as Foundational Knowledge, Handson Projects, Advanced Topics, etc.

How it Works

  • Plan, PlanSection, and PlanItem are simple dataclasses that hold the structure of the plan.
  • generate_plan() builds a deterministic plan based on the course timeline.
  • The main() function prints the plan to stdout.

The script is intentionally straightforward it demonstrates how to produce structured, humanreadable output without external dependencies.

S
Description
No description provided
Readme 57 KiB
Languages
Python 100%