PK!͹h%%signalepy/__init__.py#!/usr/bin/env python """ author: Shardul Nalegave license: MIT License Copyright (c) 2018 Shardul Nalegave Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ __version__ = '0.1.0' import os import sys from sys import platform, stdout class Signale: def __init__(self, opts={"scope": None}): self.options = opts try: self.custom_loggers_conf = opts["custom"] for conf in self.custom_loggers_conf: func = lambda text="", prefix="", suffix="": self.log(text, prefix, suffix, conf) setattr(self, conf["name"], func) except KeyError: pass scope = opts["scope"] if scope != None: self.scope = scope if scope != "" else "global" else: self.scope = None if platform == "win32": self.figures = { "pause": "||", "tick": '√', "cross": '×', "star": '*', "squareSmallFilled": '[█]', "play": '►', "bullet": '*', "ellipsis": '...', "pointerSmall": '»', "info": 'i', "warning": '‼', "heart": '♥', "radioOn": '(*)', "radioOff": '( )' } else: self.figures = { "pause": "||", "tick": '✔', "cross": '✖', "star": '★', "squareSmallFilled": '◼', "play": '▶', "bullet": '●', "ellipsis": '…', "pointerSmall": '›', "info": 'ℹ', "warning": '⚠', "heart": '♥', "radioOn": '◉', "radioOff": '◯' } self.colors = { "green": "\u001b[32;1m", "grey": "\u001b[38;5;240m", "red": "\u001b[38;5;196m", "yellow": "\u001b[38;5;11m", "purple": "\u001b[38;5;127m", "dark blue": "\u001b[38;5;33m", "cyan": "\u001b[36;1m", "very light blue": "\u001b[38;5;39m", "pink": "\u001b[38;5;198m", "reset": "\u001b[0m" } def coloured(self, color, text): color = self.colors[color] reset = self.colors["reset"] return f"{color}{text}{reset}" def logger(self, text="", prefix="", suffix=""): message = "" if prefix != "": pointer = self.figures["pointerSmall"] message = f" \u001b[38;5;248m[{prefix}] {pointer}\u001b[0m {text}" else: message = f" {text}" if suffix != "": message += f" \u001b[38;5;245m-- {suffix}\u001b[0m" if self.scope != None: if isinstance(self.scope, list): message = " " + message scopes = "" for item in self.scope: scopes += f" \u001b[38;5;248m[{item}]\u001b[0m" if prefix == "": pointer = self.figures["pointerSmall"] message = f" \u001b[38;5;248m{scopes} \u001b[38;5;248m{pointer}\u001b[0m" + message else: message = f" \u001b[38;5;248m{scopes}\u001b[0m" + message else: if prefix == "": pointer = self.figures["pointerSmall"] message = f" \u001b[38;5;248m[{self.scope}] \u001b[38;5;248m{pointer}\u001b[0m" + message else: message = f" \u001b[38;5;248m[{self.scope}]\u001b[0m" + message # message = f" \u001b[38;5;248m[{self.scope}]\u001b[0m" + message return message def log(self, text="", prefix="", suffix="", conf={}): text = "{}: {}".format(self.coloured(conf["color"], "{} {}".format(conf["badge"], conf["label"])), text) message = self.logger(text, prefix, suffix) print(message) def simple(self, text="", prefix="", suffix=""): print(self.logger(text, prefix, suffix)) def success(self, text="", prefix="", suffix=""): tick = self.figures["tick"] text = "{}: {}".format(self.coloured("green", "{} Success".format(tick)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def start(self, text="", prefix="", suffix=""): icon = self.figures["play"] text = "{}: {}".format(self.coloured("green", "{} Start".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def error(self, text="", prefix="", suffix=""): cross = self.figures["cross"] text = "{}: {}".format(self.coloured("red", "{} Error".format(cross)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def warning(self, text="", prefix="", suffix=""): icon = self.figures["warning"] text = "{}: {}".format(self.coloured("yellow", "{} Warning".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def watch(self, text="", prefix="", suffix=""): icon = self.figures["ellipsis"] text = "{}: {}".format(self.coloured("yellow", "{} Watching".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def stop(self, text="", prefix="", suffix=""): icon = self.figures["squareSmallFilled"] text = "{}: {}".format(self.coloured("red", "{} Stop".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def important(self, text="", prefix="", suffix=""): icon = self.figures["star"] text = "{}: {}".format(self.coloured("yellow", "{} Important".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def pending(self, text="", prefix="", suffix=""): icon = self.figures["radioOff"] text = "{}: {}".format(self.coloured("purple", "{} Pending".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def debug(self, text="", prefix="", suffix=""): icon = self.figures["squareSmallFilled"] text = "{}: {}".format(self.coloured("dark blue", "{} Debug".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def info(self, text="", prefix="", suffix=""): icon = self.figures["info"] text = "{}: {}".format(self.coloured("cyan", "{} Info".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def pause(self, text="", prefix="", suffix=""): icon = self.figures["pause"] text = "{}: {}".format(self.coloured("yellow", "{} Pause".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def complete(self, text="", prefix="", suffix=""): icon = self.figures["radioOn"] text = "{}: {}".format(self.coloured("very light blue", "{} Complete".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def like(self, text="", prefix="", suffix=""): icon = self.figures["heart"] text = "{}: {}".format(self.coloured("pink", "{} Like".format(icon)), text) message = self.logger(text=text, prefix=prefix, suffix=suffix) print(message) def center(self, text="", prefix="", suffix=""): rows, cols = os.popen('stty size', 'r').read().split() rows, cols = int(rows), int(cols) text = "-" * 10 + " " + text + " " + "-" * 10 len_text = len(text) message = " " * ((cols - len_text) // 2) + text + " " * ((cols - len_text) // 2) print(message) def scoped(self, scope): opts = self.options if self.scope != None: if isinstance(self.scope, list): opts["scope"] = opts["scope"].append(scope) return Signale(opts) else: opts["scope"] = [self.scope, scope] return Signale(opts) return Signale() else: opts["scope"] = scope return Signale(opts) return Signale() # s = Signale() # s.center("Testing Logger") # s.simple("ABC", prefix="Debugger", suffix="xyz") # s.info("Starting", prefix="Debugger") # s.success("Started Successfully", prefix="Debugger", suffix="xyz") # s.watch("Watching All Files", prefix="Debugger") # s.error("Something Went Wrong", prefix="Debugger") # s.warning("Deprecation Warning", prefix="Debugger") # s.pending("Postponed", prefix="Debugger") # s.debug("Found A Bug on L55", prefix="Debugger") # s.start("Started New Process", prefix="Debugger") # s.pause("Process Paused", prefix="Debugger") # s.complete("Task Completed", prefix="Debugger") # s.important("New Update Available. Please Update!", prefix="Debugger") # s.like("I Love Signale", prefix="Debugger") # s.stop("Stopping", prefix="Debugger") # print("\n") # logger = Signale("") # logger.success("Started Successfully", prefix="Debugger") # logger.warning("`a` function is deprecated", suffix="main.py") # logger.complete("Run Complete") # print("\n") # logger = Signale("custom") # logger.success("Started Successfully", prefix="Debugger") # logger.warning("`a` function is deprecated", suffix="main.py") # logger.complete("Run Complete") # logger = Signale({ # "scope": "global scope", # "custom": [ # { # "badge": "!", # "label": "Attention", # "color": "red", # "name": "attention" # } # ] # }) # logger2 = logger.scoped("inner") # logger.attention("It Works!") # logger2.attention("With Logger2")PK!00!signalepy-0.3.0.dist-info/LICENSEMIT License Copyright (c) 2018 Shardul Nalegave Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.PK!HlŃTTsignalepy-0.3.0.dist-info/WHEEL A н#J@Z|Jmqvh&#hڭw!Ѭ"J˫( } %PK!HBM"signalepy-0.3.0.dist-info/METADATAX[s۶~~Ŗ}쑨ɓFq:'J9ɔ Q)pwRtNV6, OB9O ߊ9YּM' [-.+Q…\Sn;Q5 i]7a߫6Dk3Ji7*vp] 'btHQk඗Wo{P0sI^ɉLr/tZP;oQ!= 0[.9axOU)^R 3,#&7F@AS^-Zo.e}G ar-"Vvk+P5clQ{bw,+trFebyJ4!'xx1kJm FI:áAee6u8{|T"@ M9C6_ W8w&CkX !o !&e,ߊ c-;Z䃀wAޏ}ny~G>i9C6iAd-hSxkj-ZpJnO|8ús2Рr4u..@a<ne7ZlO2k>1r+8yӮ?gtTYcBU%^goZe0 4 Zmwx6J[828ƙQtɍzN-/Ě zt8 M('5m crMYu[U]2iBZڐŝ\(ld<7^A=M|wXU0'[H ׽z! ߐ%BRzJ=X|ħ۟KFߥ 0q]"S<$de')5:!Dbi'I6e>n,Vڍ#Մeo".ⶈ(GcZŁ`@ph_2W []BzB1N5 7)"`\xPrJQ'sHJDdI!= h뀝'|0/t4JV(WD3&-]dkurS5^Gi8ԋ%ߎgw1f`g|d8}<Ͼ|߰](j A24!<6b3p` 8XrT+IڧBd8\#镺}{2w\F{ ~@BX34hV?E&N4Fe(i*QQF>$Zt#Mϐ˫^8xNi/h9ÍSZVf])!Wв+xA\W^d d5iϼׁE#KD/rr9|ׁ 9|-9O-bX `?a,bLgc,ق0q}|0=3#dopUjbµ<G'ul= t~D4 ٖfW7ˣcqNo;x{xa؉ i-l%#PK!H>'H| signalepy-0.3.0.dist-info/RECORD}ι0o ga/mUr|nCyT4q.MXIEg;m$l^ k $򡉺]5|AXz]w!jBR9XDZ&֥q/1*~cv(OбC_㉐UwsMnqdXFdpi$6G{ oV>&m)q>/t}`PK!͹h%%signalepy/__init__.pyPK!00!%signalepy-0.3.0.dist-info/LICENSEPK!HlŃTT1*signalepy-0.3.0.dist-info/WHEELPK!HBM"*signalepy-0.3.0.dist-info/METADATAPK!H>'H| 2signalepy-0.3.0.dist-info/RECORDPK}4