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.0.4.tar.gz (5.7 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.0.4-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ssb_collector_client-0.0.4.tar.gz
  • Upload date:
  • Size: 5.7 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.0.4.tar.gz
Algorithm Hash digest
SHA256 e112bbcbf9a59cc823116ae16af5b58d01d6785116a465c3d9eeddbb03bca74c
MD5 71457e17b6997e74ccce1587fccb3edb
BLAKE2b-256 4817b965178b36301c244f3bfd85891ca376a9d33185a4dd4463c1aca01942a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ssb_collector_client-0.0.4.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.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for ssb_collector_client-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 155ae0058b29aeab3d490a8cb16c9f81d308704ac22c4158201fee3cbcf52461
MD5 567928d51d09f61e7c2dbcf81902a27d
BLAKE2b-256 725d42b45ab64fcab35c12768e9197cca514c3c5fbc1b18f59e98429e51e00c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ssb_collector_client-0.0.4-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