Skip to main content

Appfire is a toolkit that provides utilities for quickly building configurable microservices.

Project description

nr.appfire

Appfire is a toolkit that provides utilities for quickly building configurable microservices.

Components

nr.appfire.tasks

This package provides an easy-to-use framework for managing background tasks in a Python application.

Example

import dataclasses
from nr.appfire.tasks import Runnable, Task, DefaultExecutor

@dataclasses.dataclass
class Looper(Runnable[None]):
  loops: int

  def run(self, task: Task[None]) -> None:
    for i in range(self.loops):
      print(i)
      if not task.sleep(1):
        print('Bye, bye')
        break

executor = DefaultExecutor('MyApp')
executor.execute(Looper(10))
executor.idlejoin()

Copyright © 2021 Niklas Rosenstein

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

nr.appfire-0.3.0.tar.gz (14.8 kB view hashes)

Uploaded Source

Built Distribution

nr.appfire-0.3.0-py3-none-any.whl (17.6 kB view hashes)

Uploaded Python 3

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