摘要: What is it? Splash is a javascript rendering service. It’s a lightweight web browser with an HTTP API http://splash.readthedocs.io/en/stable/ 用途 爬虫方面可 阅读全文
posted @ 2018-08-14 19:53 Rocin 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 动态规划 ≈ 分治法 + memo def memo(func): cache = {} def wrap( args): if args not in cache: cache[args] = func( args) return cache[args] return wrap @memo 注释掉 阅读全文
posted @ 2018-08-14 11:16 Rocin 阅读(165) 评论(0) 推荐(0) 编辑