mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 14:16:58 -05:00
22 lines
574 B
Python
22 lines
574 B
Python
from flask import send_from_directory
|
|
|
|
import pathlib
|
|
|
|
|
|
class Brython():
|
|
endpoints = ["/brython.js"]
|
|
endpoint_name = "file_brython_js"
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
self.brython_path = pathlib.Path(self.fhdhr.config.internal["paths"]["fHDHR_web_dir"]).joinpath('brython')
|
|
|
|
def __call__(self, *args):
|
|
return self.get(*args)
|
|
|
|
def get(self, *args):
|
|
|
|
return send_from_directory(self.brython_path,
|
|
'brython.js',
|
|
mimetype='text/javascript')
|