Metadata-Version: 2.1
Name: pyexplorer
Version: 0.1a1
Summary: Explore python modules interactively.
Home-page: https://github.com/dexpota/pyexplorer
Author: Fabrizio Destro
Author-email: destro.fabrizio@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: termcolor
Requires-Dist: prompt-toolkit
Requires-Dist: future

# pyexplorer

> An utility to enable fast exploring of a python package.

[![Build Status](http://img.shields.io/travis/com/dexpota/pyexplorer.svg?style=flat-square)](https://travis-ci.org/dexpota/pyexplorer)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/pyexplorer.svg?style=flat-square)](https://pypi.python.org/pypi/pyexplorer/)
[![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](http://dexpota.mit-license.org)

## Usage

To start using `pyexplorer` just type the command followed by the name of the
package, module or attribute

`pyexplorer <package>.<module>.<attribute>`

You can start exploring a package by typing its name. This will shows you a
list of its modules and subpackages.

`pyexplorer <package>`

## Installation

You can install the latest released version of `pyexplorer` using `pip`.

`pip install pyexplorer`

Alternativaly you can install it from the source code.

```bash
git clone git@github.com:dexpota/pyexplorer.git
cd pyexplorer
pip install -e .
```



