Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 294 Bytes

File metadata and controls

17 lines (10 loc) · 294 Bytes

tools

feapder.utils.tools里封装了爬虫中常用的函数,目前共计129个,可通过阅读源码了解使用

举例

时间格式化

from feapder.utils import tools

time = "昨天"

date = tools.format_time(time)
assert date == "2021-03-15 00:00:00"