Skip to content

NeptuneGraph module#

Index > NeptuneGraph

Auto-generated documentation for NeptuneGraph type annotations stubs module types-aiobotocore-neptune-graph.

How to install#

From PyPI with pip#

Install types-aioboto3 for NeptuneGraph service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[neptune-graph]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[neptune-graph]'


# standalone installation
python -m pip install types-aiobotocore-neptune-graph

How to uninstall#

python -m pip uninstall -y types-aiobotocore-neptune-graph

Usage#

Code samples can be found in Examples.

NeptuneGraphClient#

Type annotations and code completion for session.client("neptune-graph") as NeptuneGraphClient boto3 documentation

# NeptuneGraphClient usage example

from aioboto3.session import Session

from types_aiobotocore_neptune_graph.client import NeptuneGraphClient


session = Session()
async with session.client("neptune-graph") as client:
    client: NeptuneGraphClient

Paginators#

Type annotations and code completion for paginators from session.client("neptune-graph").get_paginator("...").

# ListGraphSnapshotsPaginator usage example

from types_aiobotocore_neptune_graph.paginator import ListGraphSnapshotsPaginator

def get_list_graph_snapshots_paginator() -> ListGraphSnapshotsPaginator:
    return client.get_paginator("list_graph_snapshots"))

Waiters#

Type annotations and code completion for waiters from session.client("neptune-graph").get_waiter("...").

# GraphAvailableWaiter usage example

from types_aiobotocore_neptune_graph.waiter import GraphAvailableWaiter

def get_graph_available_waiter() -> GraphAvailableWaiter:
    return Session().client("neptune-graph").get_waiter("graph_available")

Literals#

Type annotations for literals used in methods and schema.

# ExplainModeType usage example

from types_aiobotocore_neptune_graph.literals import ExplainModeType

def get_value() -> ExplainModeType:
    return "DETAILS"

Type definitions#

Type annotations for type definitions used in methods and schema.