Metadata-Version: 2.4
Name: mypractical
Version: 0.2.0
Summary: College practical programs, importable and exportable as standalone .py files
Author: mypractical
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# mypractical
 
A collection of college practical programs, packaged so each one can be
generated as a standalone `.py` file on demand.
 
## Install
 
```bash
pip install mypractical
```
 
## Usage
 
```python
from mypractical import dl_p1_slp
dl_p1_slp.generate()
```
 
This writes `dl_p1_slp.py` (containing the full program) into your
current working directory.
 
## Available practicals
 
- `dl_p1_slp` — Single Layer Perceptron
- `dl_p2_1_mlp` — Multi-Layer Perceptron (XOR) using scikit-learn's MLPClassifier
 
More will be added over time. Each follows the same pattern:
 
```python
from mypractical import moduleN
moduleN.generate()
