deprecate unused scripts

Signed-off-by: Ferit Yiğit BALABAN <fyb@fybx.dev>
This commit is contained in:
2024-01-15 22:32:23 +03:00
parent b4565d76bb
commit 1dddc37e34
12 changed files with 22 additions and 0 deletions

18
deprecated/clear_html.py Normal file
View File

@@ -0,0 +1,18 @@
with open('test', 'r') as f:
l = f.readlines()
f.close()
ll = l[0].split('title="')
lt = []
for x in ll:
buffer = ''
cc = 0
while x[cc] != '"':
buffer += x[cc]
cc += 1
lt.append(buffer)
lt.remove('<div class=')
[print(x) for x in lt]
print(len(lt))