msdev-kit 0.1.1__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.1 → msdev_kit-0.1.3}/PKG-INFO +4 -4
  2. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/README.md +3 -3
  3. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/__init__.py +1 -1
  4. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/pyproject.toml +1 -1
  5. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/auth.py +0 -0
  6. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/__init__.py +0 -0
  7. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/admin.py +0 -0
  8. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/capacity.py +0 -0
  9. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/database.py +0 -0
  10. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/dataflow.py +0 -0
  11. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/dataset.py +0 -0
  12. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/kql.py +0 -0
  13. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/notebook.py +0 -0
  14. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/operations.py +0 -0
  15. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/pipeline.py +0 -0
  16. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/report.py +0 -0
  17. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/utilities.py +0 -0
  18. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/fabric/workspace.py +0 -0
  19. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/graph/__init__.py +0 -0
  20. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/graph/client.py +0 -0
  21. {msdev_kit-0.1.1 → msdev_kit-0.1.3}/msdev_kit/sharepoint/__init__.py +0 -0
  22. {msdev_kit-0.1.1 → 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.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
@@ -41,9 +41,9 @@ Microsoft developer toolkit for Python: Fabric/Power BI, MS Graph (Entra), and S
41
41
  - [Installation](#installation)
42
42
  - [Quick Start](#quick-start)
43
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
44
+ - [Fabric & Power BI](#fabric--power-bi)
45
+ - [MS Graph (Entra)](#ms-graph-entra)
46
+ - [SharePoint](#sharepoint)
47
47
  - [Limitations](#limitations)
48
48
 
49
49
  ---
@@ -11,9 +11,9 @@ Microsoft developer toolkit for Python: Fabric/Power BI, MS Graph (Entra), and S
11
11
  - [Installation](#installation)
12
12
  - [Quick Start](#quick-start)
13
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
14
+ - [Fabric & Power BI](#fabric--power-bi)
15
+ - [MS Graph (Entra)](#ms-graph-entra)
16
+ - [SharePoint](#sharepoint)
17
17
  - [Limitations](#limitations)
18
18
 
19
19
  ---
@@ -1,3 +1,3 @@
1
1
  from .auth import Auth
2
2
 
3
- __version__ = "0.1.1"
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.1"
4
+ version = "0.1.3"
5
5
  requires-python = ">=3.10"
6
6
  readme = "README.md"
7
7
  license = {text = "MIT"}
File without changes