Small output changes

pull/1281/head
aristotelis gkithkopoulos 3 years ago
parent 28b49ef898
commit 780395c030

@ -2,4 +2,5 @@
This module contains the main logic to search for usernames at social
networks.
"""

@ -155,6 +155,33 @@ class QueryNotifyPrint(QueryNotify):
Fore.GREEN + f"] {title}" +
Fore.WHITE + f" {message}" +
Fore.GREEN + " on:")
# An empty line between first line and the result(more clear output)
print('\r')
return
def finish(self, message="Results have been uploaded"):
"""Notify Start.
Will print the last line to the standard output.
Keyword Arguments:
self -- This object.
message -- The last phrase.
Return Value:
Nothing.
"""
title = "Finish"
print('\r') # An empty line between last line of main output and last line(more clear output)
print(Style.BRIGHT + Fore.GREEN + "[" +
Fore.YELLOW + "!" +
Fore.GREEN + f"] {title}" +
Fore.GREEN + ": " +
Fore.WHITE + f" {message}" )
# An empty line between first line and the result(more clear output)
return

Loading…
Cancel
Save