Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error in selection result #223

Closed
silenceTiano opened this issue Aug 6, 2021 · 1 comment
Closed

Error in selection result #223

silenceTiano opened this issue Aug 6, 2021 · 1 comment

Comments

@silenceTiano
Copy link

python code

from pyquery import PyQuery as pq

d = pq(url='https://www.baidu.com/')
print(d('title'))

i get:

<title>�度���你就��</title></head> <body link="#0000cc"> <div id="wrapper"> <div id="head"> <div class="head_wrapper"> <div class="s_form"> <div class="s_form_wrapper"> <div id="lg"> <img hidefocus="true" src="//www.baidu.com/img/bd_logo1.png" width="270" height="129"/> </div> <form id="form" name="f" action="//www.baidu.com/s" class="fm"> <input type="hidden" name="bdorz_come" value="1"/> <input type="hidden" name="ie" value="utf-8"/> <input type="hidden" name="f" value="8"/> <input type="hidden" name="rsv_bp" value="1"/> <input type="hidden" name="rsv_idx" value="1"/> <input type="hidden" name="tn" value="baidu"/><span class="bg s_ipt_wr"><input id="kw" name="wd" class="s_ipt" value="" maxlength="255" autocomplete="off" autofocus="autofocus"/></span><span class="bg s_btn_wr"><input type="submit" id="su" value="�度��" class="bg s_btn" autofocus=""/></span> </form> </div> </div> <div id="u1"> <a href="http://news.baidu.com" name="tj_trnews" class="mnav">��</a> <a href="https://www.hao123.com" name="tj_trhao123" class="mnav">hao123</a> <a href="http://map.baidu.com" name="tj_trmap" class="mnav">��</a> <a href="http://v.baidu.com" name="tj_trvideo" class="mnav">��</a> <a href="http://tieba.baidu.com" name="tj_trtieba" class="mnav">贴�</a> <noscript> <a href="http://www.baidu.com/bdorz/login.gif?login&amp;tpl=mn&amp;u=http%3A%2F%2Fwww.baidu.com%2f%3fbdorz_come%3d1" name="tj_login" class="lb">��</a> </noscript> <script>document.write('&lt;a href="http://www.baidu.com/bdorz/login.gif?login&amp;tpl=mn&amp;u='+ encodeURIComponent(window.location.href+ (window.location.search === "" ? "?" : "&amp;")+ "bdorz_come=1")+ '" name="tj_login" class="lb"&gt;��&lt;/a&gt;');&#13;
                </script> <a href="//www.baidu.com/more/" name="tj_briicon" class="bri" style="display: block;">æ�´å¤�产å��</a> </div> </div> </div> <div id="ftCon"> <div id="ftConw"> <p id="lh"> <a href="http://home.baidu.com">å�³äº�ç�¾åº¦</a> <a href="http://ir.baidu.com">About Baidu</a> </p> <p id="cp">©2017 Baidu <a href="http://www.baidu.com/duty/">使ç�¨ç�¾åº¦å��å¿�读</a>  <a href="http://jianyi.baidu.com/" class="cp-feedback">æ��è§�å��é¦�</a> äº¬ICPè¯�030173å�·  <img src="//www.baidu.com/img/gs.gif"/> </p> </div> </div> </div> </body> </html>

What I want is the title in the html, but it gives me all the content after the title

@gawel
Copy link
Owner

gawel commented Aug 6, 2021

Seems to work with the master branch:

from pyquery import PyQuery as pq 

d = pq(url='https://www.baidu.com/') 
print(d('title'))                                                                      
<title>ç¾åº¦ä¸ä¸ï¼ä½ å°±ç</title>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants