Skip to content

STUnitas/metabase-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

metabase-py

python wrapper for metabase api

Installation

pip install metabase

How to use

import pprint
from metabase import Metabase

metabase = Metabase(email="<email>", password="<password>")

# get all cards
pprint.pprint(metabase.get("/card/"))

payload={
        'dataset_query': {
            'database': 2,
            'native': {
                'query': "SELECT 1,2,3;" },
            'type': 'native' },
        'display': "area",
        'name': 'test:1',
        'visualization_settings': {
        'graph.dimensions': ['a'],
        'graph.metrics': ['b', 'c'],
	'graph.show_goal': False,
        'line.interpolate': 'linear',
        'line.marker_enabled': True,
	'line.missing': 'interpolate',
	'stackable.stack_type': 'stacked',
	'table.column_widths': [] }}

pprint.pprint(metabase.post("/card/", json=payload))
pprint.pprint(metabase.get("/card/"))

Environments

  • METABASE_ENDPOINT
  • METABASE_AUTH_EMAIL
  • METABASE_AUTH_PASSWORD

Methods

  • get(<URL>, params=data)
  • post(<URL>, json=data)
  • head(<URL>, ...)
  • delete(<URL>, ...)

Features

  • can set session key as manually
  • auth_callback authentication callback (For custom storage)

Notice

This library wraps requests

Contributors

see here

About

python wrapper for metabase api

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 6

Languages