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.
Files changed (22) hide show
  1. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/PKG-INFO +14 -8
  2. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/README.md +13 -7
  3. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/__init__.py +1 -1
  4. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/pyproject.toml +1 -1
  5. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/auth.py +0 -0
  6. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/__init__.py +0 -0
  7. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/admin.py +0 -0
  8. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/capacity.py +0 -0
  9. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/database.py +0 -0
  10. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/dataflow.py +0 -0
  11. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/dataset.py +0 -0
  12. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/kql.py +0 -0
  13. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/notebook.py +0 -0
  14. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/operations.py +0 -0
  15. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/pipeline.py +0 -0
  16. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/report.py +0 -0
  17. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/utilities.py +0 -0
  18. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/fabric/workspace.py +0 -0
  19. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/graph/__init__.py +0 -0
  20. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/graph/client.py +0 -0
  21. {msdev_kit-0.1.2 → msdev_kit-0.1.3}/msdev_kit/sharepoint/__init__.py +0 -0
  22. {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.2
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](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)
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](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
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](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)
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](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
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
 
@@ -1,3 +1,3 @@
1
1
  from .auth import Auth
2
2
 
3
- __version__ = "0.1.2"
3
+ __version__ = "0.1.3"
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "msdev-kit"
3
3
  description = "Microsoft developer toolkit: Fabric, MS Graph, and SharePoint"
4
- version = "0.1.2"
4
+ version = "0.1.3"
5
5
  requires-python = ">=3.10"
6
6
  readme = "README.md"
7
7
  license = {text = "MIT"}
File without changes