diff --git a/fHDHR_web/brython/__init__.py b/fHDHR_web/brython/__init__.py new file mode 100644 index 0000000..9fdfbaf --- /dev/null +++ b/fHDHR_web/brython/__init__.py @@ -0,0 +1,13 @@ + + +from .brython import Brython +from .brython_stdlib import Brython_stdlib + + +class fHDHR_Brython(): + + def __init__(self, fhdhr): + self.fhdhr = fhdhr + + self.brython = Brython(fhdhr) + self.brython_stdlib = Brython_stdlib(fhdhr)