-
Notifications
You must be signed in to change notification settings - Fork 0
/
banned-words-bypass.py
43 lines (31 loc) · 989 Bytes
/
banned-words-bypass.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#i'm just beginner and i found this idea so i start coding for fun and learning new stuff :)
#DISCORD : 0xSp3ar#5560
#Twiter : https://twitter.com/0xsp3ar
#---------------------------------------------------------#
def seofriendly(seo):
wordseo=""
wordseo=lghdar+seo+lghdar
return wordseo
def eye(notseo):
notfriend=""
for twila in notseo:
notfriend+=twila+lghdar
return notfriend
def save(saveword):
with open('word.txt', 'a+', encoding="utf-8") as f:
f.write(saveword+ "\n")
print("Done !! Check file word.txt")
def start():
level=input('''1- Low Level Bypass (Seo Friendly)
2- High Level Bypass (not friendly for seo)
Enter Number :''')
return level
lghdar=""
check=start()
if check == "1":
save(seofriendly(input("Enter Your Word Or Enter 0 To stop:")))
elif check == "2":
save(eye(input("Enter Your Word:")))
else:
print("ONLY 1 And 2 Availble For now")
exit()