Timeout utility class to wait for any function output and interact with it in given time
Project description
TimeoutSampler
Utility class for waiting to any function output and interact with it in given time.
Installation
pip3 install timeout-sampler
Usage
from random import randint
from timeout_sampler import TimeoutSampler
def random_number(start, end):
return randint(start, end)
samples = TimeoutSampler(
wait_timeout=60,
sleep=1,
func=random_number,
start=1,
end=10,
)
for sample in samples:
if sample == 5:
break
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file timeout_sampler-0.0.47.tar.gz
.
File metadata
- Download URL: timeout_sampler-0.0.47.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1922eb3417bff24cd3c0dda984fec8f669d0784332b09f179bad2d78b47eca99 |
|
MD5 | 40e605498225e3b97969e4a23942256c |
|
BLAKE2b-256 | 444286db619cdcfe9f5fe32ee1e927fdb6954a6b4d7209266b13be9c6b3a947c |