I'm trying to extract something like this:
<object classid=clsid:D 27CDB6E-AE6D-11cf-96B8-444553540000
codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/
swflash.cab#ver sion=7,0,19,0" width=640 height=400>
<param name=movie value=url>
<param name=quality value=high><par am name=SCALE value=showall>
<embed src=url quality=highplu ginspage=http://www.macromedia. com/go/
getflashplayer type=applicatio n/x-shockwave-flash width=640 height=400
bgcolor=#000000 scale= showall>
</embed>
</object>
====
I don't know how I can get the param
# below don't work
for test in soup.fetch('obj ect'):
print test # nothing
# nothing
print soup.findAll('p aram',{'name':' movie'})
# nothing
print soup.findAll('o bject')
Is it possible with BeautifulSoup to extract the object tag with his
child param ?
I have made everything in BeautifulSoup so I hope its possible :S
Thanks anyway,
GCMartijn
<object classid=clsid:D 27CDB6E-AE6D-11cf-96B8-444553540000
codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/
swflash.cab#ver sion=7,0,19,0" width=640 height=400>
<param name=movie value=url>
<param name=quality value=high><par am name=SCALE value=showall>
<embed src=url quality=highplu ginspage=http://www.macromedia. com/go/
getflashplayer type=applicatio n/x-shockwave-flash width=640 height=400
bgcolor=#000000 scale= showall>
</embed>
</object>
====
I don't know how I can get the param
# below don't work
for test in soup.fetch('obj ect'):
print test # nothing
# nothing
print soup.findAll('p aram',{'name':' movie'})
# nothing
print soup.findAll('o bject')
Is it possible with BeautifulSoup to extract the object tag with his
child param ?
I have made everything in BeautifulSoup so I hope its possible :S
Thanks anyway,
GCMartijn
Comment