Metadata-Version: 2.4
Name: mypyyy
Version: 0.0.1
Summary: A collection of Python practical codes with source introspection.
Project-URL: Homepage, https://github.com/yourusername/mypyyy
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# MyPyyy

This package contains python practical codes extracted from the PDF.
Each function, when called, displays its own source code before execution.

## Installation

```bash
pip install mypyyy
```

## Usage

```python
import py

# Display list of all available practicals
py.help()

# Run a specific practical
py.io()     # Basic Input/Output
py.calc()   # Arithmetic Operations
py.files()  # File Handling
```
