V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  enrolls  ›  全部回复第 8 页 / 共 9 页
回复总数  164
1  2  3  4  5  6  7  8  9  
godjob 的思路,+1。[docker-py]( https://docker-py.readthedocs.io/en/stable/ ) 了解一下。或者你把代码写完了,fabric 跑 2-5 环节可以鸭。
2018-11-09 10:44:43 +08:00
回复了 levineet 创建的主题 iPhone 有从 iPhone X 换到 XR 的小伙伴吗?
参照物 6 & 6 换 2k mA 电池 => XR。
2018-11-09 10:43:07 +08:00
回复了 levineet 创建的主题 iPhone 有从 iPhone X 换到 XR 的小伙伴吗?
回答题主,XR 续航一天一充最安全,续航没你想象的那么 powerful。你应该把这点期望值 * 0.5 或更低。

想指教 XR 的 V 友们,有没有在切换 Apps / 屏幕关闭的(变黑瞬间) ,出现 => (偶尔)屏幕的某个位置(不固定) 会闪出一条黑线,很快。但会感觉得到,变黑或切换之时,屏幕有东西闪了一闪很细。
2018-11-06 00:10:09 +08:00
回复了 Livid 创建的主题 使用指南 关于 V2EX 支持的两种发贴语法的区别
2018-11-06 00:01:09 +08:00
回复了 a65420321a 创建的主题 Python 异步爬虫如何使用 https 代理?
1. 忽略 ssl 验证 [doc]( https://docs.aiohttp.org/en/stable/client_reference.html?highlight=verify_ssl)
2. 代理协议使用 http/socks4/socks5
2018-06-02 07:50:01 +08:00
回复了 luw2007 创建的主题 Python Python 2018 rpc 最佳实践是什么
2018-05-27 18:30:40 +08:00
回复了 ltoddy 创建的主题 Python Python 魔法方法总结
全文'右'字打错? '友' -> '右'?
基础一节,补充 hex? id?
另外,最末尾的 weakref 那行,字号是不是有点小呢?
[github]( https://github.com/bndr/pipreqs) 这个不能满足需求?
2017-11-26 23:16:50 +08:00
回复了 qu3290052 创建的主题 Python 请教有什么办法把所有的域名列举出来?
http://python3-cookbook.readthedocs.io/zh_CN/latest/c04/p09_iterate_over_combination_or_permutation.html

import string
from itertools import combinations_with_replacement


def f(size=3, has_number=False):
lst = string.ascii_lowercase

if has_number:
lst += string.digits
return combinations_with_replacement(lst, size)
2017-11-15 11:17:45 +08:00
回复了 bb2018 创建的主题 Python windows2008 上要写一个自动执行 scrapy crawl xxx 的.bat 脚本
cd "path\python"
cmd /k "path\venv\py3\Scripts\activate.bat & scrapy crawl python
1  2  3  4  5  6  7  8  9  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3763 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 26ms · UTC 05:15 · PVG 13:15 · LAX 22:15 · JFK 01:15
Developed with CodeLauncher
♥ Do have faith in what you're doing.