Alex-ber-utils

Latest version: v0.13.11

Safety actively analyzes 723954 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 10

0.12.0

Added

- Introduced a `deprecated` decorator to mark functions as deprecated.
- The decorator allows specifying the version since which the function is deprecated, the reason for deprecation,
and whether the function is marked for removal.
- It issues a customizable warning (defaulting to `DeprecationWarning`) when the decorated function is called.
- This addition helps developers communicate deprecation status and future removal plans for functions in the
codebase.

- **`exec_in_executor_threading_future()`** a thin wrapper around `exec_in_executor()`, which returns an
`asyncio.Future`. This function executes a function or coroutine within a specified executor and converts the
resulting `asyncio.Future` into a `threading.Future`. It preserves `ContextVars`, ensuring that context is
maintained across asynchronous boundaries. For more details, see description of `exec_in_executor()`.

- **`exec_in_executor()`**:
- Added the `exec_in_executor` function to execute a function or coroutine within a specified executor while
preserving `ContextVars`.
- The function ensures context is maintained across asynchronous boundaries and resolves the executor in a
prioritized manner:
1. Uses the provided executor if available.
2. Falls back to an executor set via `initConfig()`.
3. Defaults to the asyncio executor if none is set.
- Supports both coroutine and regular function execution.

- **`ensure_thread_event_loop()`**:
- Implemented the `ensure_thread_event_loop()` function to initialize an event loop for the current thread if it
does not already exist.


- **`handle_result()`**: Introduced a new `handle_result()` function that transfers the result or exception from one
future to another.
This function is designed to be generic and can be used with any types of futures, ensuring that the outcome of task
execution is properly propagated between futures.
- **Usage**: To use this function, add it as a callback to the `source_future`:
python
Add the chain_future_results function as a callback to the source_future
source_future.add_done_callback(lambda fut: handle_result(fut, target_future))

- **Arguments**:
- `source_future`: The future from which to retrieve the result or exception.
- `target_future`: The future on which to set the result or exception.

- **AsyncExecutionQueue**:
- Introduced a new `AsyncExecutionQueue` class for managing asynchronous task execution using a specified executor. This
class provides:
- A context manager interface to start and stop a worker that processes tasks from the queue.
- Asynchronous task execution with graceful queue closure.
- Note: as a side fact, threads in the executor may have an event loop attached. This allows for the execution of
asynchronous tasks within those threads.

Attributes

- `executor (Executor)`: The mandatory executor used to run tasks.
- `queue (asyncio.Queue)`: The optional queue that holds tasks to be executed. If not provided, a new `asyncio.Queue` is
created by default.

Methods

- `worker()`: Continuously processes tasks from the queue until the `aclose()` method is called.
- `aadd_task(func, *args, **kwargs)`: Asynchronously adds a task to the queue for execution and returns a future.
- `aclose()`: Asynchronously closes the queue and waits for the worker to finish processing.

Initialization

- The `AsyncExecutionQueue` is initialized with a specified executor and an optional queue. The executor is required to
run tasks, while a custom queue can be provided or the default `asyncio.Queue` will be used.

Context Management

- The `AsyncExecutionQueue` can be used as a context manager. When entering the context, the worker is started, and when
exiting, the queue is closed, and the worker is stopped.

Changed

- **`initConfig()`**:
- The `initConfig` function now also supports `exec_in_executor()` through the `executor` parameter.
- This function is designed to be called from the main thread.
- It accepts optional keyword arguments to configure a global executor that can be (optionally) used
in `exec_in_executor()`.
- [GitHub Issue 14](https://github.com/alex-ber/AlexBerUtils/issues/14): Enhanced the `lift_to_async` function
to handle `StopAsyncIteration` exceptions more gracefully. If a `StopAsyncIteration` exception is raised from `afunc`,
it is now converted to a `RuntimeError` with a descriptive message. This change prevents a `TypeError` from being
raised and ensures that the `Future` does not remain pending indefinitely.
- Updated `initConfig()`:
- Initializes the configuration for `lift_to_async()` and `exec_in_executor()`.
- Ensures it is called from the main thread with a running event loop.
- Sets a global executor if provided via keyword arguments.

Example Usage

python
Example usage of the decorator
deprecated(version='1.0', reason="Use `new_function` instead.", for_removal=True)
def old_function(x, y):
"""Returns the sum of two numbers."""
return x + y


Call the deprecated function
result = old_function(3, 4)

0.11.11

Changed

- **OptionalNumpyWarning**: Moved the definition of `OptionalNumpyWarning` to a separate
module (`alexber.utils.warnings`) to allow for easier suppression of the warning without triggering it during import.
This change improves the flexibility and usability of the library for users who do not require NumPy.

- **Type Hints**: Fixed and improved type hints across the codebase to enhance code clarity and support for static type
checking tools.
This ensures better integration with IDEs and type checkers, providing more accurate code suggestions and error
detection.

0.11.10

Added

- **USE_NUMPY**: Introduced a flag to determine whether NumPy is available and should be used for sampling operations.
This allows for performance optimizations when NumPy is installed.
- **SamplingError**: Added a custom exception class to handle errors when sampling fails after a maximum number of
retries. It provides detailed error messages, including distribution type, retries, and bounds, aiding in debugging
and error handling.
- **OptionalNumpyWarning**: Introduced a custom warning to notify users when NumPy is not available, and the system
falls back to standard Python operations. The primary purpose of this warning is to provide users with the ability to
suppress it if desired.

Changed

- **BaseSampler**: Refactored the base class for sampling to support various statistical distributions with configurable
parameters. This includes validation for distribution types and bounds.
- **Sampler**: The class can optionally use NumPy for sampling if it is available, allowing for potentially faster and
more efficient sampling operations. If NumPy is not available, the class defaults to using Python's standard `random`
module, ensuring compatibility across environments.
- Note: The `expovariate` method has been adjusted to align with NumPy's exponential function, using the scale
directly as the mean of the distribution.
- **max_retries**: Added a parameter to limit the number of attempts to sample a valid value, primarily to avoid
infinite loops. This ensures that the sampling process terminates gracefully if a valid sample cannot be obtained
within the specified number of retries.

0.11.9

Added

- **Sampler Class**: Introduced the `Sampler` class, a flexible utility for sampling from various statistical
distributions.

Distribution Support

- The class supports multiple distributions, including:
- **Log-normal (`lognormvariate`)**: Uses `math.log(self.scale)` for the mean of the underlying normal distribution.
- **Normal (`normalvariate`)**: Standard normal distribution with specified mean and standard deviation.
- **Exponential (`expovariate`)**: Uses `1 / self.scale` as the rate parameter (lambda).
- **Von Mises (`vonmisesvariate`)**: Circular distribution with specified mean and concentration.
- **Gamma (`gammavariate`)**: Two-parameter distribution with shape and scale.
- **Gaussian (`gauss`)**: Similar to normalvariate, with mean and standard deviation.
- **Beta (`betavariate`)**: Distribution defined on the interval [0, 1] with two shape parameters.
- **Pareto (`paretovariate`)**: Heavy-tailed distribution with a single shape parameter.
- **Weibull (`weibullvariate`)**: Distribution with shape and scale parameters.

Configurable Parameters

- The class requires configuration of key parameters:
- `distribution`: Specifies the distribution to sample from (required).
- `shape`: Shape parameter for the distribution, controlling the spread and skewness. For log-normal, it represents
sigma of the underlying normal distribution (required).
- `scale`: Scale parameter for the distribution, shifting the distribution and determining its median. For
log-normal, it represents exp(mu) of the underlying normal distribution. For exponential, it is the inverse of the
rate parameter (1/lambda) (required).
- `lower_bound`: Optional lower bound for the sampled value, defaulting to `None` (no lower bound).
- `upper_bound`: Optional upper bound for the sampled value, defaulting to `None` (no upper bound).
- `random_seed`: Optional seed for the random number generator, allowing for reproducibility.
- `random_instance`: Optional custom instance of `random.Random` for generating random numbers.

0.11.8

Changed

- `find_most_similar()` and `find_most_similar()` was fixed for the edge case when no comparison texts are provided.
If no texts are provided, `find_most_similar_with_scores()` now returns [(some negative number, input_text), 0.0)],
and `find_most_similar()` returns (some negative number, input_text).
Docstrings of both method were also changed to reflect this change.

0.11.7

Changed

- `find_most_similar()` and `find_most_similar()` was fixed for the edge case when no comparison texts are provided.
If no texts are provided, `find_most_similar_with_scores()` now returns [(some negative number, input_text), 1.0)],
and `find_most_similar()` returns (some negative number, input_text).
Docstrings of both method were also changed to reflect this change.

Page 4 of 10

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.