Quote:
Originally Posted by gambarini
in the calibre output i can find the print link;
|
If it's in the calibre output, it's in the input, too.
Quote:
so, i think that the print link is in the redirect link of the original url.
|
Yes, I agree.
Quote:
Can i use attribute calibre26 to find the href link? No, because this output was generated by calibre...
|
Correct, you have to find it in the input.
I would simply use the pre or post process html to print the soup for your page. That's one of my common steps during debug. Redirect your output to a text file (my default setup is always like this) and search for the print link. It must be there or it wouldn't get to Calibre.
I just used Firebug to find it.
It's in the first "A" child tag of the second "DIV" child tag of the DIV tag having id=strumenti_utili_bottom. Learn the BeautifulSoup navigation options to find it.