How to use the guiscrcpy.__main__.bcolors.UNDERLINE function in guiscrcpy

To help you get started, we’ve selected a few guiscrcpy examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github srevinsaju / guiscrcpy / guiscrcpy / __main__.py View on Github external
FAIL = "ERR:"
        ENDC = ""
        BOLD = ""
        UNDERLINE = ""


# import pdb
# removed multiprocess modules

if not sha:
    commit1 = __version__
else:
    commit1 = __version__ + " commit" + sha

print(
    bcolors.UNDERLINE +
    "                                  " +
    bcolors.ENDC)
print()
print("guiscrcpy")
print("by srevinsaju")
print(bcolors.OKBLUE + commit1 + bcolors.ENDC)
print(
    bcolors.OKBLUE +
    "Licensed under GNU GPL v3 (c) 2019  " +
    bcolors.ENDC)
print(
    bcolors.UNDERLINE +
    "                                  " +
    bcolors.ENDC)
print(bcolors.OKBLUE + "" + bcolors.ENDC)