Skip to main content

Python Client for interacting with HAL-forms application

Project description

HALFormsClient Library

Overview

The HALFormsClient library provides a Python client for interacting with RESTful services that use the HAL (Hypertext Application Language) and HAL-Forms standards. This library simplifies the handling of HAL responses and their embedded resources, enabling easy navigation and interaction with APIs that follow the HAL and HAL-Forms specifications.

Features

  • Automatic token management for service accounts.
  • Robust retry mechanisms for HTTP requests.
  • Easy navigation of HAL links and embedded resources.
  • Support for CURIEs (Compact URIs) for compacting and expanding link relations.
  • Handling of common HTTP methods (GET, POST, PATCH, DELETE, PUT) with ease.
  • Validation and transformation of HAL links and URIs.
  • Customizable client configuration, including endpoint and authentication details.

Installation

To install the library, use pip:

pip install contentgrid-hal-client

Usage

Initialization

To initialize the HALFormsClient, you need to provide the endpoint of the HAL service and optionally authentication details:

from halformsclient import HALFormsClient

# Initialize using service account
client = HALFormsClient(
    client_endpoint="https://api.example.com",
    auth_uri="https://auth.example.com",
    client_id="your_client_id",
    client_secret="your_client_secret",
)

# Initialize using bearer token
client = HALFormsClient(
    client_endpoint="https://api.example.com",
    auth_uri="https://auth.example.com",
    token="your_token"
)


# Initialize using session cookie
client = HALFormsClient(
    client_endpoint="https://api.example.com",
    auth_uri="https://auth.example.com",
    session_cookie="your_session_cookie"
)

Fetching and Interacting with HAL Resources

You can fetch a HAL resource and interact with it using the provided methods:

# Fetch a resource by following a link
resource = client.follow_link(HALLink(uri="/some/resource"))

# Access metadata
print(resource.metadata)

# Access links
links = resource.get_links("key")

# Access embedded resources
embedded_objects = resource.get_embedded_objects_by_key("embedded_key")

# Update a resource with PUT or PATCH
resource.put_data({"key": "value"})
resource.patch_data({"key": "new_value"})

# Delete a resource
resource.delete()

Handling CURIEs

CURIEs (Compact URIs) are supported for compacting and expanding link relations:

curie_registry = CurieRegistry(curies=[{"name": "ex", "href": "https://example.com/{rel}"}])
expanded_uri = curie_registry.expand_curie("ex:some_relation")
compact_uri = curie_registry.compact_curie("https://example.com/some_relation")

Error Handling

The library provides custom exceptions for common HTTP errors:

from halformsclient.exceptions import BadRequest, Unauthorized

try:
    resource = client.follow_link(HALLink(uri="/some/invalid/resource"))
except BadRequest as e:
    print(f"Bad request: {str(e)}")
except Unauthorized as e:
    print(f"Unauthorized: {str(e)}")

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

contentgrid_hal_client-0.0.3.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

contentgrid_hal_client-0.0.3-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file contentgrid_hal_client-0.0.3.tar.gz.

File metadata

File hashes

Hashes for contentgrid_hal_client-0.0.3.tar.gz
Algorithm Hash digest
SHA256 697b9f4a45b4262e9e0e9d6790afe96e72c5df0996474e5b4454d44c03bab895
MD5 6307271d445d5f65927ae7e71b5db78a
BLAKE2b-256 8e48c1259c2d2a57be7fca54dd829cea0f809fe100a1cce9f46355da96af8e86

See more details on using hashes here.

File details

Details for the file contentgrid_hal_client-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for contentgrid_hal_client-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d9122429ca65ebc0842bddb97d956c74d3ad7e78cc6a318438e41e83081bdf62
MD5 795034acf718fa799ebb0656ea8a6fa6
BLAKE2b-256 1ed49cf0e94da07e9212e20065f73c3e71135429e6da91f78ff6adfe7f1bafab

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