botocore-stubs 1.38.29__py3-none-any.whl → 1.38.46__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 botocore-stubs might be problematic. Click here for more details.
- botocore-stubs/__init__.pyi +2 -1
- botocore-stubs/args.pyi +2 -1
- botocore-stubs/auth.pyi +2 -1
- botocore-stubs/awsrequest.pyi +2 -2
- botocore-stubs/client.pyi +2 -1
- botocore-stubs/compat.pyi +3 -1
- botocore-stubs/compress.pyi +2 -1
- botocore-stubs/config.pyi +2 -1
- botocore-stubs/configprovider.pyi +2 -1
- botocore-stubs/credentials.pyi +2 -1
- botocore-stubs/discovery.pyi +2 -1
- botocore-stubs/docs/bcdoc/restdoc.pyi +2 -1
- botocore-stubs/docs/method.pyi +2 -1
- botocore-stubs/docs/params.pyi +2 -1
- botocore-stubs/docs/shape.pyi +2 -1
- botocore-stubs/docs/sharedexample.pyi +2 -1
- botocore-stubs/endpoint.pyi +2 -1
- botocore-stubs/endpoint_provider.pyi +2 -3
- botocore-stubs/errorfactory.pyi +1 -1
- botocore-stubs/eventstream.pyi +2 -1
- botocore-stubs/exceptions.pyi +2 -1
- botocore-stubs/handlers.pyi +3 -1
- botocore-stubs/hooks.pyi +2 -1
- botocore-stubs/httpchecksum.pyi +2 -1
- botocore-stubs/httpsession.pyi +2 -1
- botocore-stubs/loaders.pyi +2 -1
- botocore-stubs/model.pyi +4 -1
- botocore-stubs/monitoring.pyi +2 -1
- botocore-stubs/paginate.pyi +2 -1
- botocore-stubs/parsers.pyi +2 -1
- botocore-stubs/regions.pyi +2 -2
- botocore-stubs/response.pyi +2 -1
- botocore-stubs/retries/standard.pyi +2 -1
- botocore-stubs/retryhandler.pyi +2 -1
- botocore-stubs/serialize.pyi +3 -1
- botocore-stubs/session.pyi +2 -2
- botocore-stubs/signers.pyi +2 -1
- botocore-stubs/stub.pyi +2 -1
- botocore-stubs/tokens.pyi +2 -1
- botocore-stubs/utils.pyi +4 -9
- botocore-stubs/validate.pyi +2 -1
- botocore-stubs/waiter.pyi +2 -1
- {botocore_stubs-1.38.29.dist-info → botocore_stubs-1.38.46.dist-info}/METADATA +2 -3
- botocore_stubs-1.38.46.dist-info/RECORD +74 -0
- botocore_stubs-1.38.29.dist-info/RECORD +0 -74
- {botocore_stubs-1.38.29.dist-info → botocore_stubs-1.38.46.dist-info}/WHEEL +0 -0
- {botocore_stubs-1.38.29.dist-info → botocore_stubs-1.38.46.dist-info}/licenses/LICENSE +0 -0
- {botocore_stubs-1.38.29.dist-info → botocore_stubs-1.38.46.dist-info}/top_level.txt +0 -0
botocore-stubs/__init__.pyi
CHANGED
botocore-stubs/args.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.args module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Literal,
|
|
9
|
+
from typing import Any, Literal, TypedDict
|
|
9
10
|
|
|
10
11
|
from botocore.client import ClientEndpointBridge
|
|
11
12
|
from botocore.config import Config as Config
|
botocore-stubs/auth.pyi
CHANGED
|
@@ -4,9 +4,10 @@ Type annotations for botocore.auth module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
7
8
|
from http.client import HTTPMessage
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any
|
|
10
|
+
from typing import Any
|
|
10
11
|
from urllib.parse import SplitResult
|
|
11
12
|
|
|
12
13
|
from botocore.awsrequest import AWSRequest
|
botocore-stubs/awsrequest.pyi
CHANGED
|
@@ -4,9 +4,9 @@ Type annotations for botocore.awsrequest module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from collections.abc import MutableMapping
|
|
7
|
+
from collections.abc import Iterator, Mapping, MutableMapping
|
|
8
8
|
from logging import Logger
|
|
9
|
-
from typing import IO, Any,
|
|
9
|
+
from typing import IO, Any, TypeVar
|
|
10
10
|
|
|
11
11
|
from botocore.compat import HTTPHeaders as HTTPHeaders
|
|
12
12
|
from botocore.compat import HTTPResponse as HTTPResponse
|
botocore-stubs/client.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.client module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any
|
|
9
|
+
from typing import Any
|
|
9
10
|
|
|
10
11
|
from botocore.args import ClientArgsCreator as ClientArgsCreator
|
|
11
12
|
from botocore.auth import AUTH_TYPE_MAPS as AUTH_TYPE_MAPS
|
botocore-stubs/compat.pyi
CHANGED
|
@@ -7,6 +7,7 @@ Copyright 2025 Vlad Emelianov
|
|
|
7
7
|
import datetime
|
|
8
8
|
from base64 import encodebytes as encodebytes
|
|
9
9
|
from collections import OrderedDict as OrderedDict
|
|
10
|
+
from collections.abc import Iterable, Mapping
|
|
10
11
|
from email.utils import formatdate as formatdate
|
|
11
12
|
from hashlib import _Hash
|
|
12
13
|
from http.client import HTTPMessage
|
|
@@ -14,7 +15,8 @@ from http.client import HTTPResponse as HTTPResponse
|
|
|
14
15
|
from inspect import FullArgSpec
|
|
15
16
|
from itertools import zip_longest as zip_longest
|
|
16
17
|
from logging import Logger
|
|
17
|
-
from
|
|
18
|
+
from re import Pattern
|
|
19
|
+
from typing import Any, Callable, TypeVar
|
|
18
20
|
from urllib.parse import parse_qs as parse_qs
|
|
19
21
|
from urllib.parse import parse_qsl as parse_qsl
|
|
20
22
|
from urllib.parse import quote as quote
|
botocore-stubs/compress.pyi
CHANGED
|
@@ -5,9 +5,10 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import io
|
|
8
|
+
from collections.abc import Mapping
|
|
8
9
|
from gzip import GzipFile as GzipFile
|
|
9
10
|
from logging import Logger
|
|
10
|
-
from typing import Any, Callable
|
|
11
|
+
from typing import Any, Callable
|
|
11
12
|
|
|
12
13
|
from botocore.compat import urlencode as urlencode
|
|
13
14
|
from botocore.config import Config
|
botocore-stubs/config.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.config module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any, Literal, TypedDict, TypeVar
|
|
8
9
|
|
|
9
10
|
from botocore.compat import OrderedDict as OrderedDict
|
|
10
11
|
from botocore.endpoint import DEFAULT_TIMEOUT as DEFAULT_TIMEOUT
|
|
@@ -4,8 +4,9 @@ Type annotations for botocore.configprovider module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping, Sequence
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable,
|
|
9
|
+
from typing import Any, Callable, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.session import Session
|
|
11
12
|
from botocore.utils import IMDSRegionProvider
|
botocore-stubs/credentials.pyi
CHANGED
|
@@ -5,8 +5,9 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import datetime
|
|
8
|
+
from collections.abc import Mapping
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any, Callable,
|
|
10
|
+
from typing import Any, Callable, NamedTuple, TypeVar
|
|
10
11
|
|
|
11
12
|
from botocore.client import BaseClient
|
|
12
13
|
from botocore.compat import compat_shell_split as compat_shell_split
|
botocore-stubs/discovery.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.discovery module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.client import BaseClient
|
|
11
12
|
from botocore.exceptions import BotoCoreError as BotoCoreError
|
|
@@ -5,8 +5,9 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import re
|
|
8
|
+
from collections.abc import Iterable, Mapping
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any
|
|
10
|
+
from typing import Any
|
|
10
11
|
|
|
11
12
|
DEFAULT_AWS_DOCS_LINK: str = ...
|
|
12
13
|
DOCUMENTATION_LINK_REGEX: re.Pattern[str] = ...
|
botocore-stubs/docs/method.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.method module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Sequence
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.hooks import BaseEventHooks
|
botocore-stubs/docs/params.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.params module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Sequence
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.docs.shape import ShapeDocumenter
|
botocore-stubs/docs/shape.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.shape module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.hooks import BaseEventHooks
|
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.sharedexample module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.model import OperationModel, Shape
|
botocore-stubs/endpoint.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.endpoint module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping, Sequence
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any
|
|
9
|
+
from typing import Any
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSPreparedRequest
|
|
11
12
|
from botocore.awsrequest import create_request_object as create_request_object
|
|
@@ -5,15 +5,14 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
+
from collections.abc import Iterable, Mapping
|
|
8
9
|
from enum import Enum
|
|
10
|
+
from re import Pattern
|
|
9
11
|
from string import Formatter
|
|
10
12
|
from typing import (
|
|
11
13
|
Any,
|
|
12
14
|
Callable,
|
|
13
|
-
Iterable,
|
|
14
|
-
Mapping,
|
|
15
15
|
NamedTuple,
|
|
16
|
-
Pattern,
|
|
17
16
|
)
|
|
18
17
|
|
|
19
18
|
from botocore.compat import quote as quote
|
botocore-stubs/errorfactory.pyi
CHANGED
|
@@ -4,7 +4,7 @@ Type annotations for botocore.errorfactory module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
8
|
|
|
9
9
|
from botocore.exceptions import ClientError as ClientError
|
|
10
10
|
from botocore.exceptions import ClientError as _ClientError
|
botocore-stubs/eventstream.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.eventstream module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterator
|
|
8
|
+
from typing import Any, Generic, TypeVar
|
|
8
9
|
|
|
9
10
|
from botocore.exceptions import EventStreamError as EventStreamError
|
|
10
11
|
from botocore.model import StructureShape
|
botocore-stubs/exceptions.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.exceptions module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
|
+
from typing import IO, Any, TypedDict
|
|
8
9
|
|
|
9
10
|
import requests
|
|
10
11
|
from urllib3.exceptions import ReadTimeoutError as _ReadTimeoutError
|
botocore-stubs/handlers.pyi
CHANGED
|
@@ -4,8 +4,10 @@ Type annotations for botocore.handlers module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from
|
|
9
|
+
from re import Pattern
|
|
10
|
+
from typing import Any
|
|
9
11
|
from urllib.request import Request
|
|
10
12
|
|
|
11
13
|
from botocore.client import BaseClient
|
botocore-stubs/hooks.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.hooks module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable,
|
|
9
|
+
from typing import Any, Callable, NamedTuple, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.compat import accepts_kwargs as accepts_kwargs
|
|
11
12
|
from botocore.utils import EVENT_ALIASES as EVENT_ALIASES
|
botocore-stubs/httpchecksum.pyi
CHANGED
|
@@ -5,7 +5,8 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
-
from
|
|
8
|
+
from collections.abc import Iterator, Mapping, Sequence
|
|
9
|
+
from typing import IO, Any
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSHTTPResponse
|
|
11
12
|
from botocore.compat import HAS_CRT as HAS_CRT
|
botocore-stubs/httpsession.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.httpsession module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any
|
|
9
|
+
from typing import Any
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSPreparedRequest, AWSRequest, AWSResponse
|
|
11
12
|
from botocore.compat import IPV6_ADDRZ_RE as IPV6_ADDRZ_RE
|
botocore-stubs/loaders.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.loaders module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.compat import OrderedDict as OrderedDict
|
|
11
12
|
from botocore.exceptions import DataNotFoundError as DataNotFoundError
|
botocore-stubs/model.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.model module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any, NamedTuple, TypeVar
|
|
8
9
|
|
|
9
10
|
from botocore.utils import CachedProperty
|
|
10
11
|
|
|
@@ -113,6 +114,8 @@ class ServiceModel:
|
|
|
113
114
|
@CachedProperty
|
|
114
115
|
def protocols(self) -> list[str]: ...
|
|
115
116
|
@CachedProperty
|
|
117
|
+
def resolved_protocol(self) -> str: ...
|
|
118
|
+
@CachedProperty
|
|
116
119
|
def endpoint_prefix(self) -> str: ...
|
|
117
120
|
@CachedProperty
|
|
118
121
|
def endpoint_discovery_operation(self) -> OperationModel: ...
|
botocore-stubs/monitoring.pyi
CHANGED
|
@@ -5,8 +5,9 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import socket
|
|
8
|
+
from collections.abc import Sequence
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any, Callable
|
|
10
|
+
from typing import Any, Callable
|
|
10
11
|
|
|
11
12
|
from botocore.compat import ensure_bytes as ensure_bytes
|
|
12
13
|
from botocore.compat import ensure_unicode as ensure_unicode
|
botocore-stubs/paginate.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.paginate module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterator
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Generic,
|
|
9
|
+
from typing import Any, Generic, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.exceptions import PaginationError as PaginationError
|
|
11
12
|
from botocore.model import OperationModel
|
botocore-stubs/parsers.pyi
CHANGED
|
@@ -4,9 +4,10 @@ Type annotations for botocore.parsers module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from io import BufferedReader
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import IO, Any, Callable
|
|
10
|
+
from typing import IO, Any, Callable
|
|
10
11
|
|
|
11
12
|
from botocore.compat import XMLParseError as XMLParseError
|
|
12
13
|
from botocore.eventstream import EventStream as EventStream
|
botocore-stubs/regions.pyi
CHANGED
|
@@ -4,10 +4,10 @@ Type annotations for botocore.regions module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from collections.abc import Iterable
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
8
|
from enum import Enum
|
|
9
9
|
from logging import Logger
|
|
10
|
-
from typing import Any
|
|
10
|
+
from typing import Any
|
|
11
11
|
|
|
12
12
|
from botocore.auth import AUTH_TYPE_MAPS as AUTH_TYPE_MAPS
|
|
13
13
|
from botocore.compat import HAS_CRT as HAS_CRT
|
botocore-stubs/response.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.retries.standard module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Sequence
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.client import BaseClient
|
|
11
12
|
from botocore.exceptions import BotoCoreError
|
botocore-stubs/retryhandler.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.retryhandler module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.config import Config
|
|
11
12
|
from botocore.exceptions import BotoCoreError
|
botocore-stubs/serialize.pyi
CHANGED
|
@@ -4,7 +4,9 @@ Type annotations for botocore.serialize module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from re import Pattern
|
|
9
|
+
from typing import Any
|
|
8
10
|
|
|
9
11
|
from botocore.compat import formatdate as formatdate
|
|
10
12
|
from botocore.model import OperationModel
|
botocore-stubs/session.pyi
CHANGED
|
@@ -4,9 +4,9 @@ Type annotations for botocore.session module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from collections.abc import Callable, MutableMapping
|
|
7
|
+
from collections.abc import Callable, Iterator, Mapping, MutableMapping, Sequence
|
|
8
8
|
from logging import Logger
|
|
9
|
-
from typing import IO, Any,
|
|
9
|
+
from typing import IO, Any, Protocol
|
|
10
10
|
|
|
11
11
|
from botocore.client import BaseClient, Config
|
|
12
12
|
from botocore.compat import HAS_CRT as HAS_CRT
|
botocore-stubs/signers.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.signers module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.awsrequest import create_request_object as create_request_object
|
|
10
11
|
from botocore.awsrequest import prepare_request_dict as prepare_request_dict
|
botocore-stubs/stub.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.stub module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from types import TracebackType
|
|
8
|
-
from typing import Any, Literal,
|
|
9
|
+
from typing import Any, Literal, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSResponse as AWSResponse
|
|
11
12
|
from botocore.client import BaseClient
|
botocore-stubs/tokens.pyi
CHANGED
|
@@ -6,7 +6,8 @@ Copyright 2025 Vlad Emelianov
|
|
|
6
6
|
|
|
7
7
|
import datetime
|
|
8
8
|
import logging
|
|
9
|
-
from
|
|
9
|
+
from collections.abc import Iterable
|
|
10
|
+
from typing import Any, Callable, NamedTuple
|
|
10
11
|
|
|
11
12
|
from botocore.session import Session
|
|
12
13
|
from botocore.utils import JSONFileCache
|
botocore-stubs/utils.pyi
CHANGED
|
@@ -5,16 +5,10 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import datetime
|
|
8
|
+
from collections.abc import Iterable, Mapping
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from
|
|
10
|
-
|
|
11
|
-
Callable,
|
|
12
|
-
Generic,
|
|
13
|
-
Iterable,
|
|
14
|
-
Mapping,
|
|
15
|
-
Pattern,
|
|
16
|
-
TypeVar,
|
|
17
|
-
)
|
|
10
|
+
from re import Pattern
|
|
11
|
+
from typing import Any, Callable, Generic, TypeVar
|
|
18
12
|
|
|
19
13
|
from botocore.client import BaseClient
|
|
20
14
|
from botocore.compat import HAS_CRT as HAS_CRT
|
|
@@ -71,6 +65,7 @@ RETRYABLE_HTTP_ERRORS: tuple[Any, ...]
|
|
|
71
65
|
S3_ACCELERATE_WHITELIST: list[str]
|
|
72
66
|
EVENT_ALIASES: dict[str, str]
|
|
73
67
|
CHECKSUM_HEADER_PATTERN: Pattern[str]
|
|
68
|
+
PRIORITY_ORDERED_SUPPORTED_PROTOCOLS: tuple[str, ...]
|
|
74
69
|
IPV4_PAT: str
|
|
75
70
|
HEX_PAT: str
|
|
76
71
|
LS32_PAT: str
|
botocore-stubs/validate.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.validate module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.exceptions import ParamValidationError as ParamValidationError
|
|
10
11
|
from botocore.model import OperationModel, Shape
|
botocore-stubs/waiter.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.waiter module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.client import BaseClient
|
|
11
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: botocore-stubs
|
|
3
|
-
Version: 1.38.
|
|
3
|
+
Version: 1.38.46
|
|
4
4
|
Summary: Type annotations and code completion for botocore
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -37,7 +37,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
37
37
|
Classifier: Natural Language :: English
|
|
38
38
|
Classifier: Operating System :: OS Independent
|
|
39
39
|
Classifier: Programming Language :: Python :: 3
|
|
40
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
41
40
|
Classifier: Programming Language :: Python :: 3.9
|
|
42
41
|
Classifier: Programming Language :: Python :: 3.10
|
|
43
42
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -48,7 +47,7 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
48
47
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
49
48
|
Classifier: Typing :: Stubs Only
|
|
50
49
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
51
|
-
Requires-Python: >=3.
|
|
50
|
+
Requires-Python: >=3.9
|
|
52
51
|
Description-Content-Type: text/markdown
|
|
53
52
|
License-File: LICENSE
|
|
54
53
|
Requires-Dist: types-awscrt
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
botocore-stubs/__init__.pyi,sha256=XwYGr47sSGlobSDgt5vYmjnDZ1GZjPSPAOFQHTlPUGo,684
|
|
2
|
+
botocore-stubs/args.pyi,sha256=VRzuir2e5XSCOotPR8IMr8dk3BRinl-J3DnCbCy_q94,3393
|
|
3
|
+
botocore-stubs/auth.pyi,sha256=sBQYkCobsDtDtu45GClaiSrVHrb8XqnD2GAkiPZvbmA,5430
|
|
4
|
+
botocore-stubs/awsrequest.pyi,sha256=iCCPx5AWEO_GpSROadB1Iud1Td9v__eSo7oZDmZi-I8,4164
|
|
5
|
+
botocore-stubs/client.pyi,sha256=9M7pUxJEXJweXk1aiw2xByAQKnZ9kR0Uwb259u4JACg,6427
|
|
6
|
+
botocore-stubs/compat.pyi,sha256=ydMylNzKRtiHsdmWlR1ZkQjUaeI51q-mZM1L2G6cFjg,2623
|
|
7
|
+
botocore-stubs/compress.pyi,sha256=oY4mKCZfoUPbAhzxYjzQQdh7PMKYrzsLanVz9SRC60s,665
|
|
8
|
+
botocore-stubs/config.pyi,sha256=-g8MSC_w8fk_lQ9EZiRJB8D2IGVZ0kBqnJTWdugW7nY,3098
|
|
9
|
+
botocore-stubs/configloader.pyi,sha256=5sUsnqeN2TDL22KSMSCZOfzircr9xHGQxSB9-lFghDk,420
|
|
10
|
+
botocore-stubs/configprovider.pyi,sha256=ZDstAepWaKR0zrbqpNDoNuMSMO4L5tsGHNnvG4aDIQ8,4125
|
|
11
|
+
botocore-stubs/context.pyi,sha256=Qo3WqgcasKya9xhUbQ6D9e0nSMaLYoNzxu_DXc6YIl0,904
|
|
12
|
+
botocore-stubs/credentials.pyi,sha256=_CAmWvqT0JvoRa_qiT6CvHi-ezKm51GD2B9-LdEwDhQ,12419
|
|
13
|
+
botocore-stubs/discovery.pyi,sha256=sxs2vcjXoUlOxRl4cdsaMd18rz46s--XlcGspLx44mE,2626
|
|
14
|
+
botocore-stubs/endpoint.pyi,sha256=Fk5d27-EJbd5oIH9NpZfIpmydrck-awzW5dV6VD7jsw,2518
|
|
15
|
+
botocore-stubs/endpoint_provider.pyi,sha256=9lEvReyiXEyG3H0kYAvctTv9VbL-1YRvDVbTjChGdWo,6233
|
|
16
|
+
botocore-stubs/errorfactory.pyi,sha256=aP6HK_mtXyH3gU10Q7VBYRsmEVQFmWdegDuG-iuMnEc,816
|
|
17
|
+
botocore-stubs/eventstream.pyi,sha256=zzQsEDUmS6JP2zDDxOm9x3qIFRSxINflAY72HmoCz-w,3568
|
|
18
|
+
botocore-stubs/exceptions.pyi,sha256=lEmuUmf4Nuvxw7ak_8DCqIeRchJ88W-qdPZGasa_ViY,21646
|
|
19
|
+
botocore-stubs/handlers.pyi,sha256=12BYbk-ngelzcLv1H4UDRY0wtF8gD_a3lFqyd2mcguk,7855
|
|
20
|
+
botocore-stubs/history.pyi,sha256=dwdRDn3XSr3i4lZP1nKEekyJG1homWE35E-ooTShYRk,643
|
|
21
|
+
botocore-stubs/hooks.pyi,sha256=-mqYP_nlEjpbOx23T5PIg0BlIlHvsVVKEZt7R4CHkIE,3077
|
|
22
|
+
botocore-stubs/httpchecksum.pyi,sha256=K_qQHik82WWPY3VtgmU8NyGECUW20hBlr56mlspQc4Y,2841
|
|
23
|
+
botocore-stubs/httpsession.pyi,sha256=UEpqJqDuw7dRWkkEg5ftx09N4W9PKsdj4o6IErFsPPE,2373
|
|
24
|
+
botocore-stubs/loaders.pyi,sha256=jPZlFO_5qOUs8DS3REdUlYSCQ1nxct6-VY8os32eFZ4,2068
|
|
25
|
+
botocore-stubs/model.pyi,sha256=WuDKt0gmq_fApmllWf_JwQn9bTFf3Bm6SEpylc7FN64,6931
|
|
26
|
+
botocore-stubs/monitoring.pyi,sha256=N_3pWVtt1KMAq52UWFrCtaVIW7Z4Rdub_Ji8jjpjyLg,2920
|
|
27
|
+
botocore-stubs/paginate.pyi,sha256=K4rLydRaj9U4kQyD5pHBC_cfbGZNVNGdYidqAH7cWYw,2314
|
|
28
|
+
botocore-stubs/parsers.pyi,sha256=ykHJ32N1IRZ7z69jL4qmb6_8r5GcHxfUIKX6RLl4cfo,2800
|
|
29
|
+
botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
botocore-stubs/regions.pyi,sha256=_4F2Z9WHtQrys2OanQASK_HGDEJMlChajffvbhtWdUA,3732
|
|
31
|
+
botocore-stubs/response.pyi,sha256=BfotsuLLNwi8HG_sS8vsLDImWvUTxCm5wftqiSMh728,1170
|
|
32
|
+
botocore-stubs/retryhandler.pyi,sha256=KSdUIFnTc0exhqw1AoH41nYin2k1VUUC-yWnf74xhmw,2600
|
|
33
|
+
botocore-stubs/serialize.pyi,sha256=Z3hPQBpBeADSYLlz-WumrGuT3hkUGCO04F96XUcevUY,2291
|
|
34
|
+
botocore-stubs/session.pyi,sha256=ZBeaJl-ZhqbREdnIw__bo6ooeWWTzLzA09T5dSI9txI,7005
|
|
35
|
+
botocore-stubs/signers.pyi,sha256=6e5Jf-K4wx7b_fgrQfJBfqsRjGZhXwqT_iQTt_e7O0A,4128
|
|
36
|
+
botocore-stubs/stub.pyi,sha256=aY60rHM5EhvH-MbUqL8Q0IMrd9ERHUIY0oGxrQZ1Zs8,1891
|
|
37
|
+
botocore-stubs/tokens.pyi,sha256=lvdm5saAtUEDd4HSun_4WdVvWhGIBRJ6fa4GQqGZytc,1282
|
|
38
|
+
botocore-stubs/translate.pyi,sha256=H-HiVmWZZEPdD9xc49sS-QLhXoPeOGWhASwJbuxcUhU,491
|
|
39
|
+
botocore-stubs/useragent.pyi,sha256=jaeTQfWy9nmUERrQjXCRmRAH90WOViDdYeLCvg8JGL8,1763
|
|
40
|
+
botocore-stubs/utils.pyi,sha256=-cMGGjnF3i0xMs4-iSpIIh_X6_jetlJZCVogN-eY2aI,14336
|
|
41
|
+
botocore-stubs/validate.pyi,sha256=MU0Kov9nrH1FMG2XTEpcvQhcKJIWB5SXNG8Y2O_0GOo,1284
|
|
42
|
+
botocore-stubs/waiter.pyi,sha256=6KipYNT-vx-Vg3h2zKq1eVU_LrOVxAt_qn86IreC0vQ,1687
|
|
43
|
+
botocore-stubs/crt/__init__.pyi,sha256=37HBtXm11YTFxQAu5exKmHiq1t0WHC3fmC2O9DgIFD0,130
|
|
44
|
+
botocore-stubs/crt/auth.pyi,sha256=hiJus8X2LRWbDRHOwQWlYsbDb3UJuzNz7icwEael8DE,2253
|
|
45
|
+
botocore-stubs/docs/__init__.pyi,sha256=DUxzLOOLAd7e46jbG5RB7p01IYST9BoHF-MCmpnSCL4,227
|
|
46
|
+
botocore-stubs/docs/client.pyi,sha256=KFBdqtZ6omERwfBC7s4pQ5Ulx7WC5T2wGq94dikL8MY,1143
|
|
47
|
+
botocore-stubs/docs/docstring.pyi,sha256=msqvDF4HEChnh3YfpYmvD4GuJ_4W6xHXZnx0F2FkL98,483
|
|
48
|
+
botocore-stubs/docs/example.pyi,sha256=2v2qupn0y4MXjFQIK5XacMm9LoSVVjAKrj_gaFubdpo,2521
|
|
49
|
+
botocore-stubs/docs/method.pyi,sha256=vUohR1E0HtfpgXxSNBXq7bRZXYbxr_SaXQN9_7FX0gE,1413
|
|
50
|
+
botocore-stubs/docs/paginator.pyi,sha256=OW7oZBvxhm7M8NXbEbzbB0nyS6OXbwRkGHfPmGxymkI,762
|
|
51
|
+
botocore-stubs/docs/params.pyi,sha256=73I8lLvd0NMBSl_OIsF1ofyF4XppIMYj3bmWH08yiNs,2369
|
|
52
|
+
botocore-stubs/docs/service.pyi,sha256=D8BhY8UtZb90ejkxg_P8tqZHoc7BM7Aaaa-kMav6y-0,931
|
|
53
|
+
botocore-stubs/docs/shape.pyi,sha256=PJwj9gdbVxucmOb3jRLacX2z-nxGxTE91HWdwIi5R0Q,798
|
|
54
|
+
botocore-stubs/docs/sharedexample.pyi,sha256=bEfwhF4kCLyccu4aele0I8Z2SnZBjboL7YHMBt5KtTk,915
|
|
55
|
+
botocore-stubs/docs/translator.pyi,sha256=4HIkO1W5cgN31ZJNT4rdm1XmpCydfB_BwcqFm0bgFsk,489
|
|
56
|
+
botocore-stubs/docs/utils.pyi,sha256=JoveZ8yVgfNStQJsutHcnGg9994EskM_8kgqhrArv2U,1419
|
|
57
|
+
botocore-stubs/docs/waiter.pyi,sha256=JBz6apW8OvYuigM5_kPxQ_1JKvdRJrF6MN_5R5ltnrQ,770
|
|
58
|
+
botocore-stubs/docs/bcdoc/__init__.pyi,sha256=ieCUaCV4XgYBx-aHYTIVLmhokqQN81K4_8OB_VHSAMc,112
|
|
59
|
+
botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=axs8JYBpAVo6XBPBq1K-K0cBq_JAZH1U3IRg4qjghZ4,2211
|
|
60
|
+
botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=umm6aecBY1zvf0rKmL4cz8UQvLem99oce3gpnZo_fpY,2147
|
|
61
|
+
botocore-stubs/docs/bcdoc/style.pyi,sha256=xJ18P7--y3NzJWf7Ln9FNbJAlniLHZt6ZEdn83OxaOQ,4220
|
|
62
|
+
botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
botocore-stubs/retries/adaptive.pyi,sha256=WzwSBG_fC0poWWWXVVIjg2iR9mXPOj0oGVgeXYY3rYs,1009
|
|
64
|
+
botocore-stubs/retries/base.pyi,sha256=tXY8_TiX_U8DrZVY9u4JPnwGoUZMZbmIUNfxrYuNMEs,323
|
|
65
|
+
botocore-stubs/retries/bucket.pyi,sha256=rdq8wfbQ1p3iJ_hJWWcz6_obwRX_vkcL0V5sRkmhlV4,736
|
|
66
|
+
botocore-stubs/retries/quota.pyi,sha256=Z4sBLvnNBtnNE0JV_cHbhLDWGjQYdRyLR0bDG5dRo0I,433
|
|
67
|
+
botocore-stubs/retries/special.pyi,sha256=mEmYwXUqdWtpKoxOO0-DZ-lrc91le_WmdO8X4j_UQ1A,530
|
|
68
|
+
botocore-stubs/retries/standard.pyi,sha256=GzEKonxr8ircu3ZNKA1fNuC2VP4BFYwlDj8QGx7bmww,4478
|
|
69
|
+
botocore-stubs/retries/throttling.pyi,sha256=mpd__xuiUjY4Uc8ocquxgD_D2azuXOtBs1J-XoObvwE,582
|
|
70
|
+
botocore_stubs-1.38.46.dist-info/licenses/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
|
|
71
|
+
botocore_stubs-1.38.46.dist-info/METADATA,sha256=5nbItWoBqOW2RehlDE1lbmGAPtKB4rLbKf_ktLr1AaY,4630
|
|
72
|
+
botocore_stubs-1.38.46.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
73
|
+
botocore_stubs-1.38.46.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
|
|
74
|
+
botocore_stubs-1.38.46.dist-info/RECORD,,
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
botocore-stubs/__init__.pyi,sha256=jI0asMgIMYYFngWKCInfwa2GbX6TzXL2FhU9S6j-tIo,657
|
|
2
|
-
botocore-stubs/args.pyi,sha256=BMlJLqQpCayPO0MyhjOzgLrlOx5QN1oYVpqHlk8uuL8,3366
|
|
3
|
-
botocore-stubs/auth.pyi,sha256=5ppwiiwAAcG6p_Elv6dfnBIIU_fpFjdFUf2kIiNmDv4,5403
|
|
4
|
-
botocore-stubs/awsrequest.pyi,sha256=FK47c-6DyEde-1bS6Yw7TO5A6chLr4IJitQKtnQQSAM,4164
|
|
5
|
-
botocore-stubs/client.pyi,sha256=0gx6AVs03z0zChrqJrH5hRz1I8OvZ2WrVbDtDqhDLX4,6400
|
|
6
|
-
botocore-stubs/compat.pyi,sha256=UOEfXGqOqJS0KWLtl6W0zjNDHERqZ5ECSAvxjZqOGDA,2582
|
|
7
|
-
botocore-stubs/compress.pyi,sha256=UVTu6kMbNgEvkoMxQOh5Evvs02chZRWEUIRf9yiX4-8,638
|
|
8
|
-
botocore-stubs/config.pyi,sha256=_jUEOyLfMN_VbDeLkiIfbOsOOZRLIKcWcmsuomKZfaE,3071
|
|
9
|
-
botocore-stubs/configloader.pyi,sha256=5sUsnqeN2TDL22KSMSCZOfzircr9xHGQxSB9-lFghDk,420
|
|
10
|
-
botocore-stubs/configprovider.pyi,sha256=EBOOazu-XW8L2va5jQgtU0p4ka7WZysBOKHGYr-bVV4,4098
|
|
11
|
-
botocore-stubs/context.pyi,sha256=Qo3WqgcasKya9xhUbQ6D9e0nSMaLYoNzxu_DXc6YIl0,904
|
|
12
|
-
botocore-stubs/credentials.pyi,sha256=4OcHot3ruTBtlddLJIDo3TBHbSFyH8Fd4zUSi1wJdZk,12392
|
|
13
|
-
botocore-stubs/discovery.pyi,sha256=DX-fiohqycVU0N_d7D3uj3dkrvQfMDt50-ebS_49HsY,2599
|
|
14
|
-
botocore-stubs/endpoint.pyi,sha256=tNCOVKobczeE01fSxVDQGJ15IhS1BYPNycXXGu7dULE,2491
|
|
15
|
-
botocore-stubs/endpoint_provider.pyi,sha256=YSY3zNAhhiG2ZJP6UmCr9lSkM1hsqmg6CUquHICcgWg,6204
|
|
16
|
-
botocore-stubs/errorfactory.pyi,sha256=nC8mJFbx2n2II382iUXSdtxOzddaXGQNDpXSJSfSLPg,807
|
|
17
|
-
botocore-stubs/eventstream.pyi,sha256=kKdJjDPd31AFWPN-s-jiYG0vS1Ek-OWmsb2Np2wEQqY,3541
|
|
18
|
-
botocore-stubs/exceptions.pyi,sha256=Mliw3-y9aSxx9wz8qylMcQQaiD21A2zpw_u8F3JQA9Y,21619
|
|
19
|
-
botocore-stubs/handlers.pyi,sha256=NtnfpM8lQSlrauE04bX_Z8vBywasxOmrAmJ1Wmt1UHY,7814
|
|
20
|
-
botocore-stubs/history.pyi,sha256=dwdRDn3XSr3i4lZP1nKEekyJG1homWE35E-ooTShYRk,643
|
|
21
|
-
botocore-stubs/hooks.pyi,sha256=-OHS7tNodCAWijs4qy9ccZJZtaEvptxTZVBlsH2DlXo,3050
|
|
22
|
-
botocore-stubs/httpchecksum.pyi,sha256=_idua1GM5xYyWUQoH5gUHoDN5q07JYAyFhD7XN-Lc90,2814
|
|
23
|
-
botocore-stubs/httpsession.pyi,sha256=Bv9wTqeHqE8mgJwVoaUEYUno76Yz691v_qyzv1farn4,2346
|
|
24
|
-
botocore-stubs/loaders.pyi,sha256=Z19fMqnT3XQKZCJI2NVeqL-ZrGwfwqxT9gGS0x8bHWI,2041
|
|
25
|
-
botocore-stubs/model.pyi,sha256=T7D5yua2xdT3_yoAdckipQSeahKb2HHvO_yF0hCuefU,6840
|
|
26
|
-
botocore-stubs/monitoring.pyi,sha256=7habxP-7VxtHG74-a9lAHQHNq6nyHClwJXhtclNmblQ,2893
|
|
27
|
-
botocore-stubs/paginate.pyi,sha256=211X3_j_Q-FYXWSVyv53fkPxh8rAX1i7iYFCMRNO5TY,2287
|
|
28
|
-
botocore-stubs/parsers.pyi,sha256=WYk3daPxhBMCrNx6xc5dCb3qyViCBtrH0ebzI9GAhyo,2773
|
|
29
|
-
botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
botocore-stubs/regions.pyi,sha256=NK4SXXHcLXHyXCxfS4hPltzczgp4r04CBX3M-Ub26Pk,3732
|
|
31
|
-
botocore-stubs/response.pyi,sha256=846W0UzGUBFGbasdkaOQ2JJhupap1gWwtVgGUJURFM0,1143
|
|
32
|
-
botocore-stubs/retryhandler.pyi,sha256=Cs-o_YAClhO5OjjXdnFIkdSJ0e1QEj_eV3Un14E5uJg,2573
|
|
33
|
-
botocore-stubs/serialize.pyi,sha256=ztSd1imWTCbuE-yHnXnNJQj0sCMQJwoMn-C5CPwXtK4,2250
|
|
34
|
-
botocore-stubs/session.pyi,sha256=45eCtM3IglBH6VNwVMgMNb2BnNC0naoh29cEJJ0Tyx0,7005
|
|
35
|
-
botocore-stubs/signers.pyi,sha256=VYVOFRUgawzQMNsIgH5qS326ij4ME0gd8k2Sm83tglM,4101
|
|
36
|
-
botocore-stubs/stub.pyi,sha256=Hfqwm-GVB9B5EjVN6rOF32JL853o-VgQmZAJ4u_4B4M,1864
|
|
37
|
-
botocore-stubs/tokens.pyi,sha256=ZAThKjVxhzUcDWGgoFextnmIlEWSO9Y27h8XpUjHNr8,1255
|
|
38
|
-
botocore-stubs/translate.pyi,sha256=H-HiVmWZZEPdD9xc49sS-QLhXoPeOGWhASwJbuxcUhU,491
|
|
39
|
-
botocore-stubs/useragent.pyi,sha256=jaeTQfWy9nmUERrQjXCRmRAH90WOViDdYeLCvg8JGL8,1763
|
|
40
|
-
botocore-stubs/utils.pyi,sha256=3GZyq-4FAXWvg7ETJKg3AN4CiTDWjJkM9XQ24hFlFho,14274
|
|
41
|
-
botocore-stubs/validate.pyi,sha256=JWCI0vMGnwGNmtu77xgqtURrydBgSVrCcMOHObDgha4,1257
|
|
42
|
-
botocore-stubs/waiter.pyi,sha256=WFU70JRI9it4_n0NNvzliJsArsirimybUoW9pN1FoJo,1660
|
|
43
|
-
botocore-stubs/crt/__init__.pyi,sha256=37HBtXm11YTFxQAu5exKmHiq1t0WHC3fmC2O9DgIFD0,130
|
|
44
|
-
botocore-stubs/crt/auth.pyi,sha256=hiJus8X2LRWbDRHOwQWlYsbDb3UJuzNz7icwEael8DE,2253
|
|
45
|
-
botocore-stubs/docs/__init__.pyi,sha256=DUxzLOOLAd7e46jbG5RB7p01IYST9BoHF-MCmpnSCL4,227
|
|
46
|
-
botocore-stubs/docs/client.pyi,sha256=KFBdqtZ6omERwfBC7s4pQ5Ulx7WC5T2wGq94dikL8MY,1143
|
|
47
|
-
botocore-stubs/docs/docstring.pyi,sha256=msqvDF4HEChnh3YfpYmvD4GuJ_4W6xHXZnx0F2FkL98,483
|
|
48
|
-
botocore-stubs/docs/example.pyi,sha256=2v2qupn0y4MXjFQIK5XacMm9LoSVVjAKrj_gaFubdpo,2521
|
|
49
|
-
botocore-stubs/docs/method.pyi,sha256=EUzP4NqYu40I9kuHTwqR6TcMX9eruJvCdyiNzpT1UbY,1386
|
|
50
|
-
botocore-stubs/docs/paginator.pyi,sha256=OW7oZBvxhm7M8NXbEbzbB0nyS6OXbwRkGHfPmGxymkI,762
|
|
51
|
-
botocore-stubs/docs/params.pyi,sha256=MIWZrBcfQzKUNo0HADrzcptFZB4X6J9lb9zlXeZGyvE,2342
|
|
52
|
-
botocore-stubs/docs/service.pyi,sha256=D8BhY8UtZb90ejkxg_P8tqZHoc7BM7Aaaa-kMav6y-0,931
|
|
53
|
-
botocore-stubs/docs/shape.pyi,sha256=hO0mPRcOZag4w2rTrLJzYH3rVjtiQHmz3LSutdsSlo8,771
|
|
54
|
-
botocore-stubs/docs/sharedexample.pyi,sha256=aqZ8xvnYz7o0tKA_I65ZKcQvoDYTNpjgmWNbT9FbzMw,888
|
|
55
|
-
botocore-stubs/docs/translator.pyi,sha256=4HIkO1W5cgN31ZJNT4rdm1XmpCydfB_BwcqFm0bgFsk,489
|
|
56
|
-
botocore-stubs/docs/utils.pyi,sha256=JoveZ8yVgfNStQJsutHcnGg9994EskM_8kgqhrArv2U,1419
|
|
57
|
-
botocore-stubs/docs/waiter.pyi,sha256=JBz6apW8OvYuigM5_kPxQ_1JKvdRJrF6MN_5R5ltnrQ,770
|
|
58
|
-
botocore-stubs/docs/bcdoc/__init__.pyi,sha256=ieCUaCV4XgYBx-aHYTIVLmhokqQN81K4_8OB_VHSAMc,112
|
|
59
|
-
botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=axs8JYBpAVo6XBPBq1K-K0cBq_JAZH1U3IRg4qjghZ4,2211
|
|
60
|
-
botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=Q3UDGshhDIK2g0AkujOJXqEHPBNQtcyudmC0q9Z_fCs,2120
|
|
61
|
-
botocore-stubs/docs/bcdoc/style.pyi,sha256=xJ18P7--y3NzJWf7Ln9FNbJAlniLHZt6ZEdn83OxaOQ,4220
|
|
62
|
-
botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
botocore-stubs/retries/adaptive.pyi,sha256=WzwSBG_fC0poWWWXVVIjg2iR9mXPOj0oGVgeXYY3rYs,1009
|
|
64
|
-
botocore-stubs/retries/base.pyi,sha256=tXY8_TiX_U8DrZVY9u4JPnwGoUZMZbmIUNfxrYuNMEs,323
|
|
65
|
-
botocore-stubs/retries/bucket.pyi,sha256=rdq8wfbQ1p3iJ_hJWWcz6_obwRX_vkcL0V5sRkmhlV4,736
|
|
66
|
-
botocore-stubs/retries/quota.pyi,sha256=Z4sBLvnNBtnNE0JV_cHbhLDWGjQYdRyLR0bDG5dRo0I,433
|
|
67
|
-
botocore-stubs/retries/special.pyi,sha256=mEmYwXUqdWtpKoxOO0-DZ-lrc91le_WmdO8X4j_UQ1A,530
|
|
68
|
-
botocore-stubs/retries/standard.pyi,sha256=lpCPzzpy-PwwnPJhHi7BdBKODVTSnv4nxTsDZPtlAS8,4451
|
|
69
|
-
botocore-stubs/retries/throttling.pyi,sha256=mpd__xuiUjY4Uc8ocquxgD_D2azuXOtBs1J-XoObvwE,582
|
|
70
|
-
botocore_stubs-1.38.29.dist-info/licenses/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
|
|
71
|
-
botocore_stubs-1.38.29.dist-info/METADATA,sha256=JDQPgR6-YkpI-vVKVQfl9h9sSw6_aYu7Eb_jO2b69Qk,4680
|
|
72
|
-
botocore_stubs-1.38.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
73
|
-
botocore_stubs-1.38.29.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
|
|
74
|
-
botocore_stubs-1.38.29.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|