Skip to main content

SSB Collector Client

Project description

SSB Collector Client

PyPI Status Python Version License

Documentation Tests Coverage Quality Gate Status

pre-commit Black Ruff Poetry

Features

  • Start new data collector tasks with custom specifications
  • List all running collector tasks
  • Stop running collector tasks by ID
  • Built-in authentication using Dapla Auth Client
  • Object-oriented API with CollectorClient class

Requirements

  • Python 3.10 or higher
  • Access to a Data Collector service
  • Dapla authentication credentials

Installation

You can install SSB Collector Client via pip from PyPI:

pip install ssb-collector-client

Usage

The SSB Collector Client provides an object-oriented interface using the CollectorClient class:

Quick Start

from ssb_collector_client import CollectorClient

# Initialize the client with your collector service URL
client = CollectorClient("https://your-collector-service.no/tasks")

# Define your collector specification
specification = {
    "type": "your-collector-type",
    # ... other specification parameters
}

# Start a new task
response = client.start(specification)

# Get all running tasks
tasks = client.running_tasks()
print(f"Running tasks: {tasks.json()}")

# Stop a specific task by ID
client.stop(task_id=1234)

Complete Example

Here's a complete example using the CollectorClient class:

from ssb_collector_client import CollectorClient

# Initialize the client
collector_url = "https://your-collector-service.no/tasks"
client = CollectorClient(collector_url)

# Define your collector specification
specification = {
    "type": "example-type",
    "name": "my-collection-task",
    # ... other specification parameters
}

# Start a new task
print("Starting collector task...")
start_response = client.start(specification)
print(f"Task started: {start_response.status_code}")

# Check running tasks
print("\nChecking running tasks...")
tasks_response = client.running_tasks()
tasks = tasks_response.json()
print(f"Running tasks: {tasks}")

# Stop a specific task if needed
if tasks:
    task_id = 1234  # Replace with actual task ID
    print(f"\nStopping task {task_id}...")
    client.stop(task_id)

Please see the Reference Guide for details.

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the MIT license, SSB Collector Client is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Credits

This project was generated from Statistics Norway's SSB PyPI Template.

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

ssb_collector_client-0.1.0.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ssb_collector_client-0.1.0-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file ssb_collector_client-0.1.0.tar.gz.

File metadata

  • Download URL: ssb_collector_client-0.1.0.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ssb_collector_client-0.1.0.tar.gz
Algorithm Hash digest
SHA256 785673eb132e4642b01326402e34c391d1dbb39f76d92cf98bc2afa1e0156be7
MD5 c0bd3710e37b51d17914d5438138051f
BLAKE2b-256 558ab66fb43f8666880e9c4e6a3cf149541da9355eb5a630059f2bf4a345a779

See more details on using hashes here.

Provenance

The following attestation bundles were made for ssb_collector_client-0.1.0.tar.gz:

Publisher: release.yml on statisticsnorway/ssb-collector-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ssb_collector_client-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ssb_collector_client-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e50a11716adb04b1662f483cd6da8ae4e5c37b4993cb2d35d288130db6684558
MD5 f6d962097a0f024ff86ceacf138d8d60
BLAKE2b-256 e6d8315106f763f8f0a0afbce5855a46c7a505085186603d4c7a7b31571c2adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ssb_collector_client-0.1.0-py3-none-any.whl:

Publisher: release.yml on statisticsnorway/ssb-collector-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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