mypy-boto3-timestream-write 1.36.0__py3-none-any.whl → 1.37.0__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.
Potentially problematic release.
This version of mypy-boto3-timestream-write might be problematic. Click here for more details.
- mypy_boto3_timestream_write/__init__.py +4 -2
- mypy_boto3_timestream_write/__init__.pyi +4 -2
- mypy_boto3_timestream_write/__main__.py +4 -4
- mypy_boto3_timestream_write/client.py +38 -42
- mypy_boto3_timestream_write/client.pyi +38 -42
- mypy_boto3_timestream_write/literals.py +2 -3
- mypy_boto3_timestream_write/literals.pyi +2 -3
- mypy_boto3_timestream_write/type_defs.py +69 -75
- mypy_boto3_timestream_write/type_defs.pyi +67 -72
- mypy_boto3_timestream_write/version.py +1 -1
- {mypy_boto3_timestream_write-1.36.0.dist-info → mypy_boto3_timestream_write-1.37.0.dist-info}/METADATA +12 -8
- mypy_boto3_timestream_write-1.37.0.dist-info/RECORD +16 -0
- mypy_boto3_timestream_write-1.36.0.dist-info/RECORD +0 -16
- {mypy_boto3_timestream_write-1.36.0.dist-info → mypy_boto3_timestream_write-1.37.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_timestream_write-1.36.0.dist-info → mypy_boto3_timestream_write-1.37.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_timestream_write-1.36.0.dist-info → mypy_boto3_timestream_write-1.37.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-timestream-write
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 TimestreamWrite 1.
|
|
3
|
+
Version: 1.37.0
|
|
4
|
+
Summary: Type annotations for boto3 TimestreamWrite 1.37.0 service generated with mypy-boto3-builder 8.9.2
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|

|
|
57
57
|
|
|
58
58
|
Type annotations for
|
|
59
|
-
[boto3 TimestreamWrite 1.
|
|
59
|
+
[boto3 TimestreamWrite 1.37.0](https://pypi.org/project/boto3/) compatible with
|
|
60
60
|
[VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ Type annotations for
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -112,12 +112,12 @@ See how it helps you find and fix potential bugs:
|
|
|
112
112
|
### Generate locally (recommended)
|
|
113
113
|
|
|
114
114
|
You can generate type annotations for `boto3` package locally with
|
|
115
|
-
`
|
|
115
|
+
`mypy-boto3-builder`. Use
|
|
116
116
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
117
117
|
isolation.
|
|
118
118
|
|
|
119
119
|
1. Run mypy-boto3-builder in your package root directory:
|
|
120
|
-
`uvx --with 'boto3==1.
|
|
120
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
121
121
|
2. Select `boto3-stubs` AWS SDK.
|
|
122
122
|
3. Add `TimestreamWrite` service.
|
|
123
123
|
4. Use provided commands to install generated packages.
|
|
@@ -369,11 +369,14 @@ Full list of `TimestreamWrite` TypeDefs can be found in
|
|
|
369
369
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/type_defs/).
|
|
370
370
|
|
|
371
371
|
```python
|
|
372
|
+
# TypedDict usage example
|
|
372
373
|
from mypy_boto3_timestream_write.type_defs import BatchLoadProgressReportTypeDef
|
|
373
374
|
|
|
374
375
|
|
|
375
376
|
def get_value() -> BatchLoadProgressReportTypeDef:
|
|
376
|
-
return {
|
|
377
|
+
return {
|
|
378
|
+
"RecordsProcessed": ...,
|
|
379
|
+
}
|
|
377
380
|
```
|
|
378
381
|
|
|
379
382
|
<a id="how-it-works"></a>
|
|
@@ -427,7 +430,8 @@ Builder changelog can be found in
|
|
|
427
430
|
## Versioning
|
|
428
431
|
|
|
429
432
|
`mypy-boto3-timestream-write` version is the same as related `boto3` version
|
|
430
|
-
and follows
|
|
433
|
+
and follows
|
|
434
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
431
435
|
|
|
432
436
|
<a id="thank-you"></a>
|
|
433
437
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_timestream_write/__init__.py,sha256=itINAm551a3pacnOWiv7V00V5Hbu6j4gOm_ti5EnhaE,562
|
|
2
|
+
mypy_boto3_timestream_write/__init__.pyi,sha256=--QQECTLY6KpnKl2BecjLSym0FuKdqcaczYKiG_GBtE,561
|
|
3
|
+
mypy_boto3_timestream_write/__main__.py,sha256=2oBPfqVtI6L-jG5GwYzdvJaxRQprBP726hfpZlpFSo4,1014
|
|
4
|
+
mypy_boto3_timestream_write/client.py,sha256=buzDqftbKjU59_pFWjbNNMjC1f0ru1bgbSq3DSsqblY,14326
|
|
5
|
+
mypy_boto3_timestream_write/client.pyi,sha256=eAsStlzG3MSp-4NDj38Z1ZaZedYE4KFP4ZfmIStN9Rs,14323
|
|
6
|
+
mypy_boto3_timestream_write/literals.py,sha256=TFTRued-u6pCKFpyMrftMiEn_182hf-ncnXnSfgu-Tw,9960
|
|
7
|
+
mypy_boto3_timestream_write/literals.pyi,sha256=jGUR-ceQCTBJRHjdWgnxINMyJ_nq6DUDLddN7FGmIBU,9958
|
|
8
|
+
mypy_boto3_timestream_write/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_timestream_write/type_defs.py,sha256=USzCza2MWS0AzFS-WAEoqMxyMfHkL_LwwqSBx3_2TLU,15656
|
|
10
|
+
mypy_boto3_timestream_write/type_defs.pyi,sha256=F8BPL7VMX65vcS1_rAZuvnk0s9iKESyF88_j1yRdP0w,15585
|
|
11
|
+
mypy_boto3_timestream_write/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
12
|
+
mypy_boto3_timestream_write-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
+
mypy_boto3_timestream_write-1.37.0.dist-info/METADATA,sha256=2ml6Wh-lZmd70DP3FdBpo2bndH_mKJd_jM-UZaCQfBQ,14745
|
|
14
|
+
mypy_boto3_timestream_write-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
15
|
+
mypy_boto3_timestream_write-1.37.0.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
+
mypy_boto3_timestream_write-1.37.0.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_timestream_write/__init__.py,sha256=gXD3I5xFQNaj0wt1RAyiJNHNheVkadDYFWCtNvYFcxg,472
|
|
2
|
-
mypy_boto3_timestream_write/__init__.pyi,sha256=xJ-Gg2Iy0rJyaUBx_XsDLpWhQscCmlldS5JscPD5Bhw,471
|
|
3
|
-
mypy_boto3_timestream_write/__main__.py,sha256=hY3KaAsTkZ4voW7mzOgTsLIxkogLWSpQK1ZLU8RzaHA,1014
|
|
4
|
-
mypy_boto3_timestream_write/client.py,sha256=MEdiozYB-A-BuqisPEqsisFjkvb6x7WqA1JnlK1gbTQ,14606
|
|
5
|
-
mypy_boto3_timestream_write/client.pyi,sha256=NmnNRDzjnGfcSGZC22tShrBBtvczv35VZKy-d2ER0Ks,14603
|
|
6
|
-
mypy_boto3_timestream_write/literals.py,sha256=pKLDgB2whJHnxFMwXjwgOHKWYwivZ_RgH3yWUWkoqVI,9985
|
|
7
|
-
mypy_boto3_timestream_write/literals.pyi,sha256=crDELeNpAhGntVgZ47P4BxxcIeOCkFIHSr5zKXTgImw,9983
|
|
8
|
-
mypy_boto3_timestream_write/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_timestream_write/type_defs.py,sha256=p7XZXjBMSIJpMPDcj3MV_9Gg74ipBRXwr9Cu-6Hgfts,16061
|
|
10
|
-
mypy_boto3_timestream_write/type_defs.pyi,sha256=8_fyoSkpbBJu-sCivFR2g6YOwoQ74MFSLdnEBwknIeY,15989
|
|
11
|
-
mypy_boto3_timestream_write/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
12
|
-
mypy_boto3_timestream_write-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
-
mypy_boto3_timestream_write-1.36.0.dist-info/METADATA,sha256=w_fIt7xZ3VuaF_lTbDzW-gLpTQSdaAP0sLQfVvv1X4s,14631
|
|
14
|
-
mypy_boto3_timestream_write-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
15
|
-
mypy_boto3_timestream_write-1.36.0.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
-
mypy_boto3_timestream_write-1.36.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_timestream_write-1.36.0.dist-info → mypy_boto3_timestream_write-1.37.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|