(0|1) log

pypette

written on Thursday, November 9, 2017

I often find myself in the need of executing a certain number of jobs in a specific order(for data processing or for test pipelines or for qualify pipelines etc). The ordering of the jobs can be like:

etc. These can be achieved using threads/subprocesses in python. But in my view, everything in python should be as simple as

import antigravity

so I cooked up pypette (to be read as pipette) a python library which exposes a ridiculously simple interface to build complicated pipelines to the user, abstracting away all the responsibilities of thread creation and management. Still in alpha mode but might be helpful for your next pipeline.

This entry was tagged pipelines, productivity and python