-
I am new to python, the version I used it python 3.X
The problems are found in got3 folder. Could you help me? Thank you!
=========================
Traceback (most recent call last):
File "Expo…
-
Lane Stevens created an issue 2012-07-18
I have include two files. The first file is a proper subset of the second. In the first file, the p and div elements are not found. In the second file the p a…
gawel updated
10 years ago
-
Using pyquery 1.2.4 with Python 3.3.0 on OS X 10.8:
``` python
Python 3.3.0 (default, Oct 22 2012, 11:17:43)
[GCC 4.2.1 Compatible Apple Clang 4.0 ((tags/Apple/clang-421.0.57))] on darwin
Type "help…
acdha updated
10 years ago
-
I think the https://github.com/kennethreitz/requests-html/pull/160 causes a new issue.
For example, I'm trying to get the data in a script tag:
```python
from requests_html import HTML
html …
-
I use pyquery like this
`from pyquery import PyQuery
if __name__ == '__main__':
query = PyQuery('AABBCC')
need_remove_dict = dict()
for item in query('span').items():
ite…
-
PyQuery can be construct from an url or the content text. I used to think that the two modes should be same. But I found that in some situation it give me different results.
Here is my example:
```…
-
```py
with open('file.txt', 'w') as f:
f.write('')
pq = PyQuery(filename='file.txt')
pq.find('div')
```
raises an attribute error. It doesn't appear PyQuery can do anything useful with an em…
-
from wxpy import *
import requests
from pyquery import PyQuery
import stats_word
bot = Bot()
my_friend=bot.friends().search("欣", keywords=None, **attributes)#
这一步我不想做任何限定,只要是好友给我发信息可以么?
@bot.…
-
Often desired information in a web site, are grouped under class name. For example in some site a list of torrent are a list of div with a particular class. So in some case it would be better to find …
-
I noticed an interesting problem using pyquery 1.2.4 with Python 3.3.0 on OS X 10.8:
``` python
>>> from pyquery import PyQuery as PQ
>>> PQ("").html("\N{SNOWMAN}").html()
'☃'
>>> PQ("").html("\N{SNO…
acdha updated
10 years ago