Metadata-Version: 2.4
Name: error_explainer_cl
Version: 0.1.0
Summary: 🐍 A CLI tool to explain Python errors in plain English.
Author-email: Ejike Anazor <ejikeanaz66@gmail.com>
Description-Content-Type: text/markdown
License-File: LICENSE

## 🛠️ Usage

Just type the name of the error!

```bash
error_explainer_cl ModuleNotFoundError


>>>
💥 Error Match Found:

🧠 Error: ModuleNotFoundError
📖 Explanation: You are trying to import a module that is not installed.
🛠️ Fix: Run `pip install <module_name>` to install the missing module.


>>

