Type annotations for boto3.SQS 1.14.55 service, generated by mypy-boto3-buider 3.0.4
Project description
mypy-boto3-sqs
Type annotations for boto3.SQS 1.14.55 service compatible with VSCode, PyCharm, mypy, pyright and other tools.
Generated by mypy-boto3-buider 3.0.4.
More information can be found on boto3-stubs page.
How to install
Install boto3-stubs
for SQS
service.
python -m pip install boto3-stubs[sqs]
Usage
VSCode
- Install Python extension
- Install Pylance extension
- Set
Pylance
as your Python Language Server - Install
boto-stubs[sqs]
in your environment:python -m pip install 'boto3-stubs[sqs]'
Both type checking and auto-complete should work for SQS
service.
No explicit type annotations required, write your boto3
code as usual.
PyCharm
- Install
boto-stubs[sqs]
in your environment:python -m pip install 'boto3-stubs[sqs]'
Both type checking and auto-complete should work for SQS
service.
No explicit type annotations required, write your boto3
code as usual.
Auto-complete can be slow on big projects or if you have a lot of installed boto3-stubs
submodules.
Other IDEs
Not tested, but as long as your IDE support mypy
or pyright
, everything should work.
mypy
- Install
mypy
:python -m pip install mypy
- Install
boto-stubs[sqs]
in your environment:python -m pip install 'boto3-stubs[sqs]'
- Run
mypy
as usual
Type checking should work for SQS
service.
No explicit type annotations required, write your boto3
code as usual.
pyright
- Install
pyright
:yarn global add pyright
- Install
boto-stubs[sqs]
in your environment:python -m pip install 'boto3-stubs[sqs]'
- Optionally, you can install
boto3-stubs
totypings
folder.
Type checking should work for SQS
service.
No explicit type annotations required, write your boto3
code as usual.
Explicit type annotations
Client annotations
SQSClient
provides annotations for boto3.client("sqs")
.
import boto3
from mypy_boto3_sqs import SQSClient
client: SQSClient = boto3.client("sqs")
# now client usage is checked by mypy and IDE should provide code auto-complete
# works for session as well
session = boto3.session.Session(region="us-west-1")
session_client: SQSClient = session.client("sqs")
Paginators annotations
mypy_boto3_sqs.paginator
module contains type annotations for all paginators.
from mypy_boto3_sqs import SQSClient
from mypy_boto3_sqs.paginator import ListDeadLetterSourceQueuesPaginator, ListQueuesPaginator
client: SQSClient = boto3.client("sqs")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
list_dead_letter_source_queues_paginator: ListDeadLetterSourceQueuesPaginator = client.get_paginator("list_dead_letter_source_queues")
list_queues_paginator: ListQueuesPaginator = client.get_paginator("list_queues")
Service Resource annotations
SQSServiceResource
provides annotations for boto3.resource("sqs")
.
from mypy_boto3_sqs import SQSServiceResource
resource: SQSServiceResource = boto3.resource("sqs")
# now resource usage is checked by mypy and IDE should provide code auto-complete
# works for session as well
session = boto3.session.Session(region="us-west-1")
session_resource: SQSServiceResource = session.resource("sqs")
Other resources annotations
mypy_boto3_sqs.service_resource
module contains type annotations for all resources.
from mypy_boto3_sqs import SQSServiceResource
from mypy_boto3_sqs.service_resource import Message, Queue
resource: SQSServiceResource = boto3.resource("sqs")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
my_message: Message = resource.Message(...)
my_queue: Queue = resource.Queue(...)
Collections annotations
mypy_boto3_sqs.service_resource
module contains type annotations
for all SQSServiceResource
collections.
from mypy_boto3_sqs import SQSServiceResource
from mypy_boto3_sqs.service_resource import ServiceResourceQueuesCollection
resource: SQSServiceResource = boto3.resource("sqs")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
queues: sqs_resources.ServiceResourceQueuesCollection = resource.queues
Typed dictionations
mypy_boto3_sqs.type_defs
module contains structures and shapes assembled
to typed dictionaries for additional type checking.
from mypy_boto3_sqs.type_defs import (
BatchResultErrorEntryTypeDef,
ChangeMessageVisibilityBatchRequestEntryTypeDef,
ChangeMessageVisibilityBatchResultEntryTypeDef,
ChangeMessageVisibilityBatchResultTypeDef,
CreateQueueResultTypeDef,
DeleteMessageBatchRequestEntryTypeDef,
DeleteMessageBatchResultEntryTypeDef,
DeleteMessageBatchResultTypeDef,
GetQueueAttributesResultTypeDef,
GetQueueUrlResultTypeDef,
ListDeadLetterSourceQueuesResultTypeDef,
ListQueuesResultTypeDef,
ListQueueTagsResultTypeDef,
MessageAttributeValueTypeDef,
MessageSystemAttributeValueTypeDef,
MessageTypeDef,
PaginatorConfigTypeDef,
ReceiveMessageResultTypeDef,
SendMessageBatchRequestEntryTypeDef,
SendMessageBatchResultEntryTypeDef,
SendMessageBatchResultTypeDef,
SendMessageResultTypeDef,
)
def get_structure() -> BatchResultErrorEntryTypeDef:
return {
...
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for mypy_boto3_sqs-1.14.55.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3d358c998bf29e095c273d021fd72e92b6c40dc563632ec518aa55b553c20de |
|
MD5 | 185e39ea741099ec27af26d1640aac5e |
|
BLAKE2b-256 | abcf15eaf13b5b324f4be83ba370e58a80fbc45f3263e72067de0a39a3e74cc1 |