Skip to main content

A small example package

Project description

Thread-safe and process-safe singleton class. The singleton is shared between all threads. For every process, a new instance is initialized and shared between all threads of the process.

Examples:

Basic usage:

``` from pyngleton import singleton

@singleton class MyClass: def init(self, x, y, z): self.x = x self.y = y self.z = z

if name == 'main': a = MyClass(1, 2, 3) b = MyClass(4, 5, 6)

assert a is b

assert b.x == 1 and b.y == 2 and b.z == 3

<h4>Multithreading:</h4>

from concurrent.futures import ThreadPoolExecutor from pyngleton import singleton

@singleton class MyClass: pass

if name == 'main': n = 2 with ThreadPoolExecutor(max_workers=n) as exc: tasks = [exc.submit(MyClass) for _ in range(n)] results = set(task.result() for task in tasks) assert len(results) == 1 # all threads share the same instance


<h4>Multiprocessing:</h4>

import multiprocessing from concurrent.futures import ProcessPoolExecutor from pyngleton import singleton

@singleton class MyClass: def init(self, x: int, y: int, z: int, queue: multiprocessing.Queue): self.x = x self.y = y self.z = z queue.put((x, y, z))

def worker(x: int, y: int, z: int, queue: multiprocessing.Queue): MyClass(x, y, z, queue)

if name == 'main': n = 2 queue = multiprocessing.Manager().Queue() with ProcessPoolExecutor(max_workers=n) as exc: tasks = [exc.submit(worker, i, i, i, queue) for i in range(n)] for task in tasks: task.result() results = [] while not queue.empty(): results.append(queue.get()) assert results == [(0, 0, 0), (1, 1, 1)] # each process has its own instance

The classes decorated with `@singleton` can't be pickled. If you want to be able to do that, 
you can inherit from `Singleton` or `SingletonMeta` instead of using the decorator.

<h4>Inherting:</h4>

from pyngleton import Singleton, SingletonMeta

class MyClassA(metaclass=SingletonMeta): pass

class MyClassB(Singleton): pass

if name == 'main': assert MyClassA() is MyClassA() assert MyClassB() is MyClassB() assert MyClassA() is not MyClassB()

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

pyngleton-0.0.5.tar.gz (10.6 MB view hashes)

Uploaded Source

Built Distribution

pyngleton-0.0.5-py3-none-any.whl (3.3 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