Skip to content

guilt/squeue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

squeue: A simple SQLite Queue

squeue is used to create simple queues that can be persisted, then retrieved for work. It's very easy to create a mini workflow engine with this.

Main Features

  • Very compact
  • Few Dependencies

Usage

One can create a new queuable function (or unit of work) by using the @queue_function decorator.

@queue_function
def hello(world):
    return "Hello, {}!".format(world)
hello.delay("World")

It will get invoked when a worker process fetches a function to execute. Do check the provided test.py with this distribution.

About

A Job Queue implementation using SQLite

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages