mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
remove lib functions and classes with openpype
This commit is contained in:
parent
b887a91e20
commit
f68ae4833d
3 changed files with 0 additions and 56 deletions
|
|
@ -7,13 +7,10 @@ from .local_settings import (
|
||||||
JSONSettingRegistry,
|
JSONSettingRegistry,
|
||||||
AYONSecureRegistry,
|
AYONSecureRegistry,
|
||||||
AYONSettingsRegistry,
|
AYONSettingsRegistry,
|
||||||
OpenPypeSecureRegistry,
|
|
||||||
OpenPypeSettingsRegistry,
|
|
||||||
get_launcher_local_dir,
|
get_launcher_local_dir,
|
||||||
get_launcher_storage_dir,
|
get_launcher_storage_dir,
|
||||||
get_local_site_id,
|
get_local_site_id,
|
||||||
get_ayon_username,
|
get_ayon_username,
|
||||||
get_openpype_username,
|
|
||||||
)
|
)
|
||||||
from .ayon_connection import initialize_ayon_connection
|
from .ayon_connection import initialize_ayon_connection
|
||||||
from .cache import (
|
from .cache import (
|
||||||
|
|
@ -59,13 +56,11 @@ from .env_tools import (
|
||||||
from .terminal import Terminal
|
from .terminal import Terminal
|
||||||
from .execute import (
|
from .execute import (
|
||||||
get_ayon_launcher_args,
|
get_ayon_launcher_args,
|
||||||
get_openpype_execute_args,
|
|
||||||
get_linux_launcher_args,
|
get_linux_launcher_args,
|
||||||
execute,
|
execute,
|
||||||
run_subprocess,
|
run_subprocess,
|
||||||
run_detached_process,
|
run_detached_process,
|
||||||
run_ayon_launcher_process,
|
run_ayon_launcher_process,
|
||||||
run_openpype_process,
|
|
||||||
path_to_subprocess_arg,
|
path_to_subprocess_arg,
|
||||||
CREATE_NO_WINDOW
|
CREATE_NO_WINDOW
|
||||||
)
|
)
|
||||||
|
|
@ -145,13 +140,10 @@ __all__ = [
|
||||||
"JSONSettingRegistry",
|
"JSONSettingRegistry",
|
||||||
"AYONSecureRegistry",
|
"AYONSecureRegistry",
|
||||||
"AYONSettingsRegistry",
|
"AYONSettingsRegistry",
|
||||||
"OpenPypeSecureRegistry",
|
|
||||||
"OpenPypeSettingsRegistry",
|
|
||||||
"get_launcher_local_dir",
|
"get_launcher_local_dir",
|
||||||
"get_launcher_storage_dir",
|
"get_launcher_storage_dir",
|
||||||
"get_local_site_id",
|
"get_local_site_id",
|
||||||
"get_ayon_username",
|
"get_ayon_username",
|
||||||
"get_openpype_username",
|
|
||||||
|
|
||||||
"initialize_ayon_connection",
|
"initialize_ayon_connection",
|
||||||
|
|
||||||
|
|
@ -162,13 +154,11 @@ __all__ = [
|
||||||
"register_event_callback",
|
"register_event_callback",
|
||||||
|
|
||||||
"get_ayon_launcher_args",
|
"get_ayon_launcher_args",
|
||||||
"get_openpype_execute_args",
|
|
||||||
"get_linux_launcher_args",
|
"get_linux_launcher_args",
|
||||||
"execute",
|
"execute",
|
||||||
"run_subprocess",
|
"run_subprocess",
|
||||||
"run_detached_process",
|
"run_detached_process",
|
||||||
"run_ayon_launcher_process",
|
"run_ayon_launcher_process",
|
||||||
"run_openpype_process",
|
|
||||||
"path_to_subprocess_arg",
|
"path_to_subprocess_arg",
|
||||||
"CREATE_NO_WINDOW",
|
"CREATE_NO_WINDOW",
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -235,26 +235,6 @@ def run_ayon_launcher_process(*args, add_sys_paths=False, **kwargs):
|
||||||
return run_subprocess(args, env=env, **kwargs)
|
return run_subprocess(args, env=env, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
def run_openpype_process(*args, **kwargs):
|
|
||||||
"""Execute AYON process with passed arguments and wait.
|
|
||||||
|
|
||||||
Wrapper for 'run_process' which prepends AYON executable arguments
|
|
||||||
before passed arguments and define environments if are not passed.
|
|
||||||
|
|
||||||
Values from 'os.environ' are used for environments if are not passed.
|
|
||||||
They are cleaned using 'clean_envs_for_ayon_process' function.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
>>> run_openpype_process("version")
|
|
||||||
|
|
||||||
Args:
|
|
||||||
*args (tuple): AYON cli arguments.
|
|
||||||
**kwargs (dict): Keyword arguments for subprocess.Popen.
|
|
||||||
|
|
||||||
"""
|
|
||||||
return run_ayon_launcher_process(*args, **kwargs)
|
|
||||||
|
|
||||||
|
|
||||||
def run_detached_process(args, **kwargs):
|
def run_detached_process(args, **kwargs):
|
||||||
"""Execute process with passed arguments as separated process.
|
"""Execute process with passed arguments as separated process.
|
||||||
|
|
||||||
|
|
@ -414,21 +394,3 @@ def get_linux_launcher_args(*args):
|
||||||
launch_args.extend(args)
|
launch_args.extend(args)
|
||||||
|
|
||||||
return launch_args
|
return launch_args
|
||||||
|
|
||||||
|
|
||||||
def get_openpype_execute_args(*args):
|
|
||||||
"""Arguments to run pype command.
|
|
||||||
|
|
||||||
Arguments for subprocess when need to spawn new pype process. Which may be
|
|
||||||
needed when new python process for pype scripts must be executed in build
|
|
||||||
pype.
|
|
||||||
|
|
||||||
## Why is this needed?
|
|
||||||
Pype executed from code has different executable set to virtual env python
|
|
||||||
and must have path to script as first argument which is not needed for
|
|
||||||
build pype.
|
|
||||||
|
|
||||||
It is possible to pass any arguments that will be added after pype
|
|
||||||
executables.
|
|
||||||
"""
|
|
||||||
return get_ayon_launcher_args(*args)
|
|
||||||
|
|
|
||||||
|
|
@ -584,11 +584,3 @@ def get_ayon_username():
|
||||||
|
|
||||||
"""
|
"""
|
||||||
return ayon_api.get_user()["name"]
|
return ayon_api.get_user()["name"]
|
||||||
|
|
||||||
|
|
||||||
def get_openpype_username():
|
|
||||||
return get_ayon_username()
|
|
||||||
|
|
||||||
|
|
||||||
OpenPypeSecureRegistry = AYONSecureRegistry
|
|
||||||
OpenPypeSettingsRegistry = AYONSettingsRegistry
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue