web scraping - Get login result in mechanize (Python) -
i'm logging in website (https://acesso.estadao.com.br/login/) using:
br.select_form(id="form-cadastro") br['emaillog'] = login br['passwordlog'] = passwd br.submit() answer = br.response().read()
and works good, after need know if login successful or not, how can it? tried read answer, either a:
<script type="text/javascript"> window.location.hash = ''; window.location.href = "http://www.estadao.com.br/" </script>
or
<!doctype html> <html lang="pt-br"> <head> <meta charset="utf-8"/> <meta http-equiv="x-ua-compatible" content="ie=edge"/> <title>o portal de notícias estado de s. paulo</title> (...)
is there way of getting response code, saying login ok?
Comments
Post a Comment