Metadata-Version: 2.4
Name: guedo
Version: 0.1.0
Summary: A comprehensive program provider library for electrical engineering education
Home-page: https://github.com/yourusername/guedo
Author: Your Name
Author-email: your.email@example.com
License: MIT
Keywords: electrical engineering education programs
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Education
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Guedo - Electrical Engineering Program Library

A comprehensive Python library providing educational programs for electrical engineering concepts, including circuit analysis, Kirchhoff's laws, and signal processing demonstrations.

## Features

- **14 comprehensive programs** covering electrical engineering fundamentals
- Arithmetic calculations and mathematical operations
- Kirchhoff's Current Law (KCL) verification with simulation
- Kirchhoff's Voltage Law (KVL) verification and visualization
- Ohm's Law verification
- Power calculations (Active, Reactive, and Apparent Power)
- Logic gate implementations
- Circuit analysis (RL and RC circuits)
- Solar panel characteristics analysis
- Interactive visualizations with matplotlib

## Installation

Install guedo directly from PyPI:

```bash
pip install guedo
```

## Quick Start

```python
from guedo import dl

# Display program 1 (Arithmetic Calculations)
dl(1)

# Display program 6 (KCL Simulation)
dl(6)

# Display program 8 (KVL Simulation)
dl(8)
```

## Available Programs

| Program | Description |
|---------|-------------|
| 1 | Arithmetic Calculations |
| 2 | Multiplication Table |
| 3 | Ohm's Law Verification |
| 4 | KCL Verification |
| 5 | KCL Verification (Multiple Branches) |
| 6 | KCL Simulation with Random Currents |
| 7 | KCL Verification with Graphical Representation |
| 8 | KVL Simulation and Visualization |
| 9 | KVL Verification |
| 10 | Interactive KCL with Sliders |
| 11 | Active, Reactive, and Apparent Power |
| 12 | Logic Gates (AND, OR, NOT, NAND, NOR, XOR) |
| 13 | RL and RC Circuit Frequency Response |
| 14 | Solar Panel I-V and P-V Characteristics |

## Usage Examples

### Example 1: View a Specific Program
```python
from guedo import dl

# Get and display program 3 (Ohm's Law)
dl(3)
```

### Example 2: Run Interactive Programs
Some programs are interactive and will request user input:
```python
from guedo import dl

# Run program 9 (KVL with user input)
dl(9)
```

### Example 3: View Visualizations
Programs 7, 8, 10, 13, and 14 include matplotlib visualizations:
```python
from guedo import dl

# Display program 14 (Solar Panel Characteristics)
dl(14)
```

## Requirements

- Python 3.6 or higher
- matplotlib (for visualization programs)
- numpy (for numerical operations)
- ipywidgets (for interactive programs)

## License

This project is licensed under the MIT License - see the LICENSE file for details.

## Author

Your Name (your.email@example.com)

## Contributing

Contributions are welcome! Feel free to open issues and submit pull requests.

## Support

For support, issues, or questions, please visit the project repository or contact the author.
