mirror of
https://github.com/searxng/searxng
synced 2024-11-09 01:10:26 +00:00
16 lines
411 B
Python
16 lines
411 B
Python
|
|
from os.path import realpath, dirname, splitext, join
|
|
from os import listdir
|
|
from imp import load_source
|
|
|
|
engine_dir = dirname(realpath(__file__))
|
|
|
|
engines = []
|
|
|
|
for filename in listdir(engine_dir):
|
|
modname = splitext(filename)[0]
|
|
if filename.startswith('_') or not filename.endswith('.py'):
|
|
continue
|
|
filepath = join(engine_dir, filename)
|
|
engines.append(load_source(modname, filepath))
|