Metadata-Version: 2.1
Name: objexplore
Version: 1.0
Summary: Interactive Python Object Explorer
Home-page: https://github.com/kylepollina/objexplore
Author: Kyle Pollina
Author-email: kylepollina@pm.me
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: blessed
Requires-Dist: rich


![logo](images/logo.png)

Objexplore is an interactive Python object explorer. Use it while debugging, or exploring a new library, or whatever!

![cibuild](https://github.com/kylepollina/objexplore/actions/workflows/python-app.yml/badge.svg) ![pypi](https://img.shields.io/pypi/v/objexplore.svg)


https://user-images.githubusercontent.com/13981456/133720490-7bd08dc6-4407-48f1-912a-329be6173619.mov


## Install

```
pip install objexplore
```

or

```
pip install git+https://github.com/kylepollina/objexplore
```

## Usage

```python
from objexplore import explore
import pandas
explore(pandas)
```
Contributions welcome!


