12 lines
269 B
Python
12 lines
269 B
Python
# 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")
|