File size: 269 Bytes
2fdce3c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# flake8: noqa
__version__ = "4.2.2"
from .vegalite import *
from . import examples
def load_ipython_extension(ipython):
from ._magics import vega, vegalite
ipython.register_magic_function(vega, "cell")
ipython.register_magic_function(vegalite, "cell")
|