大家好,这里是程序员晚枫,今天给大家分享一下Python自动化办公,最近更新的功能。
以下代码,全部都可以免费使用哦~!
有没有觉得python自带的无色输出看腻了?增加了彩色输出的功能,可以实现无痛替换。
上面效果的实现代码如下,👇
## 以前
print('我是传统打印')
print('我是传统打印')
print('我是传统打印')
print('=' * 10)
## 现在
from pocode.api.color import random_color_print
random_color_print('我是彩色打印')
random_color_print('我是彩色打印')
random_color_print('我是彩色打印')
这个12月发布了一个开源项目:poemail
,增加了自动收发邮件的功能。
import os
from datetime import datetime
import poemail
key = os.getenv('EMAIL_KEY')
msg_from = os.getenv('EMAIL_FROM')
msg_to = os.getenv('EMAIL_TO')
msg_cc = 'ai163361ia@163.com'
attach_files = [r'./test_files/4-send_mail_content_file/程序员晚枫.doc',
r'./test_files/4-send_mail_content_file/0816.jpg']
poemail.send.send_email(key=key,
msg_from=msg_from,
msg_to=msg_to,
msg_cc=msg_cc,
msg_subject='带附件的邮件' + str(datetime.now().strftime('%Y-%m-%d %H:%M:%S')),
content='测试邮件发送' + str(datetime.now().strftime('%Y-%m-%d %H:%M:%S')),
attach_files=attach_files)
下面这1行代码,可以实现从Wotd里提取出所有的图片,包括表格中的。
# pip install python-office
import office
office.word.docx4imgs(word_path=r'./test_files/50-24-docx4imgs/程序员晚枫.docx',
img_path=r'./test_files/out')
ocr这个库发布很久了,这次增加了更多识别后直接保存为Excel的操作。
# pip install poocr
import poocr
poocr.ocr2excel.VatInvoiceOCR2Excel(input_path=r'test_files/50-15-VatInvoiceOCR2Excel/',
output_path=r'test_files/50-15-VatInvoiceOCR2Excel',
output_excel='程序员晚枫的发票.xlsx',
id='id',
key='key')
# 全部100多个识别功能,举例如下。
# # 识别增值税发票
# ressult = poocr.ocr.VatInvoiceOCR()
# # 识别银行卡
# ressult = poocr.ocr.BankCardOCR()
# # 识别身份证
# ressult = poocr.ocr.IDCardOCR()
同时开发了单次做T和批量做T的代码,我用单次做T比较多,至于赚了还是赔了,别问了,答应我。
from pofinance import MakeT
import pofinance as pf
# pip install pofinance
t = MakeT()
print(t.single_t(27.11, 26.9, 300))
print(pf.t0(12.2, 12.3, 1000))
大家学习 或 使用代码过程中,有任何问题,都可以在评论区和我交流哟~👇
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。