/metabaseclient

Metabase is an open-source business intelligence tool. It lets you ask questions about your data, and displays answers in formats that make sense and it also provides a restful API interface to extend its features. This python wrapper is built upon restful API to help its users in extending its feature.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Metabase Client

A python wrapper for metabase api


Index

  • Installation
  • Basic Usage

Installation

pip install MetabaseClient


Basic Usage

  • import py package

    import MetabaseClient as MC

  • init client

    client = MC.Client(url,username,password)

  • Stored Queries or Cards

    client.card().get()

  • Stored dashboard

    client.dashboard().get()

  • Get Utils

    client.utils()


Full Documentation : https://github.com/vangiex/metabaseclient/wiki