Metadata-Version: 2.4
Name: methodverse
Version: 1.0.1
Summary: A quick reference tool for Python built-in methods.
Author-email: marvinminhaz <marvinminhaz@outlook.com>
License-Expression: MIT
Keywords: python,reference,methods,builtins
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Methodverse
A fast, lightweight reference engine for Python built-in methods. Get quick
explanations and examples without digging through official documentation.

## Installation
pip install methodverse

## Usage
from methodverse import explain, enlist

explain('list', 'append')   # prints description + example
enlist('dict')              # prints all available dict methods

## Structure
```
methodverse/
├── methodverse/
│   ├── __init__.py
│   └── core.py
├── README.md
├── LICENSE
└── pyproject.toml
```
