Type annotations for aiobotocore.Private5G 2.5.0 service generated with mypy-boto3-builder 7.12.5
Project description
types-aiobotocore-privatenetworks
Type annotations for aiobotocore.Private5G 2.5.0 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.
Generated by mypy-boto3-builder 7.12.5.
More information can be found on types-aiobotocore page and in types-aiobotocore-privatenetworks docs.
See how it helps to find and fix potential bugs:
- types-aiobotocore-privatenetworks
How to install
From PyPI with pip
Install types-aiobotocore
for Private5G
service.
# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[privatenetworks]'
# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aiobotocore-lite[privatenetworks]'
# standalone installation
python -m pip install types-aiobotocore-privatenetworks
How to uninstall
python -m pip uninstall -y types-aiobotocore-privatenetworks
Usage
VSCode
- Install Python extension
- Install Pylance extension
- Set
Pylance
as your Python Language Server - Install
types-aiobotocore[privatenetworks]
in your environment:
python -m pip install 'types-aiobotocore[privatenetworks]'
Both type checking and code completion should now work. No explicit type
annotations required, write your aiobotocore
code as usual.
PyCharm
Install types-aiobotocore-lite[privatenetworks]
in your environment:
python -m pip install 'types-aiobotocore-lite[privatenetworks]'`
Both type checking and code completion should now work. Explicit type annotations are required.
Use types-aiobotocore
package instead for implicit type discovery.
Emacs
- Install
types-aiobotocore
with services you use in your environment:
python -m pip install 'types-aiobotocore[privatenetworks]'
- 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
types-aiobotocore
Type checking should now work. No explicit type annotations required, write
your aiobotocore
code as usual.
Sublime Text
- Install
types-aiobotocore[privatenetworks]
with services you use in your environment:
python -m pip install 'types-aiobotocore[privatenetworks]'
- Install LSP-pyright package
Type checking should now work. No explicit type annotations required, write
your aiobotocore
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
types-aiobotocore[privatenetworks]
in your environment:
python -m pip install 'types-aiobotocore[privatenetworks]'`
Type checking should now work. No explicit type annotations required, write
your aiobotocore
code as usual.
pyright
- Install
pyright
:npm i -g pyright
- Install
types-aiobotocore[privatenetworks]
in your environment:
python -m pip install 'types-aiobotocore[privatenetworks]'
Optionally, you can install types-aiobotocore
to typings
folder.
Type checking should now work. No explicit type annotations required, write
your aiobotocore
code as usual.
Explicit type annotations
Client annotations
Private5GClient
provides annotations for
session.create_client("privatenetworks")
.
from aiobotocore.session import get_session
from types_aiobotocore_privatenetworks import Private5GClient
session = get_session()
async with session.create_client("privatenetworks") as client:
client: Private5GClient
# now client usage is checked by mypy and IDE should provide code completion
Paginators annotations
types_aiobotocore_privatenetworks.paginator
module contains type annotations
for all paginators.
from aiobotocore.session import get_session
from types_aiobotocore_privatenetworks import Private5GClient
from types_aiobotocore_privatenetworks.paginator import (
ListDeviceIdentifiersPaginator,
ListNetworkResourcesPaginator,
ListNetworkSitesPaginator,
ListNetworksPaginator,
ListOrdersPaginator,
)
session = get_session()
async with session.create_client("privatenetworks") as client:
client: Private5GClient
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
list_device_identifiers_paginator: ListDeviceIdentifiersPaginator = client.get_paginator(
"list_device_identifiers"
)
list_network_resources_paginator: ListNetworkResourcesPaginator = client.get_paginator(
"list_network_resources"
)
list_network_sites_paginator: ListNetworkSitesPaginator = client.get_paginator(
"list_network_sites"
)
list_networks_paginator: ListNetworksPaginator = client.get_paginator("list_networks")
list_orders_paginator: ListOrdersPaginator = client.get_paginator("list_orders")
Literals
types_aiobotocore_privatenetworks.literals
module contains literals extracted
from shapes that can be used in user code for type checking.
from types_aiobotocore_privatenetworks.literals import (
AcknowledgmentStatusType,
DeviceIdentifierFilterKeysType,
DeviceIdentifierStatusType,
ElevationReferenceType,
ElevationUnitType,
HealthStatusType,
ListDeviceIdentifiersPaginatorName,
ListNetworkResourcesPaginatorName,
ListNetworkSitesPaginatorName,
ListNetworksPaginatorName,
ListOrdersPaginatorName,
NetworkFilterKeysType,
NetworkResourceDefinitionTypeType,
NetworkResourceFilterKeysType,
NetworkResourceStatusType,
NetworkResourceTypeType,
NetworkSiteFilterKeysType,
NetworkSiteStatusType,
NetworkStatusType,
OrderFilterKeysType,
UpdateTypeType,
Private5GServiceName,
ServiceName,
ResourceServiceName,
PaginatorName,
)
def check_value(value: AcknowledgmentStatusType) -> bool:
...
Typed dictionaries
types_aiobotocore_privatenetworks.type_defs
module contains structures and
shapes assembled to typed dictionaries for additional type checking.
from types_aiobotocore_privatenetworks.type_defs import (
AcknowledgeOrderReceiptRequestRequestTypeDef,
ResponseMetadataTypeDef,
ActivateDeviceIdentifierRequestRequestTypeDef,
DeviceIdentifierTypeDef,
AddressTypeDef,
PositionTypeDef,
CreateNetworkRequestRequestTypeDef,
NetworkTypeDef,
DeactivateDeviceIdentifierRequestRequestTypeDef,
DeleteNetworkRequestRequestTypeDef,
DeleteNetworkSiteRequestRequestTypeDef,
GetDeviceIdentifierRequestRequestTypeDef,
GetNetworkRequestRequestTypeDef,
GetNetworkResourceRequestRequestTypeDef,
GetNetworkSiteRequestRequestTypeDef,
GetOrderRequestRequestTypeDef,
PaginatorConfigTypeDef,
ListDeviceIdentifiersRequestRequestTypeDef,
ListNetworkResourcesRequestRequestTypeDef,
ListNetworkSitesRequestRequestTypeDef,
ListNetworksRequestRequestTypeDef,
ListOrdersRequestRequestTypeDef,
ListTagsForResourceRequestRequestTypeDef,
NameValuePairTypeDef,
TrackingInformationTypeDef,
TagResourceRequestRequestTypeDef,
UntagResourceRequestRequestTypeDef,
UpdateNetworkSiteRequestRequestTypeDef,
ListTagsForResourceResponseTypeDef,
PingResponseTypeDef,
ActivateDeviceIdentifierResponseTypeDef,
DeactivateDeviceIdentifierResponseTypeDef,
GetDeviceIdentifierResponseTypeDef,
ListDeviceIdentifiersResponseTypeDef,
ActivateNetworkSiteRequestRequestTypeDef,
ReturnInformationTypeDef,
StartNetworkResourceUpdateRequestRequestTypeDef,
ConfigureAccessPointRequestRequestTypeDef,
CreateNetworkResponseTypeDef,
DeleteNetworkResponseTypeDef,
GetNetworkResponseTypeDef,
ListNetworksResponseTypeDef,
ListDeviceIdentifiersRequestListDeviceIdentifiersPaginateTypeDef,
ListNetworkResourcesRequestListNetworkResourcesPaginateTypeDef,
ListNetworkSitesRequestListNetworkSitesPaginateTypeDef,
ListNetworksRequestListNetworksPaginateTypeDef,
ListOrdersRequestListOrdersPaginateTypeDef,
NetworkResourceDefinitionTypeDef,
OrderTypeDef,
NetworkResourceTypeDef,
SitePlanTypeDef,
AcknowledgeOrderReceiptResponseTypeDef,
GetOrderResponseTypeDef,
ListOrdersResponseTypeDef,
ConfigureAccessPointResponseTypeDef,
GetNetworkResourceResponseTypeDef,
ListNetworkResourcesResponseTypeDef,
StartNetworkResourceUpdateResponseTypeDef,
CreateNetworkSiteRequestRequestTypeDef,
NetworkSiteTypeDef,
UpdateNetworkSitePlanRequestRequestTypeDef,
ActivateNetworkSiteResponseTypeDef,
CreateNetworkSiteResponseTypeDef,
DeleteNetworkSiteResponseTypeDef,
GetNetworkSiteResponseTypeDef,
ListNetworkSitesResponseTypeDef,
UpdateNetworkSiteResponseTypeDef,
)
def get_structure() -> AcknowledgeOrderReceiptRequestRequestTypeDef:
return {...}
How it works
Fully automated
mypy-boto3-builder carefully
generates type annotations for each service, patiently waiting for
aiobotocore
updates. It delivers a drop-in type annotations for you and makes
sure that:
- All available
aiobotocore
services are covered. - Each public class and method of every
aiobotocore
service gets valid type annotations extracted from the documentation (blamebotocore
docs if types are incorrect). - 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
andaiobotocore
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.session
calls - Auto discovery of types for
session.client
andsession.session
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
types-aiobotocore-privatenetworks
version is the same as related
aiobotocore
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 aiobotocore 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 types-aiobotocore-privatenetworks-2.5.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc307595695bacca855afd732c5740476679c4feae0d359409b07fc0315571cf |
|
MD5 | ee5dbd719f9e39bb922586e7cd382cf8 |
|
BLAKE2b-256 | cda39aeb3482ea442fa413285a4ef531aea2fd4dbe2bd2a249abaf5b5337e5e5 |
Hashes for types_aiobotocore_privatenetworks-2.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c5fe7372b01ef487cc853db1fd7f30fc9ccb2b8ea3a2954c4013e467a6c3310 |
|
MD5 | 6f93106b782ed424d0483950ea00af78 |
|
BLAKE2b-256 | 694f2381b65ad486b627a841eba951ba8b706b76dca73be6ac247c6519e0972b |