- fetch entity data only
- does not alter any data, ever
- create a new entity with the data values provided in the body
- if an entity already exists with these values, create it anyway (read: non-idempotent)
- should not be used to alter an existing entity
#!/usr/bin/env python3 | |
# Linux-compatible clone of Quitter for Mac https://marco.org/apps#quitter | |
# implementation inspired by: https://github.com/acenturyandabit/mini-miza/blob/master/autohide.py | |
import subprocess | |
import time | |
import os | |
apps = { |