It can be assumed that all scripts comply with basic pep8 formatting regarding white-space, indentation etc. Also remove note in best practices page & update `tests/python/pep8.py`. If we want to exclude some scripts from make format, this can be done by adding them to `ignore_files` in: source/tools/utils_maintenance/autopep8_format_paths.py Or using `# nopep8` for to ignore for individual lines. Ref T98554
64 lines
1.0 KiB
Python
64 lines
1.0 KiB
Python
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
"""
|
|
Give access to blender data and utility functions.
|
|
"""
|
|
|
|
__all__ = (
|
|
"app",
|
|
"context",
|
|
"data",
|
|
"ops",
|
|
"path",
|
|
"props",
|
|
"types",
|
|
"utils",
|
|
)
|
|
|
|
|
|
# internal blender C module
|
|
from _bpy import (
|
|
app,
|
|
context,
|
|
data,
|
|
msgbus,
|
|
props,
|
|
types,
|
|
)
|
|
|
|
# python modules
|
|
from . import (
|
|
ops,
|
|
path,
|
|
utils,
|
|
)
|
|
|
|
|
|
def main():
|
|
import sys
|
|
|
|
# Possibly temp. addons path
|
|
from os.path import join, dirname
|
|
sys.path.extend([
|
|
join(dirname(dirname(dirname(__file__))), "addons", "modules"),
|
|
join(utils.user_resource('SCRIPTS'), "addons", "modules"),
|
|
])
|
|
|
|
# fake module to allow:
|
|
# from bpy.types import Panel
|
|
sys.modules.update({
|
|
"bpy.app": app,
|
|
"bpy.app.handlers": app.handlers,
|
|
"bpy.app.translations": app.translations,
|
|
"bpy.types": types,
|
|
})
|
|
|
|
# Initializes Python classes.
|
|
# (good place to run a profiler or trace).
|
|
utils.load_scripts()
|
|
|
|
|
|
main()
|
|
|
|
del main
|