Metadata-Version: 2.4
Name: matrix-tasks
Version: 1.0.0
Summary: Matrix Internship Tasks: word frequency, password checker, maze solver, chatbot with memory
Author-email: Dipaon <dipaon11@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Matrix Tasks

## Setup
- python -m venv .venv && .venv\Scripts\activate
- pip install -r requirements.txt

## Usage
- python main.py wordfreq --file sample.txt --top 10
- type text and pipe into wordfreq: type sample.txt | python main.py wordfreq
- python main.py password "Abcdef12!"
- python main.py maze --start 0 0 --goal 4 4 --maze-file maze.txt
- python main.py chatbot

## Maze file format
Each line is space-separated 0/1 values, e.g.:
0 0 1 0
1 0 0 0
0 0 0 1
