Files
task-69a96fe3c46fd26feae6c2da/README.md
T
2026-05-28 07:23:32 +00:00

38 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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.
```bash
python3 -m pip install --upgrade pip # optional, for a clean environment
```
## Usage
Run the script directly:
```bash
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.