Skip to main content

A higher-level topological sort.

Project description

whatwhen is a higher-level topological sort, a useful algorithm to resolve dependencies and calculate a workable execution order for functions and other things.

Basic topological sorting:

tasks = [
    {
        'name: 'drive',
        'dependencies': ['car'],
    }, {
        'name': 'car',
        'dependencies': ['wheels', 'gas'],
    }, {
        'name': 'wheels',
        'dependencies': 'rubber',
    }, {
        'name': 'gas',
    }, {
        'name': 'rubber',
    },
]

whatwhen.sort(items)

Topological sorting using contracts (needs and provisions):

tasks = [
    {
        'name': 'drive',
        'needs': ['car', 'gas'],
    }, {
        'name': 'fill tank',
        'provides': ['gas'],
    }, {
        'name': 'rent a car',
        'provides': ['car'],
        'dependencies': ['money'],
    }, {
        'name': 'money'
    }
]

whatwhen.sort(items)

Needs and provisions are useful when you don’t know exactly what function (or system or module or whatever) is going to provide the necessary data or preconditions, but you do know what that data or those preconditions are. This might happen in large systems or systems over which you don’t have full control.

In addition to dictionaries, the metadata on tasks can also be added to functions:

def one():
    pass

def two():
    pass

one.dependencies = ['two']

whatwhen.sort([one, two])

Whatwhen will return the original functions (or dictionaries) in sorted order, rather than just a sorted list of node names, so it’s slightly easier to work with than a raw topological sort.

Whatwhen lets the tarjan module do most of the heavy lifting, so there’s really only about 40 lines of wrapper code to this module. It’s up to you to decide whether you’d rather build on top of WhatWhen or plain Tarjan.

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

whatwhen-0.1.1.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file whatwhen-0.1.1.tar.gz.

File metadata

  • Download URL: whatwhen-0.1.1.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for whatwhen-0.1.1.tar.gz
Algorithm Hash digest
SHA256 508081a7f0ab8177ec3ad54ba2722b39cf6c6007a8565dfdb2b331dff065688a
MD5 1b2fc77f22ef0416f70b51b8a285a482
BLAKE2b-256 e6c7fb750b0fd3181f5426db11f4b1e52d7717945d0937f0f860dfef28b33601

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