Module moex.design
Expand source code
# -*- coding: utf-8 -*-
from random import choice
from rich import box
from rich.console import Console
from rich.table import Table
class CliDesigner:
"""Beautify console
"""
console = Console()
colors = [
'#F0F8FF', '#FAEBD7', '#00FFFF', '#7FFFD4', '#F0FFFF', '#F5F5DC',
'#FFE4C4', '#000000', '#FFEBCD', '#0000FF', '#8A2BE2', '#A52A2A',
'#DEB887', '#5F9EA0', '#7FFF00', '#D2691E', '#FF7F50', '#6495ED',
'#FFF8DC', '#DC143C', '#00FFFF', '#00008B', '#008B8B', '#B8860B',
'#A9A9A9', '#006400', '#A9A9A9', '#BDB76B', '#8B008B', '#556B2F',
'#FF8C00', '#9932CC', '#8B0000', '#E9967A', '#8FBC8F', '#483D8B',
'#2F4F4F', '#2F4F4F', '#00CED1', '#9400D3', '#FF1493', '#00BFFF',
'#696969', '#696969', '#1E90FF', '#B22222', '#FFFAF0', '#228B22',
'#FF00FF', '#DCDCDC', '#F8F8FF', '#FFD700', '#DAA520', '#808080',
'#008000', '#ADFF2F', '#808080', '#F0FFF0', '#FF69B4', '#CD5C5C',
'#4B0082', '#FFFFF0', '#F0E68C', '#E6E6FA', '#FFF0F5', '#7CFC00',
'#FFFACD', '#ADD8E6', '#F08080', '#E0FFFF', '#FAFAD2', '#D3D3D3',
'#90EE90', '#D3D3D3', '#FFB6C1', '#FFA07A', '#20B2AA', '#87CEFA',
'#778899', '#778899', '#B0C4DE', '#FFFFE0', '#00FF00', '#32CD32',
'#FAF0E6', '#FF00FF', '#800000', '#66CDAA', '#0000CD', '#BA55D3',
'#9370DB', '#3CB371', '#7B68EE', '#00FA9A', '#48D1CC', '#C71585',
'#191970', '#F5FFFA', '#FFE4E1', '#FFE4B5', '#FFDEAD', '#000080',
'#FDF5E6', '#808000', '#6B8E23', '#FFA500', '#FF4500', '#DA70D6',
'#EEE8AA', '#98FB98', '#AFEEEE', '#DB7093', '#FFEFD5', '#FFDAB9',
'#CD853F', '#FFC0CB', '#DDA0DD', '#B0E0E6', '#800080', '#663399',
'#FF0000', '#BC8F8F', '#4169E1', '#8B4513', '#FA8072', '#F4A460',
'#2E8B57', '#FFF5EE', '#A0522D', '#C0C0C0', '#87CEEB', '#6A5ACD',
'#708090', '#708090', '#FFFAFA', '#00FF7F', '#4682B4', '#D2B48C',
'#008080', '#D8BFD8', '#FF6347', '#40E0D0', '#EE82EE', '#F5DEB3',
'#FFFFFF', '#F5F5F5', '#FFFF00', '#9ACD32'
] # [rgb2hex(r, g, b) for r, g, b in product(range(256), repeat=3)]
def __repr__(self):
"""Return cli representation
Returns
-------
str
Cli's representation
"""
return f"{self}(colors={self.colors})"
def __str__(self):
"""Str method
Returns
-------
str
String representation
"""
return self.__class__.__name__
@staticmethod
def rgb2hex(r, g, b):
"""Convert RGB to HEX
Parameters
----------
r : int
Int value
g : int
Int value
b : int
Int value
Returns
-------
str
HEX string
"""
return "#%02x%02x%02x".upper() % (r, g, b)
@classmethod
def random_color(cls):
"""Get random color from existing colors
Returns
-------
str
Color
"""
return f"[bold {choice(cls.colors)}]"
@classmethod
def get_table(cls, *headers, justify="left", show_lines=True):
"""Create empty table
Parameters
----------
justify : str, optional
Justify, by default "left"
show_lines : bool, optional
Show lines, by default True
Returns
-------
rich.Table
Empty table
"""
table = Table(
box=box.SQUARE_DOUBLE_HEAD,
title=f"{cls.random_color()}AIOMOEX",
show_lines=show_lines
)
for column in headers:
table.add_column(f"{cls.random_color()}{column}", justify=justify)
return table
Classes
class CliDesigner
-
Beautify console
Expand source code
class CliDesigner: """Beautify console """ console = Console() colors = [ '#F0F8FF', '#FAEBD7', '#00FFFF', '#7FFFD4', '#F0FFFF', '#F5F5DC', '#FFE4C4', '#000000', '#FFEBCD', '#0000FF', '#8A2BE2', '#A52A2A', '#DEB887', '#5F9EA0', '#7FFF00', '#D2691E', '#FF7F50', '#6495ED', '#FFF8DC', '#DC143C', '#00FFFF', '#00008B', '#008B8B', '#B8860B', '#A9A9A9', '#006400', '#A9A9A9', '#BDB76B', '#8B008B', '#556B2F', '#FF8C00', '#9932CC', '#8B0000', '#E9967A', '#8FBC8F', '#483D8B', '#2F4F4F', '#2F4F4F', '#00CED1', '#9400D3', '#FF1493', '#00BFFF', '#696969', '#696969', '#1E90FF', '#B22222', '#FFFAF0', '#228B22', '#FF00FF', '#DCDCDC', '#F8F8FF', '#FFD700', '#DAA520', '#808080', '#008000', '#ADFF2F', '#808080', '#F0FFF0', '#FF69B4', '#CD5C5C', '#4B0082', '#FFFFF0', '#F0E68C', '#E6E6FA', '#FFF0F5', '#7CFC00', '#FFFACD', '#ADD8E6', '#F08080', '#E0FFFF', '#FAFAD2', '#D3D3D3', '#90EE90', '#D3D3D3', '#FFB6C1', '#FFA07A', '#20B2AA', '#87CEFA', '#778899', '#778899', '#B0C4DE', '#FFFFE0', '#00FF00', '#32CD32', '#FAF0E6', '#FF00FF', '#800000', '#66CDAA', '#0000CD', '#BA55D3', '#9370DB', '#3CB371', '#7B68EE', '#00FA9A', '#48D1CC', '#C71585', '#191970', '#F5FFFA', '#FFE4E1', '#FFE4B5', '#FFDEAD', '#000080', '#FDF5E6', '#808000', '#6B8E23', '#FFA500', '#FF4500', '#DA70D6', '#EEE8AA', '#98FB98', '#AFEEEE', '#DB7093', '#FFEFD5', '#FFDAB9', '#CD853F', '#FFC0CB', '#DDA0DD', '#B0E0E6', '#800080', '#663399', '#FF0000', '#BC8F8F', '#4169E1', '#8B4513', '#FA8072', '#F4A460', '#2E8B57', '#FFF5EE', '#A0522D', '#C0C0C0', '#87CEEB', '#6A5ACD', '#708090', '#708090', '#FFFAFA', '#00FF7F', '#4682B4', '#D2B48C', '#008080', '#D8BFD8', '#FF6347', '#40E0D0', '#EE82EE', '#F5DEB3', '#FFFFFF', '#F5F5F5', '#FFFF00', '#9ACD32' ] # [rgb2hex(r, g, b) for r, g, b in product(range(256), repeat=3)] def __repr__(self): """Return cli representation Returns ------- str Cli's representation """ return f"{self}(colors={self.colors})" def __str__(self): """Str method Returns ------- str String representation """ return self.__class__.__name__ @staticmethod def rgb2hex(r, g, b): """Convert RGB to HEX Parameters ---------- r : int Int value g : int Int value b : int Int value Returns ------- str HEX string """ return "#%02x%02x%02x".upper() % (r, g, b) @classmethod def random_color(cls): """Get random color from existing colors Returns ------- str Color """ return f"[bold {choice(cls.colors)}]" @classmethod def get_table(cls, *headers, justify="left", show_lines=True): """Create empty table Parameters ---------- justify : str, optional Justify, by default "left" show_lines : bool, optional Show lines, by default True Returns ------- rich.Table Empty table """ table = Table( box=box.SQUARE_DOUBLE_HEAD, title=f"{cls.random_color()}AIOMOEX", show_lines=show_lines ) for column in headers: table.add_column(f"{cls.random_color()}{column}", justify=justify) return table
Class variables
var colors
var console
Static methods
def get_table(*headers, justify='left', show_lines=True)
-
Create empty table
Parameters
justify
:str
, optional- Justify, by default "left"
show_lines
:bool
, optional- Show lines, by default True
Returns
rich.Table
- Empty table
Expand source code
@classmethod def get_table(cls, *headers, justify="left", show_lines=True): """Create empty table Parameters ---------- justify : str, optional Justify, by default "left" show_lines : bool, optional Show lines, by default True Returns ------- rich.Table Empty table """ table = Table( box=box.SQUARE_DOUBLE_HEAD, title=f"{cls.random_color()}AIOMOEX", show_lines=show_lines ) for column in headers: table.add_column(f"{cls.random_color()}{column}", justify=justify) return table
def random_color()
-
Get random color from existing colors
Returns
str
- Color
Expand source code
@classmethod def random_color(cls): """Get random color from existing colors Returns ------- str Color """ return f"[bold {choice(cls.colors)}]"
def rgb2hex(r, g, b)
-
Convert RGB to HEX
Parameters
r
:int
- Int value
g
:int
- Int value
b
:int
- Int value
Returns
str
- HEX string
Expand source code
@staticmethod def rgb2hex(r, g, b): """Convert RGB to HEX Parameters ---------- r : int Int value g : int Int value b : int Int value Returns ------- str HEX string """ return "#%02x%02x%02x".upper() % (r, g, b)