We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7439aa commit ca200d9Copy full SHA for ca200d9
main.py
@@ -132,6 +132,8 @@ def main():
132
prevInputInvalid = 0
133
while 1:
134
clearCLI()
135
+
136
+ print(f"{Fore.MAGENTA}{Style.BRIGHT}Welcome to InstaUnfollowerFinder by Smartsv!{Style.RESET_ALL}\n")
137
138
# Print all the actions
139
for n, i in enumerate(actions.keys()):
utils.py
@@ -1,9 +1,13 @@
1
from colorama import Style, Fore
2
import os
3
+from sys import platform
4
5
6
def clearCLI():
- os.system("clear")
7
+ if platform == "win32":
8
+ os.system("cls")
9
+ else:
10
+ os.system("clear")
11
12
13
def error(txt):
0 commit comments