read_requests icon indicating copy to clipboard operation
read_requests copied to clipboard

python requests 源码阅读,学习更pythonic 的python代码写法。

Results 15 read_requests issues
Sort by recently updated
recently updated
newest added

楼主的翻译太不准确了,不得不修正

大佬,在 Requests_v0.3.0 中AuthManager有单例模式的必要吗,import 不是不会重复加载吗,本身不就是单例的吗,为啥还特别要整成单例模式?

你好,请问你的微信公众号是多少?

fix a translate mistake of readme about requests

```python def _build_response(self, resp): """Build internal Response object from given response.""" def build(resp): ... history = [] r = build(resp) if self.redirect: while 'location' in r.headers: history.append(r) url = r.headers['location']...

谢谢dalao拆轮子,对于一个新手来说自己徒手去拆一个轮子真的是无从入手。感谢感谢

requests_v0.2.0 增强Markdown语法高亮。

改了一些句子的翻译,希望采纳。

你好 我现在也在看requests的源代码,但是不知道如何入手。希望你能给我点建议。 谢谢

虽然 DotA 中幽鬼 Spectre 的名字叫 Mercurial,不过这里指的是一个类似 git 的版本控制系统──[mercurial](https://www.mercurial-scm.org/),也叫 hg(水银/汞),意思是“水银”,也是 CPython 源代码当时所采用的版本控制工具。所以这段注释的要表达的意思是这段代码是直接从 CPython 代码仓库中直接拷贝的一段代码。 位置在[这一行](https://github.com/wangshunping/read_requests/blob/master/doc/Requests_v0.4.0.md#2-内部代码重新分开成不同文件)上面。