Improved colors
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from cpl.console import Console
|
||||
from cpl.console.console import Console
|
||||
from cpl_cli.command_abc import CommandABC
|
||||
from cpl_cli.publish.publisher_abc import PublisherABC
|
||||
|
||||
|
@@ -1,4 +1,5 @@
|
||||
from cpl.console.console import Console
|
||||
from cpl.console.foreground_color import ForegroundColor
|
||||
from cpl_cli.command_abc import CommandABC
|
||||
|
||||
|
||||
@@ -20,9 +21,9 @@ class Help(CommandABC):
|
||||
['version (v|V)', 'Outputs CPL CLI version.']
|
||||
]
|
||||
for name, description in commands:
|
||||
Console.set_foreground_color('blue')
|
||||
Console.set_foreground_color(ForegroundColor.blue)
|
||||
Console.write(f'\n\t{name} ')
|
||||
Console.set_foreground_color('default')
|
||||
Console.set_foreground_color(ForegroundColor.default)
|
||||
Console.write(f'{description}')
|
||||
|
||||
Console.write('\n')
|
||||
|
@@ -97,7 +97,6 @@ class New(CommandABC):
|
||||
return project_path
|
||||
|
||||
def _get_project_informations(self):
|
||||
Console.set_foreground_color(ForegroundColor.green)
|
||||
result = Console.read('Do you want to use application host? (y/n) ')
|
||||
if result.lower() == 'y':
|
||||
self._use_application_api = True
|
||||
|
@@ -1,4 +1,4 @@
|
||||
from cpl.console import Console
|
||||
from cpl.console.console import Console
|
||||
from cpl_cli.command_abc import CommandABC
|
||||
from cpl_cli.publish.publisher_abc import PublisherABC
|
||||
|
||||
|
@@ -7,6 +7,7 @@ import pkg_resources
|
||||
import cpl
|
||||
import cpl_cli
|
||||
from cpl.console.console import Console
|
||||
from cpl.console.foreground_color import ForegroundColor
|
||||
from cpl_cli.command_abc import CommandABC
|
||||
|
||||
|
||||
@@ -16,16 +17,25 @@ class Version(CommandABC):
|
||||
CommandABC.__init__(self)
|
||||
|
||||
def run(self, args: list[str]):
|
||||
Console.set_foreground_color('yellow')
|
||||
Console.set_foreground_color(ForegroundColor.yellow)
|
||||
Console.banner('CPL CLI')
|
||||
Console.set_foreground_color('default')
|
||||
if '__version__' in dir(cpl_cli):
|
||||
Console.write_line(f'Common Python Library CLI: {cpl_cli.__version__}')
|
||||
Console.set_foreground_color(ForegroundColor.yellow)
|
||||
Console.write_line(f'Common Python Library CLI: ')
|
||||
Console.set_foreground_color(ForegroundColor.default)
|
||||
Console.write(cpl_cli.__version__)
|
||||
|
||||
Console.set_foreground_color(ForegroundColor.blue)
|
||||
Console.write_line(f'Python: ')
|
||||
Console.set_foreground_color(ForegroundColor.default)
|
||||
Console.write(f'{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}')
|
||||
|
||||
Console.write_line(f'Python: {sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}')
|
||||
Console.write_line(f'OS: {platform.system()} {platform.processor()}')
|
||||
|
||||
Console.write_line('CPL:')
|
||||
Console.set_foreground_color(ForegroundColor.yellow)
|
||||
Console.write_line('\nCPL packages:')
|
||||
Console.set_foreground_color(ForegroundColor.default)
|
||||
packages = []
|
||||
for importer, modname, is_pkg in pkgutil.iter_modules(cpl.__path__):
|
||||
module = importer.find_module(modname).load_module(modname)
|
||||
@@ -34,7 +44,9 @@ class Version(CommandABC):
|
||||
|
||||
Console.table(['Name', 'Version'], packages)
|
||||
|
||||
Console.write_line('\nPython Packages:')
|
||||
Console.set_foreground_color(ForegroundColor.blue)
|
||||
Console.write_line('\nPython packages:')
|
||||
Console.set_foreground_color(ForegroundColor.default)
|
||||
packages = []
|
||||
dependencies = dict(tuple(str(ws).split()) for ws in pkg_resources.working_set)
|
||||
for p in dependencies:
|
||||
|
Reference in New Issue
Block a user