Metadata-Version: 2.1
Name: pyhstr
Version: 0.1.0
Summary: History manager extension for the standard Python shell and IPython
Home-page: https://github.com/adder46/pyhstr
License: UNKNOWN
Keywords: python history shell extension
Author: adder46
Author-email: dedmauz69@gmail.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# pyhstr

**pyhstr** is history suggest box for the standard Python shell.
It also works with IPython. Inspired by hstr.

### Installation

```bash
pip install pyhstr
```

### Usage

This currently works for the standard and IPython shells.
On standard shell, just first import `hh` from `pyhstr`, and then use `hh` to invoke the program. 
On IPython, it's enough to import `pyhstr` and then use `%hh`.

Making an alias should be more convenient though:

```bash
alias py='python3 -ic "from pyhstr import hh"'
```

![screenshot](pyhstr.gif)

