Metadata-Version: 2.4
Name: consolar
Version: 0.0.1
Summary: A Console Framework for Interactive Applications
Home-page: https://github.com/Samyar-Sharafi/Consolar
Author: Samyar-Sharafi
Author-email: samyar.sharafi.ss@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE
License-File: LICENSE
Requires-Dist: click
Requires-Dist: rich
Requires-Dist: prompt_toolkit
Requires-Dist: inquirer
Requires-Dist: tqdm
Requires-Dist: textual
Requires-Dist: pandas
Requires-Dist: yaml
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

![Alt text]([URL](https://drive.google.com/file/d/1XT4TnNwPUof53r7-mgBNi2qnY1x-xR_F/view?usp=sharing))

---

# ConSolar Framework Documentation

## Overview

*ConSolar* is a console framework for building extensible console applications with plugin support.

---

## Getting Started

### Installation

Clone the repository and install dependencies from `requirements.txt` using `pip install -r requirements.txt`.

### Basic Usage

```python
from consolar import user, Framework, Plugin, load_plugin

# Create a user input

user.user_input("Enter your name:")
print(user.user_value)
```

---

## API Reference

### class user

- `user_input(question: str) -> None`: Prompts the user for input. Result is stored in `user_value`.
- `multi_choice(question: str, options: list) -> None`: Prompts the user to select from options. Result is stored in `user_value`.
- `user_value`: Stores the last answer from user input or choice.

### class Framework

- `register_plugin(plugin: Plugin)`: Registers a plugin instance.
- `plugins`: List of registered plugins.

### class Plugin

- `run()`: Method to be implemented by plugins.

### function load_plugin(module_name: str, class_name: str) -> Plugin

Dynamically loads a plugin class from a module.

---

## Writing Plugins

1. Inherit from `Plugin`:

```python
from consolar.plugin_manger import Plugin
class MyPlugin(Plugin):
    def run(self):
        print("MyPlugin is running!")
```

2. Register with the framework:

```python
from consolar.plugin_manger import Framework
fw = Framework()
fw.register_plugin(MyPlugin())
```

---

## Logger

- automaticly log the target with toggble visbilty

```python
from consolar.logger import log
x = input("foo bar? ")
log(target= x, show_target= True, repeat= 1)
```

---

## Error Handling

- Plugin registration errors are printed to the console.

---

## Contribution

- Fork the repo, add features, and submit pull requests.

---

## License

MIT

Copyright (c) 2025 Samyar Sharafi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

---
