# ipykernel-helper


<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

There’s not many helpers here yet!

## Installation

Install latest from [pypi](https://pypi.org/project/ipykernel-helper/)

``` sh
$ pip install ipykernel_helper
```

## How to use

``` python
from ipykernel_helper import *
from pprint import pprint
```

``` python
a = "hi"
b = dict(d='foo ' * 10)
def f(i:int): ...
```

``` python
_vs,_fs = get_ipython().user_items(max_len=15)
print('--- vars')
pprint(_vs)
print('--- defs')
pprint(_fs)
```

    --- vars
    {'a': 'hi', 'b': "{'d': 'foo foo …"}
    --- defs
    {'f': '(i: int)'}
