Estoy usando sopa hermosa (en Python). Tengo tal objeto de entrada oculto:Parámetros para la función de búsqueda
<input type="hidden" name="form_build_id" id="form-531f740522f8c290ead9b88f3da026d2" value="form-531f740522f8c290ead9b88f3da026d2" />
I need in id/value.
Aquí está mi código:
mainPageData = cookieOpener.open('http://page.com').read()
soupHandler = BeautifulSoup(mainPageData)
areaId = soupHandler.find('input', name='form_build_id', type='hidden')
TypeError: find() got multiple values for keyword argument 'name'
He intentado cambiar el código:
print soupHandler.find(name='form_build_id', type='hidden')
None
¿Qué ocurre?