Skip to main content

clockblocks

clockblocks is a python library for controlling the flow of time, designed with musical applications in mind. In particular, it is a central component of SCAMP (Suite for Computer-Assisted Music in Python).

A Clock acts like a thread, but with the advantage that when multiple clocks are coordinated under the same master clock they remain precisely coordinated and do not experience drift. Furthermore, processing time is taken into account when "wait" is called in a given Clock. For example, the following program:

import clockblocks
import time
import math

clock = clockblocks.Clock()
start = time.time()

while True:
    print("Current time: {}".format(round(time.time() - start, 4)))
    # do some pointless and time-consuming calculations
    for i in range(1000000):
        math.log((i+1)**0.7)
    clock.wait(2)

... generates the output:

Current time: 0.0
Current time: 2.0001
Current time: 4.0001
Current time: 6.0
Current time: 8.0001
Current time: 10.0

Whereas a traditional thread:

import time
import math

start = time.time()

while True:
    print("Current time: {}".format(round(time.time() - start, 4)))
    # do some pointless and time-consuming calculations
    for i in range(1000000):
        math.log((i+1)**0.7)
    time.sleep(2)

...will gradually drift because of the intensive calculations, outputting:

Current time: 0.0
Current time: 2.3772
Current time: 4.7623
Current time: 7.1397
Current time: 9.5151
Current time: 11.893

In addition, clockblocks offers useful musical functionality, like sudden and gradual changes of tempo, the concept of a Moment that can be defined either in terms of beats or wall time, and the related ability to control metric phase.

Perhaps the most exciting feature of clockblocks is that clocks moving at different tempi remain coordinated and can even be nested within each other. In this case, each clock distorts time for those underneath it: a clock whose tempo is oscillating between slow and fast, nested within a clock that is accelerating, will generate a time stream whose tempo oscillates between faster and faster values.

The Version 1.0 Rewrite

The initial 0.x version of clockblocks was implemented in a way that aligned conceptually with the API: each clock registered its wake up times with its parent recursively. However, practically this turned out to be both unduly complicated and limiting, especially in situations with live interaction or external synchronization.

Version 1.x is a ground-up rewrite of clockblocks around a single background Scheduler. The concepts above are all preserved — Clock, wait, tempo changes, and nested clocks work as shown — but 1.0 is not a drop-in upgrade: several APIs were dropped or reshaped. The one most existing code will hit is that a forked function no longer receives its clock as an argument — call current_clock() inside it instead. See the CHANGELOG for the full list of breaking changes and a migration table from 0.6.x. The previous 0.x implementation lives on the 0.6.x branch.

Release files for clockblocks 1.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for clockblocks 1.3.0
File Size Uploaded
clockblocks-1.3.0.tar.gz 136.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for clockblocks 1.3.0
File Interpreter ABI Platform
clockblocks-1.3.0-py3-none-any.whl Python 3 none any Details

Total release size: 238.5 kB

Release files / clockblocks-1.3.0.tar.gz

Download URL clockblocks-1.3.0.tar.gz
Size 136.6 kB
Tags Source
SHA-256 checksum
How to use checksums
0bf5093696b5f08556e988a80330419ffdd15a73ef81119e11aacf6085e00ae3
BLAKE2b-256 checksum
How to use checksums
f3f7c898377de6587a9d753dd5e96bd89f2f692d2f5dc943cbb601aaf6fa6d30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / clockblocks-1.3.0-py3-none-any.whl

Download URL clockblocks-1.3.0-py3-none-any.whl
Size 101.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
54acc940d62024147715d0f6b3c042524f7e5deba20eba2daf5262878d0a8773
BLAKE2b-256 checksum
How to use checksums
00e740cd98ed410c08d5ead2db38123efefcdf94a49f0c3cf12d58e797b32e4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release history Release notifications | RSS feed

This release

1.3.0 This release

2 release files

1.2.0

2 release files

1.1.0

2 release files

1.0.0

2 release files

0.6.9

1 release file

0.6.7

1 release file

0.6.5

1 release file

0.6.4

1 release file

0.6.2

1 release file

0.6

1 release file

0.5.7

1 release file

0.5.6

1 release file

0.5.5

1 release file

0.5.3

1 release file

0.5.2

1 release file

0.5.1

1 release file

0.5

1 release file

0.3

1 release file

0.2.1

1 release file

0.2

1 release file

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page