python请求:在哪里可以找到所有可能的属性?

Python-requests: Where to find all possible attributes?

本问题已经有最佳答案,请猛点这里访问。

我将python请求与lambda函数结合使用(如果调用其他函数,请纠正我)以获取URL。考虑到url根据EDOCX1的值变化(0),我想打印它进行调试。

对我来说幸运的是,print(kiwi.url)可以工作,因为kiwi.url存在,但是为了将来的参考,我如何在不依赖运气的情况下找到python请求甚至其他模块的所有可能属性?

1
2
3
4
5
import time, requests
epoch = lambda: int(time.time()*1000)
kiwi = s.get('http://www.example.com/api?do=%i' % epoch())
print(kiwi.url) #I found the .url attribute by chance.
           ^


一般来说,您可以使用dir()vars()函数内省python对象:

1
2
3
4
5
6
7
8
>>> import requests
>>> response = requests.get('http://httpbin.org/get?foo=bar')
>>> dir(response)
['__attrs__', '__bool__', '__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__getstate__', '__hash__', '__init__', '__iter__', '__module__', '__new__', '__nonzero__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__setstate__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_content', '_content_consumed', 'apparent_encoding', 'close', 'connection', 'content', 'cookies', 'elapsed', 'encoding', 'headers', 'history', 'is_permanent_redirect', 'is_redirect', 'iter_content', 'iter_lines', 'json', 'links', 'ok', 'raise_for_status', 'raw', 'reason', 'request', 'status_code', 'text', 'url']
>>> 'url' in dir(response)
True
>>> vars(response).keys()
['cookies', '_content', 'headers', 'url', 'status_code', '_content_consumed', 'encoding', 'request', 'connection', 'elapsed', 'raw', 'reason', 'history']

您也可以使用help()函数,python将格式化类上的docstring;response.url没有docstring,但在属性部分列出。

对于requests,只需查看优秀的API文档即可。url属性作为Response对象的一部分列出。


在外壳中使用dir()

1
2
3
4
5
6
7
8
9
10
11
12
>>> import requests
>>> req = requests.get('http://www.google.com')
>>> dir(req)
['__attrs__', '__bool__', '__class__', '__delattr__', '__dict__', '__doc__',
'__format__', '__getattribute__', '__getstate__', '__hash__', '__init__',
'__iter__', '__module__', '__new__', '__nonzero__', '__reduce__',
'__reduce_ex__', '__repr__', '__setattr__', '__setstate__', '__sizeof__',
'__str__', '__subclasshook__', '__weakref__', '_content', '_content_consumed',
'apparent_encoding', 'close', 'connection', 'content', 'cookies', 'elapsed',
'encoding', 'headers', 'history', 'is_redirect', 'iter_content', 'iter_lines',
'json', 'links', 'ok', 'raise_for_status', 'raw', 'reason', 'request',
'status_code', 'text', 'url']