-
Notifications
You must be signed in to change notification settings - Fork 1
/
filtrahtml.py~
53 lines (50 loc) · 1.12 KB
/
filtrahtml.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
44
45
46
47
48
49
50
51
52
import sys
def salvatxt(parlis):
#~ nomearq = input("nome do arquivo: ")
nomearq= sys.argv[2]
if nomearq [-4:len(nomearq)] != ".txt":
nomearq+=".txt"
arq = open(nomearq,"w")
for elem in parlis:
arq.write(elem)
arq.close()
def filtrahtml(parstr,parlis):
strresp = ""
confere= True
for ind in range (len(parstr)):
if parstr[ind] == "<":
#print(parstr[ind:ind+5])
#if ind+5 < len(parstr) and parstr[ind:ind+5] == "<style": #style
confere = False
if confere == True:
strresp+=parstr[ind]
if parstr[ind] == ">":
confere = True
parlis.append(strresp)
#
def abrehtml ():
#~ nomehtml= input("nome do arquivo a ser filtrado: ")
nomehtml = sys.argv[1]
try:
if nomehtml [-5:len(nomehtml)] != ".html":
nomehtml +=".html"
arq = open(nomehtml,"r")
lisconteudo=[]
linha = arq.readline()
while linha != "":
filtrahtml(linha,lisconteudo)
linha = arq.readline()
#~ tudo= arq.read()
#~ filtrahtml(tudo,lisconteudo)
arq.close()
salvatxt(lisconteudo)
#while
#fim
print("TADAAAAA!")
except :
print("Arquivo não encontrado")
def main():
abrehtml()
return 0
if __name__ == '__main__':
main()