Skip to content

Instantly share code, notes, and snippets.

View ngetahun's full-sized avatar

Natnael Getahun ngetahun

View GitHub Profile
@ngetahun
ngetahun / queueing.py
Created November 3, 2020 10:44 — forked from asottile/queueing.py
really bad queue simulating sqs backed by sqlite
import contextlib
import fcntl
import json
import sqlite3
import time
import uuid
from typing import Any
from typing import Generator
from typing import Optional
from typing import Tuple