msdev-kit 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/PKG-INFO +14 -8
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/README.md +13 -7
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/__init__.py +1 -1
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/pyproject.toml +1 -1
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/auth.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/__init__.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/admin.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/capacity.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/database.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/dataflow.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/dataset.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/kql.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/notebook.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/operations.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/pipeline.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/report.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/utilities.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/workspace.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/graph/__init__.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/graph/client.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/sharepoint/__init__.py +0 -0
- {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/sharepoint/client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: msdev-kit
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Microsoft developer toolkit: Fabric, MS Graph, and SharePoint
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Bernardo Rufino
|
|
@@ -38,7 +38,13 @@ Microsoft developer toolkit for Python: Fabric/Power BI, MS Graph (Entra), and S
|
|
|
38
38
|
|
|
39
39
|
## Table of Contents
|
|
40
40
|
|
|
41
|
-
[Installation](
|
|
41
|
+
- [Installation](#installation)
|
|
42
|
+
- [Quick Start](#quick-start)
|
|
43
|
+
- [Authentication](#authentication)
|
|
44
|
+
- [Fabric & Power BI](#fabric--power-bi)
|
|
45
|
+
- [MS Graph (Entra)](#ms-graph-entra)
|
|
46
|
+
- [SharePoint](#sharepoint)
|
|
47
|
+
- [Limitations](#limitations)
|
|
42
48
|
|
|
43
49
|
---
|
|
44
50
|
|
|
@@ -145,12 +151,12 @@ auth = Auth(tenant_id, client_id, client_secret)
|
|
|
145
151
|
|
|
146
152
|
Fabric classes take a token string — call `auth.get_token('fabric')` or `auth.get_token('pbi')` depending on the API.
|
|
147
153
|
|
|
148
|
-
- [Workspace](
|
|
149
|
-
- [Dataset](
|
|
150
|
-
- [Report](
|
|
151
|
-
- [Dataflow](
|
|
152
|
-
- [Pipeline](
|
|
153
|
-
- [Other modules](
|
|
154
|
+
- [Workspace](#workspace) — workspaces, users, permissions
|
|
155
|
+
- [Dataset](#dataset) — semantic models, DAX queries, permissions
|
|
156
|
+
- [Report](#report) — metadata, definitions, visuals, measures
|
|
157
|
+
- [Dataflow](#dataflow) — Gen1, Gen2, Gen2 CI/CD management
|
|
158
|
+
- [Pipeline](#pipeline) — Data Pipeline management
|
|
159
|
+
- [Other modules](#other-modules) — Capacity, Admin, KQL, Notebook, Database
|
|
154
160
|
|
|
155
161
|
### Workspace
|
|
156
162
|
|
|
@@ -8,7 +8,13 @@ Microsoft developer toolkit for Python: Fabric/Power BI, MS Graph (Entra), and S
|
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
10
10
|
|
|
11
|
-
[Installation](
|
|
11
|
+
- [Installation](#installation)
|
|
12
|
+
- [Quick Start](#quick-start)
|
|
13
|
+
- [Authentication](#authentication)
|
|
14
|
+
- [Fabric & Power BI](#fabric--power-bi)
|
|
15
|
+
- [MS Graph (Entra)](#ms-graph-entra)
|
|
16
|
+
- [SharePoint](#sharepoint)
|
|
17
|
+
- [Limitations](#limitations)
|
|
12
18
|
|
|
13
19
|
---
|
|
14
20
|
|
|
@@ -115,12 +121,12 @@ auth = Auth(tenant_id, client_id, client_secret)
|
|
|
115
121
|
|
|
116
122
|
Fabric classes take a token string — call `auth.get_token('fabric')` or `auth.get_token('pbi')` depending on the API.
|
|
117
123
|
|
|
118
|
-
- [Workspace](
|
|
119
|
-
- [Dataset](
|
|
120
|
-
- [Report](
|
|
121
|
-
- [Dataflow](
|
|
122
|
-
- [Pipeline](
|
|
123
|
-
- [Other modules](
|
|
124
|
+
- [Workspace](#workspace) — workspaces, users, permissions
|
|
125
|
+
- [Dataset](#dataset) — semantic models, DAX queries, permissions
|
|
126
|
+
- [Report](#report) — metadata, definitions, visuals, measures
|
|
127
|
+
- [Dataflow](#dataflow) — Gen1, Gen2, Gen2 CI/CD management
|
|
128
|
+
- [Pipeline](#pipeline) — Data Pipeline management
|
|
129
|
+
- [Other modules](#other-modules) — Capacity, Admin, KQL, Notebook, Database
|
|
124
130
|
|
|
125
131
|
### Workspace
|
|
126
132
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|