Skip to main content

Thread- and battery-friendly time.sleep() replacement

Project description

python-snoozebot: A coordinated and interruptible time.sleep() replacement

This module implements a time.sleep() replacement, snoozebot.snooze(), which is more suitable for use in multithreaded apps:

  • Threads can be woken up (optionally, with an exception) to facilitate prompt, clean shutdown.
  • Snoozing can be cut short if file descriptor(s) becomes readable
  • Snoozing threads can specify an interval of acceptable wakeup times, to facilitate grouping jobs together (thus hopefully playing nice with powersavings on modern/mobile CPUs).

Usage:

import snoozebot
from snoozebot import Snoozer, snooze, wake_all

# Interruptable sleep for 1 second
snooze(1.0)

# Sleep for anywhere between 1 minute and 1 hour
snooze(60, 3600)

# Sleep an hour, but wake up early for activity on sys.stdin
reason = snooze(3600, watch_fds=[sys.stdin.fileno()])
if reason[0] == snoozebot.WOKE_FD:
    data = reason[1].read()

# Create a re-usable schedule which can be woken by other means
sn = Snoozer(60, 3600, watch_fds=[sys.stdin.fileno()]))
sn.snooze()

# Other thread wakes us up...
sn.reason(snoozebot.WOKE_CUSTOM, 'Good morning!').wake()

# Just wake all snoozers
wake_all()

# Wake all snoozers with a KeyboardInterrupt!
wake_all(KeyboardInterrupt, 'Time to die')

Dependencies

You will need:

  • Python 2.7 or 3.x (author tested on 3.7)

Bugs

This code will fail if firewalls prevent localhost from speaking UDP with itself.

Copyright, license, credits

This code is: (C) Copyright 2020, Bjarni R. Einarsson bre@klaki.net

Snoozebot is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Snoozebot is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with snoozebot. If not, see https://www.gnu.org/licenses/.

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

snoozebot-0.0.3.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

snoozebot-0.0.3-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file snoozebot-0.0.3.tar.gz.

File metadata

  • Download URL: snoozebot-0.0.3.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.1.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.7.5

File hashes

Hashes for snoozebot-0.0.3.tar.gz
Algorithm Hash digest
SHA256 52170dc9ede4e149054d7a8cbaff8b636a91e328e37fbe2962d49e3c257327c4
MD5 7d1b1977421a44037bbb2accdd711da6
BLAKE2b-256 268175551a3e7b60fc8f7cedd00f23906cd061a25e2f364f1cbfc57538250d06

See more details on using hashes here.

File details

Details for the file snoozebot-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: snoozebot-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.1.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.7.5

File hashes

Hashes for snoozebot-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e597516d6519e5185adcc9ab32fa18644abe6e6734a55701e7ba5f70a0479d95
MD5 3aa12f08175149859c3156a25a811811
BLAKE2b-256 d78aea49538a0ed775c1a21d3632a270a9203a26e527415759e2efd676f67562

See more details on using hashes here.

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