mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
13 lines
269 B
Python
13 lines
269 B
Python
# 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")
|