38 lines
1.2 KiB
Markdown
38 lines
1.2 KiB
Markdown
# 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 third‑party 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*, *Hands‑on 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, human‑readable output without external dependencies.
|