Integrations
          ipyvizzu.integrations
  A module for integrations.
          ipyvizzu.integrations.fugue
  A module for Fugue integration.
Example
Users should not instantiate this module directly. As long as you installed fugue and ipyvizzu, the extension is auto-registered.
from fugue import fsql
fsql('''
SELECT a, SUM(b) AS b FROM spark.table
GROUP BY a ORDER BY b
OUTPUT USING vizzu:bar(x="a", y="b", title="title")
''').run(spark_session)