潜域思回
- UID
- 1359
- 主题
- 帖子
- 经验
- 点
- 棉棒
- 根
- 人气
- 点
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
RE: 球球Python大佬续写一小段程序
我其实测试过,结论是价格有很大影响(各种100出头的普遍销量很高),但如果同样把价格爬下来又会涉及到折扣之类的问题
结论是我不打算继续搞这个功能,只是残留在代码里给需要的人自取。。
用法很简单:
- In [1]: from lib import get_dl_count
- In [2]: get_dl_count("RJ196614") # Use local data
- Out[2]: '3076'
- In [3]: get_dl_count("RJ196614", current=True) # Use web data
- Out[3]: '3088'
复制代码
运行时间对比:
- In [1]: from lib import get_dl_count
- In [2]: %time get_dl_count("RJ196614") # Use local data
- CPU times: user 28 μs, sys: 3 μs, total: 31 μs
- Wall time: 37.7 μs
- Out[2]: '3076'
- In [3]: %time get_dl_count("RJ196614", current=True) # Use web data
- CPU times: user 505 ms, sys: 21.5 ms, total: 526 ms
- Wall time: 7.27 s
- Out[3]: '3088'
复制代码 |
|