diff --git a/ucloud_cli/__init__.py b/uncloud_cli/__init__.py similarity index 100% rename from ucloud_cli/__init__.py rename to uncloud_cli/__init__.py diff --git a/ucloud_cli/commands/__init__.py b/uncloud_cli/commands/__init__.py similarity index 100% rename from ucloud_cli/commands/__init__.py rename to uncloud_cli/commands/__init__.py diff --git a/ucloud_cli/commands/helper.py b/uncloud_cli/commands/helper.py similarity index 100% rename from ucloud_cli/commands/helper.py rename to uncloud_cli/commands/helper.py diff --git a/ucloud_cli/commands/host.py b/uncloud_cli/commands/host.py similarity index 96% rename from ucloud_cli/commands/host.py rename to uncloud_cli/commands/host.py index b3ebea7..c0a04f3 100755 --- a/ucloud_cli/commands/host.py +++ b/uncloud_cli/commands/host.py @@ -2,7 +2,7 @@ import click import requests from .helper import OTPCredentials, load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.config import env_vars from os.path import join as join_path diff --git a/ucloud_cli/commands/image.py b/uncloud_cli/commands/image.py similarity index 89% rename from ucloud_cli/commands/image.py rename to uncloud_cli/commands/image.py index 7d58104..18e9cf3 100755 --- a/ucloud_cli/commands/image.py +++ b/uncloud_cli/commands/image.py @@ -1,5 +1,5 @@ -from ucloud_cli.commands.helper import load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import load_dump_pretty +from uncloud_cli.config import env_vars from os.path import join as join_path import click diff --git a/ucloud_cli/commands/network.py b/uncloud_cli/commands/network.py similarity index 88% rename from ucloud_cli/commands/network.py rename to uncloud_cli/commands/network.py index a7aad1d..48cbc0d 100644 --- a/ucloud_cli/commands/network.py +++ b/uncloud_cli/commands/network.py @@ -1,5 +1,5 @@ -from ucloud_cli.commands.helper import load_dump_pretty, OTPCredentials -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import load_dump_pretty, OTPCredentials +from uncloud_cli.config import env_vars from os.path import join as join_path import click diff --git a/ucloud_cli/commands/user.py b/uncloud_cli/commands/user.py similarity index 96% rename from ucloud_cli/commands/user.py rename to uncloud_cli/commands/user.py index 024dfe0..d8957be 100755 --- a/ucloud_cli/commands/user.py +++ b/uncloud_cli/commands/user.py @@ -1,5 +1,5 @@ -from ucloud_cli.commands.helper import OTPCredentials, load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import OTPCredentials, load_dump_pretty +from uncloud_cli.config import env_vars from os.path import join as join_path import click diff --git a/ucloud_cli/commands/vm.py b/uncloud_cli/commands/vm.py similarity index 97% rename from ucloud_cli/commands/vm.py rename to uncloud_cli/commands/vm.py index d0c0bbc..3c5c90c 100755 --- a/ucloud_cli/commands/vm.py +++ b/uncloud_cli/commands/vm.py @@ -3,8 +3,8 @@ import json import requests import subprocess as sp -from ucloud_cli.commands.helper import OTPCredentials, load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import OTPCredentials, load_dump_pretty +from uncloud_cli.config import env_vars from os.path import join as join_path diff --git a/ucloud_cli/config.py b/uncloud_cli/config.py similarity index 58% rename from ucloud_cli/config.py rename to uncloud_cli/config.py index 188010b..45343d8 100644 --- a/ucloud_cli/config.py +++ b/uncloud_cli/config.py @@ -3,7 +3,7 @@ from os.path import expanduser from decouple import Config, RepositoryEnv try: - env_vars = Config(RepositoryEnv(expanduser("~/ucloud/ucloud-cli.conf"))) + env_vars = Config(RepositoryEnv(expanduser("~/uncloud/uncloud-cli.conf"))) except Exception as err: print(err) sys.exit(1) \ No newline at end of file diff --git a/ucloud_cli/helper.py b/uncloud_cli/helper.py similarity index 100% rename from ucloud_cli/helper.py rename to uncloud_cli/helper.py