msdev-kit 0.1.1__tar.gz → 0.1.2__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.1 → msdev_kit-0.1.2}/PKG-INFO +8 -14
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/README.md +7 -13
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/__init__.py +1 -1
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/pyproject.toml +1 -1
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/auth.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/__init__.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/admin.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/capacity.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/database.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/dataflow.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/dataset.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/kql.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/notebook.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/operations.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/pipeline.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/report.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/utilities.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/fabric/workspace.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/graph/__init__.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/graph/client.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/msdev_kit/sharepoint/__init__.py +0 -0
- {msdev_kit-0.1.1 → msdev_kit-0.1.2}/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.2
|
|
4
4
|
Summary: Microsoft developer toolkit: Fabric, MS Graph, and SharePoint
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Bernardo Rufino
|
|
@@ -38,13 +38,7 @@ Microsoft developer toolkit for Python: Fabric/Power BI, MS Graph (Entra), and S
|
|
|
38
38
|
|
|
39
39
|
## Table of Contents
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
- [Quick Start](#quick-start)
|
|
43
|
-
- [Authentication](#authentication)
|
|
44
|
-
- [Fabric & Power BI](#fabric--power-bi) — workspaces, datasets, reports, dataflows, pipelines, notebooks, and more
|
|
45
|
-
- [MS Graph (Entra)](#ms-graph-entra) — users and groups via MS Graph API
|
|
46
|
-
- [SharePoint](#sharepoint) — files and folders via MS Graph API
|
|
47
|
-
- [Limitations](#limitations)
|
|
41
|
+
[Installation](https://github.com/Bernardo-Rufino/msdev-kit#installation) · [Quick Start](https://github.com/Bernardo-Rufino/msdev-kit#quick-start) · [Authentication](https://github.com/Bernardo-Rufino/msdev-kit#authentication) · [Fabric & Power BI](https://github.com/Bernardo-Rufino/msdev-kit#fabric--power-bi) · [MS Graph (Entra)](https://github.com/Bernardo-Rufino/msdev-kit#ms-graph-entra) · [SharePoint](https://github.com/Bernardo-Rufino/msdev-kit#sharepoint) · [Limitations](https://github.com/Bernardo-Rufino/msdev-kit#limitations)
|
|
48
42
|
|
|
49
43
|
---
|
|
50
44
|
|
|
@@ -151,12 +145,12 @@ auth = Auth(tenant_id, client_id, client_secret)
|
|
|
151
145
|
|
|
152
146
|
Fabric classes take a token string — call `auth.get_token('fabric')` or `auth.get_token('pbi')` depending on the API.
|
|
153
147
|
|
|
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
|
|
148
|
+
- [Workspace](https://github.com/Bernardo-Rufino/msdev-kit#workspace) — workspaces, users, permissions
|
|
149
|
+
- [Dataset](https://github.com/Bernardo-Rufino/msdev-kit#dataset) — semantic models, DAX queries, permissions
|
|
150
|
+
- [Report](https://github.com/Bernardo-Rufino/msdev-kit#report) — metadata, definitions, visuals, measures
|
|
151
|
+
- [Dataflow](https://github.com/Bernardo-Rufino/msdev-kit#dataflow) — Gen1, Gen2, Gen2 CI/CD management
|
|
152
|
+
- [Pipeline](https://github.com/Bernardo-Rufino/msdev-kit#pipeline) — Data Pipeline management
|
|
153
|
+
- [Other modules](https://github.com/Bernardo-Rufino/msdev-kit#other-modules) — Capacity, Admin, KQL, Notebook, Database
|
|
160
154
|
|
|
161
155
|
### Workspace
|
|
162
156
|
|
|
@@ -8,13 +8,7 @@ Microsoft developer toolkit for Python: Fabric/Power BI, MS Graph (Entra), and S
|
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
- [Quick Start](#quick-start)
|
|
13
|
-
- [Authentication](#authentication)
|
|
14
|
-
- [Fabric & Power BI](#fabric--power-bi) — workspaces, datasets, reports, dataflows, pipelines, notebooks, and more
|
|
15
|
-
- [MS Graph (Entra)](#ms-graph-entra) — users and groups via MS Graph API
|
|
16
|
-
- [SharePoint](#sharepoint) — files and folders via MS Graph API
|
|
17
|
-
- [Limitations](#limitations)
|
|
11
|
+
[Installation](https://github.com/Bernardo-Rufino/msdev-kit#installation) · [Quick Start](https://github.com/Bernardo-Rufino/msdev-kit#quick-start) · [Authentication](https://github.com/Bernardo-Rufino/msdev-kit#authentication) · [Fabric & Power BI](https://github.com/Bernardo-Rufino/msdev-kit#fabric--power-bi) · [MS Graph (Entra)](https://github.com/Bernardo-Rufino/msdev-kit#ms-graph-entra) · [SharePoint](https://github.com/Bernardo-Rufino/msdev-kit#sharepoint) · [Limitations](https://github.com/Bernardo-Rufino/msdev-kit#limitations)
|
|
18
12
|
|
|
19
13
|
---
|
|
20
14
|
|
|
@@ -121,12 +115,12 @@ auth = Auth(tenant_id, client_id, client_secret)
|
|
|
121
115
|
|
|
122
116
|
Fabric classes take a token string — call `auth.get_token('fabric')` or `auth.get_token('pbi')` depending on the API.
|
|
123
117
|
|
|
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
|
|
118
|
+
- [Workspace](https://github.com/Bernardo-Rufino/msdev-kit#workspace) — workspaces, users, permissions
|
|
119
|
+
- [Dataset](https://github.com/Bernardo-Rufino/msdev-kit#dataset) — semantic models, DAX queries, permissions
|
|
120
|
+
- [Report](https://github.com/Bernardo-Rufino/msdev-kit#report) — metadata, definitions, visuals, measures
|
|
121
|
+
- [Dataflow](https://github.com/Bernardo-Rufino/msdev-kit#dataflow) — Gen1, Gen2, Gen2 CI/CD management
|
|
122
|
+
- [Pipeline](https://github.com/Bernardo-Rufino/msdev-kit#pipeline) — Data Pipeline management
|
|
123
|
+
- [Other modules](https://github.com/Bernardo-Rufino/msdev-kit#other-modules) — Capacity, Admin, KQL, Notebook, Database
|
|
130
124
|
|
|
131
125
|
### Workspace
|
|
132
126
|
|
|
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
|