msfabricpysdkcore 0.0.1__tar.gz → 0.0.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.
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/PKG-INFO +5 -5
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/README.md +3 -3
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore.egg-info/PKG-INFO +5 -5
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/pyproject.toml +2 -2
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/LICENSE +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/__init__.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/auth.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/client.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/item.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/job_instance.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/long_running_operation.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/onelakeshortcut.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/workspace.py +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore.egg-info/SOURCES.txt +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore.egg-info/dependency_links.txt +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore.egg-info/requires.txt +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore.egg-info/top_level.txt +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/setup.cfg +0 -0
- {msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/setup.py +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: msfabricpysdkcore
|
3
|
-
Version: 0.0.
|
4
|
-
Summary: A
|
3
|
+
Version: 0.0.2
|
4
|
+
Summary: A Python SDK for Microsoft Fabric
|
5
5
|
Author: Andreas Rederer
|
6
6
|
Project-URL: Homepage, https://github.com/DaSenf1860/ms-fabric-sdk-core
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
@@ -13,7 +13,7 @@ License-File: LICENSE
|
|
13
13
|
Requires-Dist: requests>=2.30.0
|
14
14
|
Requires-Dist: azure-identity>=1.15.0
|
15
15
|
|
16
|
-
# A
|
16
|
+
# A Python SDK for Microsoft Fabric
|
17
17
|
|
18
18
|
This is a Python SDK for Microsoft Fabric. It is a wrapper around the REST APIs of Fabric*.
|
19
19
|
|
@@ -24,11 +24,11 @@ They are designed to automate your Fabric processes.
|
|
24
24
|
|
25
25
|
This SDK helps to interact with the Fabric APIs in a more Pythonic way.
|
26
26
|
Additionally it brings some extra features like:
|
27
|
-
- Authentication is handled for you (currently Azure CLI
|
27
|
+
- Authentication is handled for you (currently Azure CLI Authentication and Service Principal Authentication are supported)
|
28
28
|
- Waiting for completion of long running operations
|
29
29
|
- Retry logic when hitting the API rate limits
|
30
30
|
- Referencing objects by name instead of ID
|
31
|
-
- More granular objects, e.g. a
|
31
|
+
- More granular objects, e.g. a Workspace and Item object instead of referencing IDs all the time
|
32
32
|
- Do bulk operations**
|
33
33
|
- Pagination support**
|
34
34
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# A
|
1
|
+
# A Python SDK for Microsoft Fabric
|
2
2
|
|
3
3
|
This is a Python SDK for Microsoft Fabric. It is a wrapper around the REST APIs of Fabric*.
|
4
4
|
|
@@ -9,11 +9,11 @@ They are designed to automate your Fabric processes.
|
|
9
9
|
|
10
10
|
This SDK helps to interact with the Fabric APIs in a more Pythonic way.
|
11
11
|
Additionally it brings some extra features like:
|
12
|
-
- Authentication is handled for you (currently Azure CLI
|
12
|
+
- Authentication is handled for you (currently Azure CLI Authentication and Service Principal Authentication are supported)
|
13
13
|
- Waiting for completion of long running operations
|
14
14
|
- Retry logic when hitting the API rate limits
|
15
15
|
- Referencing objects by name instead of ID
|
16
|
-
- More granular objects, e.g. a
|
16
|
+
- More granular objects, e.g. a Workspace and Item object instead of referencing IDs all the time
|
17
17
|
- Do bulk operations**
|
18
18
|
- Pagination support**
|
19
19
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: msfabricpysdkcore
|
3
|
-
Version: 0.0.
|
4
|
-
Summary: A
|
3
|
+
Version: 0.0.2
|
4
|
+
Summary: A Python SDK for Microsoft Fabric
|
5
5
|
Author: Andreas Rederer
|
6
6
|
Project-URL: Homepage, https://github.com/DaSenf1860/ms-fabric-sdk-core
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
@@ -13,7 +13,7 @@ License-File: LICENSE
|
|
13
13
|
Requires-Dist: requests>=2.30.0
|
14
14
|
Requires-Dist: azure-identity>=1.15.0
|
15
15
|
|
16
|
-
# A
|
16
|
+
# A Python SDK for Microsoft Fabric
|
17
17
|
|
18
18
|
This is a Python SDK for Microsoft Fabric. It is a wrapper around the REST APIs of Fabric*.
|
19
19
|
|
@@ -24,11 +24,11 @@ They are designed to automate your Fabric processes.
|
|
24
24
|
|
25
25
|
This SDK helps to interact with the Fabric APIs in a more Pythonic way.
|
26
26
|
Additionally it brings some extra features like:
|
27
|
-
- Authentication is handled for you (currently Azure CLI
|
27
|
+
- Authentication is handled for you (currently Azure CLI Authentication and Service Principal Authentication are supported)
|
28
28
|
- Waiting for completion of long running operations
|
29
29
|
- Retry logic when hitting the API rate limits
|
30
30
|
- Referencing objects by name instead of ID
|
31
|
-
- More granular objects, e.g. a
|
31
|
+
- More granular objects, e.g. a Workspace and Item object instead of referencing IDs all the time
|
32
32
|
- Do bulk operations**
|
33
33
|
- Pagination support**
|
34
34
|
|
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "msfabricpysdkcore"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.2"
|
8
8
|
dynamic = ["dependencies"]
|
9
9
|
authors = [
|
10
10
|
{ name="Andreas Rederer"},
|
11
11
|
]
|
12
|
-
description = "A
|
12
|
+
description = "A Python SDK for Microsoft Fabric"
|
13
13
|
readme = "README.md"
|
14
14
|
requires-python = ">=3.11"
|
15
15
|
classifiers = [
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore/long_running_operation.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
{msfabricpysdkcore-0.0.1 → msfabricpysdkcore-0.0.2}/msfabricpysdkcore.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|