lmac wrote:
> Ok. There is an error i made. The links in the HTML-Site are starting
> with good.php so there was no way ever to find an link.
>
> re_site = re.compile(r"good\.php.+'")
> for a in file:
> z = re_site.search(a)
> if z != None:
> print z.group(0)
>
>
> This
Ok. There is an error i made. The links in the HTML-Site are starting
with good.php so there was no way ever to find an link.
re_site = re.compile(r"good\.php.+'")
for a in file:
z = re_site.search(a)
if z != None:
print z.group(0)
This will give me every line sta
lmac wrote:
> Hallo.
> I want to parse a website for links of this type:
>
> http://www.example.com/good.php?test=anything&egal=total&nochmal=nummer&so=site&seite=22";>
>
> -
> re_site = re.compile(r'http://\w+.\w+.\w+./good.php?
Hallo.
I want to parse a website for links of this type:
http://www.example.com/good.php?test=anything&egal=total&nochmal=nummer&so=site&seite=22";>
-
re_site = re.compile(r'http://\w+.\w+.\w+./good.php?.+";>')
for a in file: