ED_LRR/ed_lrr_gui/web/worker.py

8 lines
175 B
Python
Raw Normal View History

2020-03-28 13:53:52 +00:00
# -*- coding: utf-8 -*-
2020-02-05 23:23:23 +00:00
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("_")
}