上一页 1 ··· 6 7 8 9 10
摘要: @api.model def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False): """ Changes the view dynamically @param self: The 阅读全文
posted @ 2023-01-11 14:41 *感悟人生* 阅读(20) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/smarttony/category/1484288.html 阅读全文
posted @ 2023-01-11 14:31 *感悟人生* 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-01-11 14:10 *感悟人生* 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1 Sub 升序() 2 3 all_rows = Sheets(1).Range("a65536").End(xlUp).Row 4 5 With ActiveWorkbook.Worksheets(1) 6 .Sort.SortFields.Clear 7 .Sort.SortFields.Ad 阅读全文
posted @ 2022-12-28 10:20 *感悟人生* 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 前二天,给财务部做了个数据采集的工具,因为财务现在用的是excel2013 和2017的版本,所以我决定不用python,改用VBA来处理这个工具。 在 写过程的时候,我用了sheets(i)来定位表,写了好几个过程后,在最后整理过程的时候还好,如果写完再修改的话,会有一些麻烦。 因为sheets( 阅读全文
posted @ 2022-11-02 10:43 *感悟人生* 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: 在Scrapy框架中的items.py的作用 1.可以预先定义好要爬取的字段 items.py 2. 把字段定义好之后 ,就可以在爬虫中进行使用 在用的时候, item的键名要和在items.py里面定义好的字段名称一致 3. 如果想在pipelines.py中使用的方法是大同小异,只是在进行处理的 阅读全文
posted @ 2022-06-08 16:32 *感悟人生* 阅读(264) 评论(1) 推荐(0) 编辑
摘要: 1、获取秒级时间戳与毫秒级时间戳、微秒级时间戳 import time import datetime t = time.time() print (t) #原始时间数据 print (int(t)) #秒级时间戳 print (int(round(t * 1000))) #毫秒级时间戳 print 阅读全文
posted @ 2022-06-01 14:41 *感悟人生* 阅读(4607) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10