diaspora-event-sdk 0.2.7__py3-none-any.whl → 0.2.9__py3-none-any.whl
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.
- diaspora_event_sdk/sdk/botocore/compat.py +25 -25
- diaspora_event_sdk/version.py +1 -1
- {diaspora_event_sdk-0.2.7.dist-info → diaspora_event_sdk-0.2.9.dist-info}/METADATA +1 -1
- {diaspora_event_sdk-0.2.7.dist-info → diaspora_event_sdk-0.2.9.dist-info}/RECORD +7 -7
- {diaspora_event_sdk-0.2.7.dist-info → diaspora_event_sdk-0.2.9.dist-info}/LICENSE +0 -0
- {diaspora_event_sdk-0.2.7.dist-info → diaspora_event_sdk-0.2.9.dist-info}/WHEEL +0 -0
- {diaspora_event_sdk-0.2.7.dist-info → diaspora_event_sdk-0.2.9.dist-info}/top_level.txt +0 -0
|
@@ -44,8 +44,8 @@ from collections import OrderedDict
|
|
|
44
44
|
from collections.abc import MutableMapping
|
|
45
45
|
from math import floor
|
|
46
46
|
|
|
47
|
-
from dateutil.tz import tzlocal
|
|
48
|
-
from urllib3 import exceptions
|
|
47
|
+
# from dateutil.tz import tzlocal
|
|
48
|
+
# from urllib3 import exceptions
|
|
49
49
|
|
|
50
50
|
from .exceptions import MD5UnavailableError
|
|
51
51
|
|
|
@@ -96,21 +96,21 @@ try:
|
|
|
96
96
|
import xml.etree.cElementTree as ETree
|
|
97
97
|
except ImportError:
|
|
98
98
|
# cElementTree does not exist from Python3.9+
|
|
99
|
-
import xml.etree.ElementTree as ETree
|
|
99
|
+
import xml.etree.ElementTree as ETree # type: ignore
|
|
100
100
|
XMLParseError = ETree.ParseError
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
def filter_ssl_warnings():
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
103
|
+
# def filter_ssl_warnings():
|
|
104
|
+
# # Ignore warnings related to SNI as it is not being used in validations.
|
|
105
|
+
# warnings.filterwarnings(
|
|
106
|
+
# 'ignore',
|
|
107
|
+
# message="A true SSLContext object is not available.*",
|
|
108
|
+
# category=exceptions.InsecurePlatformWarning,
|
|
109
|
+
# module=r".*urllib3\.util\.ssl_",
|
|
110
|
+
# )
|
|
111
111
|
|
|
112
112
|
|
|
113
|
-
@classmethod
|
|
113
|
+
@classmethod # type: ignore
|
|
114
114
|
def from_dict(cls, d):
|
|
115
115
|
new_instance = cls()
|
|
116
116
|
for key, value in d.items():
|
|
@@ -118,7 +118,7 @@ def from_dict(cls, d):
|
|
|
118
118
|
return new_instance
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
@classmethod
|
|
121
|
+
@classmethod # type: ignore
|
|
122
122
|
def from_pairs(cls, pairs):
|
|
123
123
|
new_instance = cls()
|
|
124
124
|
for key, value in pairs:
|
|
@@ -126,8 +126,8 @@ def from_pairs(cls, pairs):
|
|
|
126
126
|
return new_instance
|
|
127
127
|
|
|
128
128
|
|
|
129
|
-
HTTPHeaders.from_dict = from_dict
|
|
130
|
-
HTTPHeaders.from_pairs = from_pairs
|
|
129
|
+
HTTPHeaders.from_dict = from_dict # type: ignore
|
|
130
|
+
HTTPHeaders.from_pairs = from_pairs # type: ignore
|
|
131
131
|
|
|
132
132
|
|
|
133
133
|
def copy_kwargs(kwargs):
|
|
@@ -278,21 +278,21 @@ def _windows_shell_split(s):
|
|
|
278
278
|
return components
|
|
279
279
|
|
|
280
280
|
|
|
281
|
-
def get_tzinfo_options():
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
281
|
+
# def get_tzinfo_options():
|
|
282
|
+
# # Due to dateutil/dateutil#197, Windows may fail to parse times in the past
|
|
283
|
+
# # with the system clock. We can alternatively fallback to tzwininfo when
|
|
284
|
+
# # this happens, which will get time info from the Windows registry.
|
|
285
|
+
# if sys.platform == 'win32':
|
|
286
|
+
# from dateutil.tz import tzwinlocal
|
|
287
287
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
288
|
+
# return (tzlocal, tzwinlocal)
|
|
289
|
+
# else:
|
|
290
|
+
# return (tzlocal,)
|
|
291
291
|
|
|
292
292
|
|
|
293
293
|
# Detect if CRT is available for use
|
|
294
294
|
try:
|
|
295
|
-
import awscrt.auth
|
|
295
|
+
import awscrt.auth # type: ignore[import]
|
|
296
296
|
|
|
297
297
|
# Allow user opt-out if needed
|
|
298
298
|
disabled = os.environ.get('BOTO_DISABLE_CRT', "false")
|
diaspora_event_sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.2.
|
|
1
|
+
__version__ = "0.2.9"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
diaspora_event_sdk/__init__.py,sha256=v8IN3-WFpliakQKru8TAcmQ4IRdvRe_m9-abSDnGIFM,457
|
|
2
|
-
diaspora_event_sdk/version.py,sha256=
|
|
2
|
+
diaspora_event_sdk/version.py,sha256=F8OVhAhMXSkvvXYgZtbPn2SG1AQC3joK4yu-FrHt81Y,22
|
|
3
3
|
diaspora_event_sdk/sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
diaspora_event_sdk/sdk/_environments.py,sha256=QyQA7dV4goUKUoxAoaes8OGv0xKxz2qiFBHNGr-vQNA,204
|
|
5
5
|
diaspora_event_sdk/sdk/aws_iam_msk.py,sha256=rT6RipRVt-Zf7pTsMf9UhH2HDNC0FW28LhciVH_45bc,3942
|
|
@@ -10,7 +10,7 @@ diaspora_event_sdk/sdk/web_client.py,sha256=Rkp0ZUUXCeqbfVFUqX2oxvuLwqqW5_jsJJNN
|
|
|
10
10
|
diaspora_event_sdk/sdk/botocore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
diaspora_event_sdk/sdk/botocore/auth.py,sha256=QXwCNMzM0wAqD64RlFd-K27atRpixti73VKConpb1kk,18699
|
|
12
12
|
diaspora_event_sdk/sdk/botocore/awsrequest.py,sha256=fcR28YxbsCk2ZT1rGtgWxhje-sYt-SxIqixjOWAFLcM,9344
|
|
13
|
-
diaspora_event_sdk/sdk/botocore/compat.py,sha256
|
|
13
|
+
diaspora_event_sdk/sdk/botocore/compat.py,sha256=5A-15L8yJhJLQaWvx3xvLfyf5-oO_Ejc-lK55aF0TjI,11197
|
|
14
14
|
diaspora_event_sdk/sdk/botocore/credentials.py,sha256=upSYlgIcp8piSFtGay4ryiCMqNJD5fWFq802p0DWIfI,2455
|
|
15
15
|
diaspora_event_sdk/sdk/botocore/exceptions.py,sha256=Wcu505IzZuyxOl4aE3iuXL-ByL6GDebWFrby7nACgqY,2002
|
|
16
16
|
diaspora_event_sdk/sdk/botocore/utils.py,sha256=TCSvM3QmwVFTDWmU55c1FtAZS0zMWjTkyywmaL1qfCk,5370
|
|
@@ -26,8 +26,8 @@ diaspora_event_sdk/sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
26
26
|
diaspora_event_sdk/sdk/utils/uuid_like.py,sha256=xbxf0YXpDhdii16lwPLWRN21qFekHrNrqODSToMPtCg,470
|
|
27
27
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
tests/unit/test_client.py,sha256=sJUtPmnNGnohnP38RQrwcJ4D5j3-g1WFQ6gaKf520AQ,3019
|
|
29
|
-
diaspora_event_sdk-0.2.
|
|
30
|
-
diaspora_event_sdk-0.2.
|
|
31
|
-
diaspora_event_sdk-0.2.
|
|
32
|
-
diaspora_event_sdk-0.2.
|
|
33
|
-
diaspora_event_sdk-0.2.
|
|
29
|
+
diaspora_event_sdk-0.2.9.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
30
|
+
diaspora_event_sdk-0.2.9.dist-info/METADATA,sha256=L3RH4LPf5XaJnONbmOfFTK9awU5LT3agzb6KkaBHZQs,2449
|
|
31
|
+
diaspora_event_sdk-0.2.9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
32
|
+
diaspora_event_sdk-0.2.9.dist-info/top_level.txt,sha256=OVun-67t3fkLFEIwvJuNINgFFvAc--bClYhXjLhMmvs,25
|
|
33
|
+
diaspora_event_sdk-0.2.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|