Metadata-Version: 2.1
Name: pyhstr
Version: 0.0.2
Summary: History manager extension for the standard Python shell
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. Inspired by hstr.

### Installation

```bash
pip install pyhstr
```

### Usage

You need to import `hh` from `pyhstr` and then use `hh` to invoke the program. 

Making an alias should be more convenient though:

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

![screenshot](pyhstr.gif)

### FIXME 

- make it work for ipython (how do I set sys.displayhook on IPython? (help needed))

