Type annotations for boto3.Glacier 1.28.15 service generated with mypy-boto3-builder 7.16.1
Project description
mypy-boto3-glacier
Type annotations for boto3.Glacier 1.28.15 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.
Generated by mypy-boto3-builder 7.16.1.
More information can be found on boto3-stubs page and in mypy-boto3-glacier docs.
See how it helps to find and fix potential bugs:
- mypy-boto3-glacier
How to install
VSCode extension
Add
AWS Boto3
extension to your VSCode and run AWS boto3: Quick Start
command.
Click Modify
and select boto3 common
and Glacier
.
From PyPI with pip
Install boto3-stubs
for Glacier
service.
# install with boto3 type annotations
python -m pip install 'boto3-stubs[glacier]'
# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[glacier]'
# standalone installation
python -m pip install mypy-boto3-glacier
How to uninstall
python -m pip uninstall -y mypy-boto3-glacier
Usage
VSCode
- Install Python extension
- Install Pylance extension
- Set
Pylance
as your Python Language Server - Install
boto3-stubs[glacier]
in your environment:
python -m pip install 'boto3-stubs[glacier]'
Both type checking and code completion should now work. No explicit type
annotations required, write your boto3
code as usual.
PyCharm
Install boto3-stubs-lite[glacier]
in your environment:
python -m pip install 'boto3-stubs-lite[glacier]'`
Both type checking and code completion should now work. Explicit type annotations are required.
Use boto3-stubs
package instead for implicit type discovery.
Emacs
- Install
boto3-stubs
with services you use in your environment:
python -m pip install 'boto3-stubs[glacier]'
- Install use-package, lsp, company and flycheck packages
- Install lsp-pyright package
(use-package lsp-pyright
:ensure t
:hook (python-mode . (lambda ()
(require 'lsp-pyright)
(lsp))) ; or lsp-deferred
:init (when (executable-find "python3")
(setq lsp-pyright-python-executable-cmd "python3"))
)
- Make sure emacs uses the environment where you have installed
boto3-stubs
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
Sublime Text
- Install
boto3-stubs[glacier]
with services you use in your environment:
python -m pip install 'boto3-stubs[glacier]'
- Install LSP-pyright package
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
Other IDEs
Not tested, but as long as your IDE supports mypy
or pyright
, everything
should work.
mypy
- Install
mypy
:python -m pip install mypy
- Install
boto3-stubs[glacier]
in your environment:
python -m pip install 'boto3-stubs[glacier]'`
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
pyright
- Install
pyright
:npm i -g pyright
- Install
boto3-stubs[glacier]
in your environment:
python -m pip install 'boto3-stubs[glacier]'
Optionally, you can install boto3-stubs
to typings
folder.
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
Explicit type annotations
Client annotations
GlacierClient
provides annotations for boto3.client("glacier")
.
from boto3.session import Session
from mypy_boto3_glacier import GlacierClient
client: GlacierClient = Session().client("glacier")
# now client usage is checked by mypy and IDE should provide code completion
Paginators annotations
mypy_boto3_glacier.paginator
module contains type annotations for all
paginators.
from boto3.session import Session
from mypy_boto3_glacier import GlacierClient
from mypy_boto3_glacier.paginator import (
ListJobsPaginator,
ListMultipartUploadsPaginator,
ListPartsPaginator,
ListVaultsPaginator,
)
client: GlacierClient = Session().client("glacier")
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
list_jobs_paginator: ListJobsPaginator = client.get_paginator("list_jobs")
list_multipart_uploads_paginator: ListMultipartUploadsPaginator = client.get_paginator(
"list_multipart_uploads"
)
list_parts_paginator: ListPartsPaginator = client.get_paginator("list_parts")
list_vaults_paginator: ListVaultsPaginator = client.get_paginator("list_vaults")
Waiters annotations
mypy_boto3_glacier.waiter
module contains type annotations for all waiters.
from boto3.session import Session
from mypy_boto3_glacier import GlacierClient
from mypy_boto3_glacier.waiter import VaultExistsWaiter, VaultNotExistsWaiter
client: GlacierClient = Session().client("glacier")
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
vault_exists_waiter: VaultExistsWaiter = client.get_waiter("vault_exists")
vault_not_exists_waiter: VaultNotExistsWaiter = client.get_waiter("vault_not_exists")
Service Resource annotations
GlacierServiceResource
provides annotations for boto3.resource("glacier")
.
from boto3.session import Session
from mypy_boto3_glacier import GlacierServiceResource
resource: GlacierServiceResource = Session().resource("glacier")
# now resource usage is checked by mypy and IDE should provide code completion
Other resources annotations
mypy_boto3_glacier.service_resource
module contains type annotations for all
resources.
from boto3.session import Session
from mypy_boto3_glacier import GlacierServiceResource
from mypy_boto3_glacier.service_resource import (
Account,
Archive,
Job,
MultipartUpload,
Notification,
Vault,
)
resource: GlacierServiceResource = Session().resource("glacier")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
my_account: Account = resource.Account(...)
my_archive: Archive = resource.Archive(...)
my_job: Job = resource.Job(...)
my_multipart_upload: MultipartUpload = resource.MultipartUpload(...)
my_notification: Notification = resource.Notification(...)
my_vault: Vault = resource.Vault(...)
Collections annotations
mypy_boto3_glacier.service_resource
module contains type annotations for all
GlacierServiceResource
collections.
from boto3.session import Session
from mypy_boto3_glacier import GlacierServiceResource
from mypy_boto3_glacier.service_resource import ServiceResourceVaultsCollection
resource: GlacierServiceResource = Session().resource("glacier")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
vaults: glacier_resources.ServiceResourceVaultsCollection = resource.vaults
Literals
mypy_boto3_glacier.literals
module contains literals extracted from shapes
that can be used in user code for type checking.
from mypy_boto3_glacier.literals import (
ActionCodeType,
CannedACLType,
EncryptionTypeType,
ExpressionTypeType,
FileHeaderInfoType,
ListJobsPaginatorName,
ListMultipartUploadsPaginatorName,
ListPartsPaginatorName,
ListVaultsPaginatorName,
PermissionType,
QuoteFieldsType,
StatusCodeType,
StorageClassType,
TypeType,
VaultExistsWaiterName,
VaultNotExistsWaiterName,
GlacierServiceName,
ServiceName,
ResourceServiceName,
PaginatorName,
WaiterName,
RegionName,
)
def check_value(value: ActionCodeType) -> bool:
...
Typed dictionaries
mypy_boto3_glacier.type_defs
module contains structures and shapes assembled
to typed dictionaries for additional type checking.
from mypy_boto3_glacier.type_defs import (
AbortMultipartUploadInputRequestTypeDef,
AbortVaultLockInputRequestTypeDef,
AddTagsToVaultInputRequestTypeDef,
ResponseMetadataTypeDef,
CSVInputTypeDef,
CSVOutputTypeDef,
CompleteMultipartUploadInputMultipartUploadCompleteTypeDef,
CompleteMultipartUploadInputRequestTypeDef,
CompleteVaultLockInputRequestTypeDef,
CreateVaultInputAccountCreateVaultTypeDef,
CreateVaultInputRequestTypeDef,
CreateVaultInputServiceResourceCreateVaultTypeDef,
DataRetrievalRuleTypeDef,
DeleteArchiveInputRequestTypeDef,
DeleteVaultAccessPolicyInputRequestTypeDef,
DeleteVaultInputRequestTypeDef,
DeleteVaultNotificationsInputRequestTypeDef,
DescribeJobInputRequestTypeDef,
DescribeVaultInputRequestTypeDef,
WaiterConfigTypeDef,
DescribeVaultOutputTypeDef,
EncryptionTypeDef,
GetDataRetrievalPolicyInputRequestTypeDef,
GetJobOutputInputJobGetOutputTypeDef,
GetJobOutputInputRequestTypeDef,
GetVaultAccessPolicyInputRequestTypeDef,
VaultAccessPolicyTypeDef,
GetVaultLockInputRequestTypeDef,
GetVaultNotificationsInputRequestTypeDef,
VaultNotificationConfigOutputTypeDef,
InventoryRetrievalJobDescriptionTypeDef,
GranteeTypeDef,
InitiateMultipartUploadInputRequestTypeDef,
InitiateMultipartUploadInputVaultInitiateMultipartUploadTypeDef,
VaultLockPolicyTypeDef,
InventoryRetrievalJobInputTypeDef,
PaginatorConfigTypeDef,
ListJobsInputRequestTypeDef,
ListMultipartUploadsInputRequestTypeDef,
UploadListElementTypeDef,
ListPartsInputMultipartUploadPartsTypeDef,
ListPartsInputRequestTypeDef,
PartListElementTypeDef,
ListProvisionedCapacityInputRequestTypeDef,
ProvisionedCapacityDescriptionTypeDef,
ListTagsForVaultInputRequestTypeDef,
ListVaultsInputRequestTypeDef,
PurchaseProvisionedCapacityInputRequestTypeDef,
RemoveTagsFromVaultInputRequestTypeDef,
VaultNotificationConfigTypeDef,
UploadArchiveInputRequestTypeDef,
UploadArchiveInputVaultUploadArchiveTypeDef,
UploadMultipartPartInputMultipartUploadUploadPartTypeDef,
UploadMultipartPartInputRequestTypeDef,
ArchiveCreationOutputTypeDef,
CreateVaultOutputTypeDef,
DescribeVaultResponseTypeDef,
EmptyResponseMetadataTypeDef,
GetJobOutputOutputTypeDef,
GetVaultLockOutputTypeDef,
InitiateJobOutputTypeDef,
InitiateMultipartUploadOutputTypeDef,
InitiateVaultLockOutputTypeDef,
InventoryRetrievalJobDescriptionResponseTypeDef,
ListTagsForVaultOutputTypeDef,
PurchaseProvisionedCapacityOutputTypeDef,
UploadMultipartPartOutputTypeDef,
InputSerializationTypeDef,
OutputSerializationTypeDef,
DataRetrievalPolicyOutputTypeDef,
DataRetrievalPolicyTypeDef,
DescribeVaultInputVaultExistsWaitTypeDef,
DescribeVaultInputVaultNotExistsWaitTypeDef,
ListVaultsOutputTypeDef,
GetVaultAccessPolicyOutputTypeDef,
SetVaultAccessPolicyInputRequestTypeDef,
GetVaultNotificationsOutputTypeDef,
GrantTypeDef,
InitiateVaultLockInputRequestTypeDef,
ListJobsInputListJobsPaginateTypeDef,
ListMultipartUploadsInputListMultipartUploadsPaginateTypeDef,
ListPartsInputListPartsPaginateTypeDef,
ListVaultsInputListVaultsPaginateTypeDef,
ListMultipartUploadsOutputTypeDef,
ListPartsOutputTypeDef,
ListProvisionedCapacityOutputTypeDef,
SetVaultNotificationsInputNotificationSetTypeDef,
SetVaultNotificationsInputRequestTypeDef,
SelectParametersResponseTypeDef,
SelectParametersTypeDef,
GetDataRetrievalPolicyOutputTypeDef,
SetDataRetrievalPolicyInputRequestTypeDef,
S3LocationOutputTypeDef,
S3LocationTypeDef,
OutputLocationOutputTypeDef,
OutputLocationTypeDef,
GlacierJobDescriptionResponseTypeDef,
GlacierJobDescriptionTypeDef,
JobParametersTypeDef,
ListJobsOutputTypeDef,
InitiateJobInputRequestTypeDef,
)
def get_structure() -> AbortMultipartUploadInputRequestTypeDef:
return {...}
How it works
Fully automated
mypy-boto3-builder carefully
generates type annotations for each service, patiently waiting for boto3
updates. It delivers drop-in type annotations for you and makes sure that:
- All available
boto3
services are covered. - Each public class and method of every
boto3
service gets valid type annotations extracted frombotocore
schemas. - Type annotations include up-to-date documentation.
- Link to documentation is provided for every method.
- Code is processed by black and isort for readability.
What's new
Implemented features
- Fully type annotated
boto3
,botocore
,aiobotocore
andaioboto3
libraries mypy
,pyright
,VSCode
,PyCharm
,Sublime Text
andEmacs
compatibilityClient
,ServiceResource
,Resource
,Waiter
Paginator
type annotations for each service- Generated
TypeDefs
for each service - Generated
Literals
for each service - Auto discovery of types for
boto3.client
andboto3.resource
calls - Auto discovery of types for
session.client
andsession.resource
calls - Auto discovery of types for
client.get_waiter
andclient.get_paginator
calls - Auto discovery of types for
ServiceResource
andResource
collections - Auto discovery of types for
aiobotocore.Session.create_client
calls
Latest changes
Builder changelog can be found in Releases.
Versioning
mypy-boto3-glacier
version is the same as related boto3
version and follows
PEP 440 format.
Thank you
- Allie Fitter for boto3-type-annotations, this package is based on top of his work
- black developers for an awesome formatting tool
- Timothy Edmund Crosley for isort and how flexible it is
- mypy developers for doing all dirty work for us
- pyright team for the new era of typed Python
Documentation
All services type annotations can be found in boto3 docs
Support and contributing
This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.
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-glacier-1.28.15.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6814ceb33f36ced737414fbafb5acccb98e1595c642c7cd596ac0d4ecc436258 |
|
MD5 | 70ab17ed92f08bf1436dca678a95770d |
|
BLAKE2b-256 | c0893722ac955af7d1220aa8dad84ff2528c1af04872cb3de4d248511f82de9e |
Hashes for mypy_boto3_glacier-1.28.15-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa7a0c81b03726e10a4d11ff49618085acc5d9362bc3abbed665c287c17325ef |
|
MD5 | 792c25c3cb1240f4acbb5822b612f9b8 |
|
BLAKE2b-256 | 891784f2192785f032d8ab7beb48b2fd7575f7463ea11496ea6b1acde7b7d9f1 |