Metadata-Version: 2.1
Name: objexplore
Version: 0.9.5
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)

![screenshot](images/screenshot.png)


## Install

```
pip install objexplore
```

or

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

## Usage

```python
from objexplore import explore
import pandas
explore(pandas)
```

## Features
- Dictionary explorer TODO
- List/Set explorer TODO
- DataFrame explorer TODO

## Contributing
Contributions welcome!


