A Singleton python project
Project description
A Singleton python project
By CenturyBoys
Did you need help? Call meeseeks from a single box from anywhere
This is meeseeks a single class to do singletons. In the core meeseeks is a class decorator that allows you to have a global singleton scope or a specialized one, some configurations can be used to give more flexibility to your code.
Scopes
Each class with his decorator has a specialized scope, that is otherwise you create meeseeks object (OnlyOne) and this object will have your configuration and singletons
Specialized
import meeseeks
@meeseeks.OnlyOne()
class A:
def __int__(self, a):
pass
a1a = A(10)
a1b = A(10)
a1c = A(20)
assert a1a == a1b == a1c
or
import meeseeks
only_one = meeseeks.OnlyOne()
@only_one
class A:
def __int__(self, a):
pass
a1a = A(10)
a1b = A(10)
a1c = A(20)
assert a1a == a1b == a1c
On this example we register the class reference in the meeseeks class instance scope
Configuration
We provide two configuration options:
tll: int
(time to live) in seconds. Setting a value greater than 0, the singleton reference will have a time to live in seconds (default 0). Obs: the expired time validation will be made only when you create a new instance of the registered class ie your object will still be in memoryby_args_hash: bool
( a hash will be made of all args and kwargs ). Setting True, a singleton reference will be created for each arg + kwargs hash (default False). Obs: The kwargs`s order doesn't have influence
TTL
import meeseeks
import time
@meeseeks.OnlyOne(ttl=1)
class A:
def __int__(self, *args, **kwargs):
pass
a1a = A(1, var_a="a")
a1b = A(1, var_a="a")
time.sleep(1)
a1c = A(1, var_a="a")
assert a1a == a1b
assert a1b != a1c
In this example, we set the ttl
to 1
second and validate if the first two calls result in the same object and after 1 second we validate if the object is different from the first two
BY_ARGS_HASH
import meeseeks
import time
@meeseeks.OnlyOne(by_args_hash=True)
class A:
def __int__(self, *args, **kwargs):
pass
a1a = A(1, var_a="a", var_b="b")
a1b = A(1, var_b="b", var_a="a")
a1c = A(10, var_b="b", var_a="a")
assert a1a == a1b
assert a1c != a1b
In this example, we set by_args_hash
variable to True
and validate if the first two calls result in the same object despite the kwargs order being different. The last validation shows us that different args and kwargs result in different objects.
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
Built Distribution
File details
Details for the file meeseeks_singleton-0.4.4.tar.gz
.
File metadata
- Download URL: meeseeks_singleton-0.4.4.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.0 Linux/6.1.0-13-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4683360f419abb22f4be1cbd1ae8a282e07304ee1ed61a85c844faf155153c6 |
|
MD5 | 7ff1ed990bc8f12205b74f24613c21f3 |
|
BLAKE2b-256 | 66fc7c930ef82677fda30dc8190c6cc3cc066deaafb06448beec7e8f69ebbfd3 |
File details
Details for the file meeseeks_singleton-0.4.4-py3-none-any.whl
.
File metadata
- Download URL: meeseeks_singleton-0.4.4-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.0 Linux/6.1.0-13-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1ade489e9b9a76e9cc8a1e958d6749694bf35a71a0a273099b05c8579b301d4 |
|
MD5 | b6d0d5df7c91a14b75b1b50174e99d57 |
|
BLAKE2b-256 | fe9fbdaa0d82337da6f2de17dd0e0a87093cef2de02a547af70cdaad5ab11818 |