Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
types-aiobotocore-connectcampaigns
Advanced tools
Type annotations for aiobotocore.ConnectCampaignService 2.15.2 service generated with mypy-boto3-builder 8.1.2
Type annotations for aiobotocore.ConnectCampaignService 2.15.2 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.
Generated by mypy-boto3-builder 8.1.2.
More information can be found on types-aiobotocore page and in types-aiobotocore-connectcampaigns docs.
See how it helps to find and fix potential bugs:
Install types-aiobotocore
for ConnectCampaignService
service.
# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[connectcampaigns]'
# 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[connectcampaigns]'
# standalone installation
python -m pip install types-aiobotocore-connectcampaigns
python -m pip uninstall -y types-aiobotocore-connectcampaigns
Pylance
as your Python Language Servertypes-aiobotocore[connectcampaigns]
in your environment:python -m pip install 'types-aiobotocore[connectcampaigns]'
Both type checking and code completion should now work. No explicit type
annotations required, write your aiobotocore
code as usual.
Install types-aiobotocore-lite[connectcampaigns]
in your environment:
python -m pip install 'types-aiobotocore-lite[connectcampaigns]'`
Both type checking and code completion should now work. Explicit type annotations are required.
Use types-aiobotocore
package instead for implicit type discovery.
types-aiobotocore
with services you use in your environment:python -m pip install 'types-aiobotocore[connectcampaigns]'
(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"))
)
types-aiobotocore
Type checking should now work. No explicit type annotations required, write
your aiobotocore
code as usual.
types-aiobotocore[connectcampaigns]
with services you use in your
environment:python -m pip install 'types-aiobotocore[connectcampaigns]'
Type checking should now work. No explicit type annotations required, write
your aiobotocore
code as usual.
Not tested, but as long as your IDE supports mypy
or pyright
, everything
should work.
mypy
: python -m pip install mypy
types-aiobotocore[connectcampaigns]
in your environment:python -m pip install 'types-aiobotocore[connectcampaigns]'
Type checking should now work. No explicit type annotations required, write
your aiobotocore
code as usual.
pyright
: npm i -g pyright
types-aiobotocore[connectcampaigns]
in your environment:python -m pip install 'types-aiobotocore[connectcampaigns]'
Optionally, you can install types-aiobotocore
to typings
directory.
Type checking should now work. No explicit type annotations required, write
your aiobotocore
code as usual.
ConnectCampaignServiceClient
provides annotations for
session.create_client("connectcampaigns")
.
from aiobotocore.session import get_session
from types_aiobotocore_connectcampaigns import ConnectCampaignServiceClient
session = get_session()
async with session.create_client("connectcampaigns") as client:
client: ConnectCampaignServiceClient
# now client usage is checked by mypy and IDE should provide code completion
types_aiobotocore_connectcampaigns.paginator
module contains type annotations
for all paginators.
from aiobotocore.session import get_session
from types_aiobotocore_connectcampaigns import ConnectCampaignServiceClient
from types_aiobotocore_connectcampaigns.paginator import ListCampaignsPaginator
session = get_session()
async with session.create_client("connectcampaigns") as client:
client: ConnectCampaignServiceClient
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
list_campaigns_paginator: ListCampaignsPaginator = client.get_paginator("list_campaigns")
types_aiobotocore_connectcampaigns.literals
module contains literals
extracted from shapes that can be used in user code for type checking.
Full list of ConnectCampaignService
Literals can be found in
docs.
from types_aiobotocore_connectcampaigns.literals import CampaignStateType
def check_value(value: CampaignStateType) -> bool: ...
types_aiobotocore_connectcampaigns.type_defs
module contains structures and
shapes assembled to typed dictionaries and unions for additional type checking.
Full list of ConnectCampaignService
TypeDefs can be found in
docs.
from types_aiobotocore_connectcampaigns.type_defs import AgentlessDialerConfigTypeDef
def get_value() -> AgentlessDialerConfigTypeDef:
return {...}
Fully automated
mypy-boto3-builder carefully
generates type annotations for each service, patiently waiting for
aiobotocore
updates. It delivers drop-in type annotations for you and makes
sure that:
aiobotocore
services are covered.aiobotocore
service gets valid type
annotations extracted from botocore
schemas.boto3
, botocore
, aiobotocore
and aioboto3
librariesmypy
, pyright
, VSCode
, PyCharm
, Sublime Text
and Emacs
compatibilityClient
, ServiceResource
, Resource
, Waiter
Paginator
type
annotations for each serviceTypeDefs
for each serviceLiterals
for each serviceboto3.client
and boto3.resource
callssession.client
and session.resource
callsclient.get_waiter
and client.get_paginator
callsServiceResource
and Resource
collectionsaiobotocore.Session.create_client
callsBuilder changelog can be found in Releases.
types-aiobotocore-connectcampaigns
version is the same as related
aiobotocore
version and follows
PEP 440 format.
All services type annotations can be found in aiobotocore docs
This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.
FAQs
Type annotations for aiobotocore.ConnectCampaignService 2.15.2 service generated with mypy-boto3-builder 8.1.2
We found that types-aiobotocore-connectcampaigns demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.