Spaces:
Running
Running
File size: 269 Bytes
ba2f5d6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# flake8: noqa
__version__ = "4.2.0"
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")
|