mypy-boto3-timestream-write 1.36.0__py3-none-any.whl → 1.38.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 +4 -3
- mypy_boto3_timestream_write/literals.pyi +4 -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.38.0.dist-info}/METADATA +14 -9
- mypy_boto3_timestream_write-1.38.0.dist-info/RECORD +16 -0
- {mypy_boto3_timestream_write-1.36.0.dist-info → mypy_boto3_timestream_write-1.38.0.dist-info}/WHEEL +1 -1
- 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.38.0.dist-info/licenses}/LICENSE +0 -0
- {mypy_boto3_timestream_write-1.36.0.dist-info → mypy_boto3_timestream_write-1.38.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-timestream-write
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 TimestreamWrite 1.
|
|
3
|
+
Version: 1.38.0
|
|
4
|
+
Summary: Type annotations for boto3 TimestreamWrite 1.38.0 service generated with mypy-boto3-builder 8.10.1
|
|
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
|
|
@@ -39,6 +39,7 @@ Dynamic: description-content-type
|
|
|
39
39
|
Dynamic: home-page
|
|
40
40
|
Dynamic: keywords
|
|
41
41
|
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
42
43
|
Dynamic: project-url
|
|
43
44
|
Dynamic: requires-dist
|
|
44
45
|
Dynamic: requires-python
|
|
@@ -56,7 +57,7 @@ Dynamic: summary
|
|
|
56
57
|

|
|
57
58
|
|
|
58
59
|
Type annotations for
|
|
59
|
-
[boto3 TimestreamWrite 1.
|
|
60
|
+
[boto3 TimestreamWrite 1.38.0](https://pypi.org/project/boto3/) compatible with
|
|
60
61
|
[VSCode](https://code.visualstudio.com/),
|
|
61
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +66,7 @@ Type annotations for
|
|
|
65
66
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
67
|
|
|
67
68
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
69
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
69
70
|
|
|
70
71
|
More information can be found on
|
|
71
72
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -112,12 +113,12 @@ See how it helps you find and fix potential bugs:
|
|
|
112
113
|
### Generate locally (recommended)
|
|
113
114
|
|
|
114
115
|
You can generate type annotations for `boto3` package locally with
|
|
115
|
-
`
|
|
116
|
+
`mypy-boto3-builder`. Use
|
|
116
117
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
117
118
|
isolation.
|
|
118
119
|
|
|
119
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
120
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.38.0' mypy-boto3-builder`
|
|
121
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
122
123
|
3. Add `TimestreamWrite` service.
|
|
123
124
|
4. Use provided commands to install generated packages.
|
|
@@ -369,11 +370,14 @@ Full list of `TimestreamWrite` TypeDefs can be found in
|
|
|
369
370
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/type_defs/).
|
|
370
371
|
|
|
371
372
|
```python
|
|
373
|
+
# TypedDict usage example
|
|
372
374
|
from mypy_boto3_timestream_write.type_defs import BatchLoadProgressReportTypeDef
|
|
373
375
|
|
|
374
376
|
|
|
375
377
|
def get_value() -> BatchLoadProgressReportTypeDef:
|
|
376
|
-
return {
|
|
378
|
+
return {
|
|
379
|
+
"RecordsProcessed": ...,
|
|
380
|
+
}
|
|
377
381
|
```
|
|
378
382
|
|
|
379
383
|
<a id="how-it-works"></a>
|
|
@@ -427,7 +431,8 @@ Builder changelog can be found in
|
|
|
427
431
|
## Versioning
|
|
428
432
|
|
|
429
433
|
`mypy-boto3-timestream-write` version is the same as related `boto3` version
|
|
430
|
-
and follows
|
|
434
|
+
and follows
|
|
435
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
431
436
|
|
|
432
437
|
<a id="thank-you"></a>
|
|
433
438
|
|
|
@@ -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=kVSNcXMu7yKpvfbjS_eNX1ry-4u3JUTEtHKOIBlGTdU,1015
|
|
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=uGXm5z08G6Yw8820MyCKd8QwY6Q71XSLAbTXzbRIwLI,10015
|
|
7
|
+
mypy_boto3_timestream_write/literals.pyi,sha256=30Y5nH-QV85HZle7zOFO9a8CbWMcsh46Wq7rM5prTBE,10013
|
|
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=chIm161Dw81Gs3vO6CH1PT2nlb-lCUhY_igz_jcxAO8,92
|
|
12
|
+
mypy_boto3_timestream_write-1.38.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
+
mypy_boto3_timestream_write-1.38.0.dist-info/METADATA,sha256=zIU8CsHGKFlCUnrKllH6Z4GQFweRUqduR3t0scMrBdY,14769
|
|
14
|
+
mypy_boto3_timestream_write-1.38.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
|
15
|
+
mypy_boto3_timestream_write-1.38.0.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
+
mypy_boto3_timestream_write-1.38.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
|
|
File without changes
|