-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathweb.py
More file actions
58 lines (41 loc) · 1.24 KB
/
web.py
File metadata and controls
58 lines (41 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# coding=utf-8
"""
@project: MaxKB
@Author:虎虎
@file: web.py
@date:2025/11/5 15:14
@desc:
"""
import builtins
import os
import sys
from django.core.wsgi import get_wsgi_application
class TorchBlocker:
def __init__(self):
self.original_import = builtins.__import__
def __call__(self, name, *args, **kwargs):
if len([True for i in
['torch']
if
i in name.lower()]) > 0:
print(f"Disable package is being imported: 【{name}】", file=sys.stderr)
pass
else:
return self.original_import(name, *args, **kwargs)
# 安装导入拦截器
builtins.__import__ = TorchBlocker()
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'maxkb.settings')
application = get_wsgi_application()
def post_handler():
from common.database_model_manage.database_model_manage import DatabaseModelManage
from common import event
event.run()
DatabaseModelManage.init()
def post_scheduler_handler():
from common import job
job.run()
# 启动后处理函数
post_handler()
# 仅在scheduler中启动定时任务,dev local_model celery 不需要
if os.environ.get('ENABLE_SCHEDULER') == '1':
post_scheduler_handler()