wei_office_simptool
一个用于简化办公工作的工具库,提供了数据库操作、Excel 处理、邮件发送、日期时间戳的格式转换、文件移动等常见功能,实现1到3行代码完成相关处理的快捷操作。
使用以下命令安装 wei_office_simptool
:
pip install wei_office_simptool
使用以下命令升级 wei_office_simptool
:
pip install wei_office_simptool --upgrade
用于连接和操作数据库。
from wei_office_simptool import Database
# 示例代码
db = Database(host='your_host', port=3306, user='your_user', password='your_password', db='your_database')
result = db("SELECT * FROM your_table", operation_mode="s")
print(result)
主要用于Mysql数据库的快速连接
from wei_office_simptool import MySQLDatabase
mysql_config = {
'host': 'your_host',
'user': 'your_user',
'password': 'your_password',
'database': 'your_database'
}
db = MySQLDatabase(mysql_config)
insert_query = "INSERT INTO your_table (column1, column2) VALUES (%s, %s)"
insert_params = ("value1", "value2")
db.execute_query(insert_query, insert_params)
select_query = "SELECT * FROM your_table"
results = db.fetch_query(select_query)
for row in results:
print(row)
update_query = "UPDATE your_table SET column1 = %s WHERE column2 = %s"
update_params = ("new_value", "value2")
db.execute_query(update_query, update_params)
delete_query = "DELETE FROM your_table WHERE column1 = %s"
delete_params = ("new_value",)
db.execute_query(delete_query, delete_params)
db.close()
用于处理 Excel 文件,包括写入和读取。
from wei_office_simptool import OpenExcel,ExcelHandler
# 示例代码
home_file = pathlib.Path.cwd()
openfile = pathlib.Path(home_file) / "1.xlsx"
savefile = pathlib.Path(home_file) / "2.xlsx"
with OpenExcel(openfile, savefile).my_open() as ws:
eExcel.fast_write(ws, results, sr, sc, er=0, ec=0, re=0)
创建、写入表
from wei_office_simptool import eExcel
eExcel(file_name=r"D:\Deskto\1.xlsx")
#读取
x=eExcel(file_name=r"D:\Deskto\1.xlsx").excel_read(start_row, start_col, end_row, end_col)
#写入
eExcel(file_name=r"D:\Deskto\1.xlsx").excel_write(ws="Sheet1",results, start_row, start_col, end_row, end_col)
用于发送邮件。
from wei_office_simptool import eSend
# 示例代码
email_sender = eSend(sender,receiver,username,password,smtpserver='smtp.126.com')
email_sender.send_email(subject='Your Subject', e_content='Your Email Content', file_paths=['/path/to/file/'], file_names=['attachment.txt'])
用于获取最近的时间处理。
from wei_office_simptool import DateFormat
# 示例代码
#timeclass:1日期 date 2时间戳 timestamp 3时刻 time 4datetime
#获取当日的日期字符串
x=DateFormat(interval_day=0,timeclass='date').get_timeparameter(Format="%Y-%m-%d")
print(x)
# 格式化df的表的列属性
df = DateFormat(interval_day=0,timeclass='date').datetime_standar(df, '日期')
用于文件移动并且重命名。
#latest_folder2 当前目录
#destination_directory 目标目录
#target_files2 文件名
#add_prefix 重命名去除数字
#file_type 文件类型
FileManagement().copy_files(latest_folder2, destination_directory, target_files2, rename=True,file_type="xls")
#寻找最新文件夹
latest_folder = FileManagement().find_latest_folder(base_directory)
用于清洗字符串。
from wei_office_simptool import StringBaba
str="""
萝卜
白菜
"""
formatted_str =StringBaba(str1).format_string_sql()
用于进行词频分析。
from wei_office_simptool import TextAnalysis
# 示例用法
data = {
'Category': ['A', 'A', 'B', 'D', 'C'],
'Text': [
'我爱自然语言处理',
'自然语言处理很有趣',
'机器学习是一门很有前途的学科',
'我对机器学习很感兴趣',
'数据科学包含很多有趣的内容'
]
}
df = pd.DataFrame(data)
ta = TextAnalysis(df)
result = ta.get_word_freq(group_col='Category', text_col='Text', agg_func=' '.join)
word_freqs = result['word_freq'].tolist()
titles = result['Category'].tolist()
ta.plot_wordclouds(word_freqs, titles)
0.0.29新增,用于连接Ollama的AI接口
from wei_office_simptool import ChatBot
bot = ChatBot(api_url='http://localhost:11434/api/chat')
print("开始聊天(输入 'exit' 退出,输入 'new' 新建聊天)")
while True:
user_input = input("你: ")
if user_input.lower() == 'exit':
break
elif user_input.lower() == 'new':
bot.start_new_chat()
continue
# 默认使用流式响应,可以根据需要选择非流式响应
bot.send_message(user_input, stream=True)
print("聊天结束。")
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The software is provided "as is," without any warranty of any kind, either express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. In no event shall the authors or copyright holders be liable for any claims, damages, or other liabilities, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
本软件以“原样”提供,不附带任何形式的明示或暗示保证,包括但不限于对适销性、特定用途适用性以及不侵权的保证。在任何情况下,作者或版权持有者均不对因使用本软件或与本软件的其他交易相关的任何索赔、损害或其他责任承担责任,无论是合同、侵权或其他原因。