This article has compiled relevant knowledge points about how to use python to organize attachments. Friends who are learning python can follow along and test it.
Currently there are more than 500 resumes in my folder. If I want to know some information, such as school, academic qualifications, etc., I need to open each word to view it, which is too time-consuming. At this time python needs to take action.
Goal
There are currently 600 words similar to those in the screenshot, and I want to simply organize them:
You can organize an excel file for navigation (similar to a directory), and you can use excel to quickly locate the attachments you want, as shown below:
Specific implementation
Once we have the goal, let’s talk about how to achieve it in detail. The arrangement of ideas is relatively simple, which is to traverse all word files and obtain the key information in word. and save to excel.
Here are the main modules used:
import xlsxwriter import subprocess import os import docx import sys import re##xlsxwriter is mainly used to operate excel, xlsxwriter can only be used to write, in terms of efficiency It is higher than xlwt, and the amount of data is not much. It is ok to use xlwt. Subprocess is mainly used to call the command line. Because the docx module cannot parse the doc word file, it converts the doc file into a docx file before parsing. os is mainly used to traverse folders to obtain files. docx is mainly used to parse word documents.
Standardize the file name
def remove_doc_special_tag(): for filename in os.listdir(path): otherName = re.sub("[\s+\!\/_,$%^*(+\"\')]+|[+——()?【】“”!,。?、~@#¥%……&*()]+", "",filename) os.rename(os.path.join(path,filename),os.path.join(path,otherName))
Traversing files
path='/Users/cavin/Desktop/files' for filename in os.listdir(path): ...具体逻辑...I encountered a problem here. First, the docx module cannot parse the doc word document. Since I am using a mac, I cannot use the win32com module. This problem is quite embarrassing. Later, Google discovered that doc can be converted into docx through commands. Note here that the converted docx file style is lost, but this does not affect my ability to obtain text information. So there is this code. If it is a doc file, it will be converted to docx first, and then removed after the parsing is completed.
if filename.endswith('.doc'): subprocess.call('textutil -convert docx {0}'.format(fullname),shell=True) fullname=fullname[:-4]+".docx" sheetModel= etl_word_files(fullname)#解析文本逻辑 subprocess.call('rm {0}'.format(fullname),shell=True) #移除转换的文件
Parse the word file
doc = docx.Document(fullname) for para in doc.paragraphs: print(para.text) ...具体解析逻辑...
Filling excel
workbook = xlsxwriter.Workbook('report_list.xlsx') worksheet = workbook.add_worksheet('list') worksheet.write(0,0, '序号') worksheet.write(0,1, '姓名') worksheet.write(0,2, '性别') worksheet.write(0,3, '年龄') worksheet.write(0,4, '籍贯') worksheet.write(0,5, '目前所在地') worksheet.write(0,6, '学历') worksheet.write(0,7, '学校') worksheet.write(0,8, '公司') worksheet.write(0,9, '职位') worksheet.write(0,10, '文档链接')The main topic here is to fill in the document link. Since it is for other people, just make sure that the attachment and excel are in the same folder and use a relative path to achieve it. You can use the Excel function HYPERLINK:
worksheet.write(index,10, '=HYPERLINK(\"./'+filename+'\",\"附件\")')
Problem point
Summary
Use Python to quickly build HTTP services and file sharing services
Use Python to monitor file content changes code
The above is the detailed content of How to organize attachments using python. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
