Skip to main content

A package for connecting to AWS AppSync WebSocket API using graphql subscriptions

Project description

AWS AppSync WebSocket Client

A Python client for subscribing to AWS AppSync GraphQL APIs via WebSockets. This package allows you to connect to the AWS AppSync WebSocket API, handle GraphQL subscriptions, and manage reconnections and retries seamlessly.

Features

  • GraphQL Subscriptions: Easily subscribe to GraphQL queries over WebSockets.
  • Automatic Reconnection: Handles reconnection attempts in case of dropped WebSocket connections.
  • Thread-safe: Manages multiple subscriptions with thread-safe operations.
  • Callback Handling: Provides a way to specify callback functions that process subscription data.

Installation

Install the package via pip:

pip install appsync-ws-client

Usage

1. Initialize the Client

To use the client, provide the WebSocket URL and an authentication function that returns the necessary headers.

from appsync_ws_client.client import GraphQLWebSocketClient

def get_auth_headers():
    return {
        "host": "xxx.appsync-api.<region>.amazonaws.com",
        "Authorization": "<ACCESS_TOKEN>",
    }

url = "wss://<your-appsync-endpoint>"
client = GraphQLWebSocketClient(url, auth_function=get_auth_headers)
client.connect()

2. Subscribing to a GraphQL Query

You can subscribe to a GraphQL query using the subscribe method. The subscription requires a GraphQL query, variables (if any), and a callback function to handle the subscription data.

query = '''
subscription OnPriceUpdate {
    onPriceUpdate {
        id
        price
        timestamp
    }
}
'''

def handle_subscription_data(data):
    print("Received subscription data:", data)

subscription_id = client.subscribe(query, variables={}, callback=handle_subscription_data)

3. Unsubscribing

To unsubscribe from a subscription, use the unsubscribe method with the subscription_id that was returned when you subscribed.

client.unsubscribe(subscription_id)

4. Closing the Connection

Ensure you close the WebSocket connection properly when done:

client.close()

5. Handling Reconnection

The client automatically attempts to reconnect when a WebSocket connection drops. You can control the number of retry attempts by passing max_retries to the client. For example:

client = GraphQLWebSocketClient(url, auth_function=get_auth_headers, max_retries=10)
client.connect()

Error Handling

The package will raise the following errors:

  • TimeoutError: Raised when the connection acknowledgment times out.
  • MaxRetriesExceeded: Raised when the maximum number of reconnection attempts is exceeded.

You can also handle WebSocket errors using the client’s internal logging.

Logging

Logging is built in to help monitor the WebSocket connection and subscription process. Make sure to configure logging in your application as necessary:

import logging

logging.basicConfig(level=logging.INFO)

Example

Here is a full example of setting up the client and subscribing to a GraphQL subscription:

import time
import logging
from appsync_ws_client.client import GraphQLWebSocketClient

logging.basicConfig(level=logging.INFO)

def get_auth_headers():
    return {
        "host": "xxx.appsync-api.<region>.amazonaws.com",
        "Authorization": "<ACCESS_TOKEN>",
    }

url = "wss://<your-appsync-endpoint>"
client = GraphQLWebSocketClient(url, auth_function=get_auth_headers)
client.connect()

query = '''
subscription OnPriceUpdate {
    onPriceUpdate {
        id
        price
        timestamp
    }
}
'''

def handle_subscription_data(data):
    print("Received subscription data:", data)

subscription_id = client.subscribe(query, variables={}, callback=handle_subscription_data)

try:
    while True:
        time.sleep(1)  # Keeps the main program alive
except KeyboardInterrupt:
    print("Closing WebSocket and shutting down...")
    client.close()


# Later, if you want to unsubscribe
client.unsubscribe(subscription_id)

# Always remember to close the connection when done
client.close()

License

This package is licensed under the MIT License. See the LICENSE file for more details.

Contributing

Feel free to open an issue or submit a pull request if you want to contribute!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

appsync_ws_client-0.1.3.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

appsync_ws_client-0.1.3-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file appsync_ws_client-0.1.3.tar.gz.

File metadata

  • Download URL: appsync_ws_client-0.1.3.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for appsync_ws_client-0.1.3.tar.gz
Algorithm Hash digest
SHA256 f0dded477dcc0ada5f4298babb3da4fd890e979e84e385373ae8c94c3164ca2f
MD5 d35f142d850966c78f96a9864e1e9027
BLAKE2b-256 4dfbe3f8f8526983d03d64fdb157c9c5ccd167adc2b80ef2790ed0b2fb554b3b

See more details on using hashes here.

File details

Details for the file appsync_ws_client-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for appsync_ws_client-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e3099c7ab83425ec5dc81f0aec06ab0d4ad0049150c898b063c5e15747672484
MD5 325f8ec470c530f2040743157d84b1d5
BLAKE2b-256 34d93a203dbf17ae6eb23902a65e55b418ed4c4d6647596718e5972e549c2291

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page