Metadata-Version: 2.4
Name: pytensorkittt
Version: 0.1.0
Summary: Instant clipboard access to all 8 Deep Learning lab programs
Project-URL: Homepage, https://github.com/yourusername/dlprograms
Project-URL: Issues, https://github.com/yourusername/dlprograms/issues
License: MIT
License-File: LICENSE
Keywords: CNN,RNN,deep learning,keras,lab programs,tensorflow
Requires-Python: >=3.8
Requires-Dist: pyperclip>=1.8.0
Description-Content-Type: text/markdown

# dlprograms

Instantly copy any of the 8 Deep Learning lab programs to your clipboard — or print/fetch them as strings.

## Install

```bash
pip install dlprograms
```

> **Linux users:** also run `sudo apt install xclip` for clipboard support.

## Programs included

| # | Description |
|---|-------------|
| 1 | AND Gate Perceptron (Binary Classification) |
| 2 | Fashion-MNIST MLP Classifier |
| 3 | MNIST Activation Function Comparison (sigmoid / relu / tanh) |
| 4 | CIFAR-10 CNN with Optimizer Comparison (SGD / Adam / RMSprop) |
| 5 | Fashion-MNIST with L2 Regularization and Dropout |
| 6 | MNIST CNN (Convolutional Neural Network) |
| 7 | Text Classification with SimpleRNN |
| 8 | Flower Classification with VGG16 Transfer Learning |

## Usage

```python
from dlprograms import copy_program, print_program, get_program, list_programs

# See all programs
list_programs()

# Copy program 3 to clipboard — then paste anywhere
copy_program(3)

# Print program 1 to terminal
print_program(1)

# Get source code as a string
code = get_program(7)
print(code)
```

## License

MIT
