How would you get all the HTML
tags from a URL
and print them?
相关问题
- Views base64 encoded blob in HTML with PHP
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
Fetch it (using
mechanize
,urllib
or whatever else you want), parse what you get (usingelementtree
,BeautifulSoup
,lxml
or whatever else you want) and you have what you want.