brynq-sdk-azure 1.0.0__tar.gz → 1.0.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_azure
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Azure wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -1,3 +1,3 @@
1
1
  from brynq_sdk.azure.entra import Entra
2
2
  from brynq_sdk.azure.azure_connection import AzureConnection
3
- from brynq_sdk.azure.blob_storage import BlobStorage
3
+ from brynq_sdk.azure.blob_storage import BlobStorage
@@ -11,7 +11,6 @@ from msal import ConfidentialClientApplication
11
11
  from typing import Union, List
12
12
  import os
13
13
 
14
-
15
14
  class Entra(BrynQ):
16
15
 
17
16
  def __init__(self, label: Union[str, List], debug: bool = False):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-azure
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Azure wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -1,6 +1,5 @@
1
1
  setup.py
2
2
  brynq_sdk/azure/__init__.py
3
- brynq_sdk/azure/authentication.py
4
3
  brynq_sdk/azure/azure_connection.py
5
4
  brynq_sdk/azure/blob_storage.py
6
5
  brynq_sdk/azure/entra.py
@@ -2,7 +2,7 @@ from setuptools import setup
2
2
 
3
3
  setup(
4
4
  name='brynq_sdk_azure',
5
- version='1.0.0',
5
+ version='1.0.1',
6
6
  description='Azure wrapper from BrynQ',
7
7
  long_description='Azure wrapper from BrynQ',
8
8
  author='BrynQ',
@@ -1,7 +0,0 @@
1
- from msal import ConfidentialClientApplication
2
-
3
-
4
- class AzureAuthentication():
5
- def __init__(self):
6
- pass
7
-