xonsh/xontrib/mpl.py

13 lines
226 B
Python
Raw Normal View History

2016-05-08 20:17:48 -04:00
"""Matplotlib xontribution."""
2016-05-08 22:57:01 -04:00
from xonsh.proc import foreground as _foreground
2016-05-08 20:17:48 -04:00
2016-05-08 22:57:01 -04:00
@_foreground
2016-05-08 20:17:48 -04:00
def _mpl(args, stdin=None):
"""Hooks to matplotlib"""
2016-05-08 22:57:01 -04:00
from xontrib.mplhooks import show
2016-05-08 20:17:48 -04:00
show()
2016-05-08 22:57:01 -04:00
aliases['mpl'] = _mpl