File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
An unofficial Python library for the [ Metabase API] ( https://www.metabase.com/learn/administration/metabase-api ) .
7
7
8
- This API is still experimental and may change significantly between minor versions.
9
8
10
9
## Installation
11
10
@@ -14,6 +13,8 @@ pip install metabase-python
14
13
```
15
14
16
15
## Usage
16
+ This API is still experimental and may change significantly between minor versions.
17
+
17
18
18
19
Start by creating an instance of Metabase with your credentials. This connection will automatically be used by any
19
20
object that interacts with the Metabase API.
@@ -27,7 +28,8 @@ metabase = Metabase(
27
28
)
28
29
```
29
30
30
- You can then interact with any of the supported endpoints. All changes are reflected in Metabase instantly.
31
+ You can then interact with any of the supported endpoints through the classes included in this package. All changes
32
+ are reflected in Metabase instantly.
31
33
32
34
``` python
33
35
from metabase import User
@@ -87,7 +89,7 @@ for user in User.list():
87
89
```
88
90
89
91
You can also execute queries and get results back as a Pandas DataFrame. Currently, you need to provide
90
- the exact MBQL (i.e. Metabase Query Language) as the ` query ` argument -- future iterations will improve this workflow .
92
+ the exact MBQL (i.e. Metabase Query Language) as the ` query ` argument.
91
93
``` python
92
94
from metabase import Dataset
93
95
You can’t perform that action at this time.
0 commit comments