Files
urlbot-native/plugins/__init__.py
2016-04-05 18:40:31 +02:00

13 lines
264 B
Python

# -*- coding: utf-8 -*-
from os.path import dirname, basename, isfile
from glob import glob
__all__ = []
for f in glob(dirname(__file__) + "/*.py"):
if not basename(f).startswith('_') and isfile(f):
__all__.append(basename(f)[:-3])
from . import *