ED_LRR/ed_lrr_gui/web/worker.py

8 lines
175 B
Python

# -*- coding: utf-8 -*-
import requests as RQ
import _ed_lrr as ed_lrr
funcs = {
func: getattr(ed_lrr, func) for func in dir(ed_lrr) if not func.startswith("_")
}