Skip to content
Snippets Groups Projects
Commit 3b63731e authored by Recolic Keghart's avatar Recolic Keghart
Browse files

add a tool

parent e88cee25
No related branches found
No related tags found
Loading
#!/usr/bin/python3
# A script to deal with product sheet. (see test-*.xlsx)
# Workaround for fucking Windows NT
import traceback
def show_exception_and_exit(exc_type, exc_value, tb):
traceback.print_exception(exc_type, exc_value, tb)
input("Press any key to exit.")
sys.exit(-1)
import sys
import os, shutil
if os.name == 'nt':
sys.excepthook = show_exception_and_exit
# Allow import parent
import os,sys,inspect
currentdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
parentdir = os.path.dirname(currentdir)
sys.path.insert(0,parentdir)
################################### BEGIN #####################################
import config, xlsx_conv, utils
def main():
def contains_id(fname, _id):
s = xlsx_conv.read_as_csv(fname)
s = s.replace(' ', '').replace(',', '')
return s.find(_id) != -1
if len(sys.argv) == 1:
raise RuntimeError('Usage: drag a file into me...')
target_filename = os.path.basename(sys.argv[1])
target_id = utils.get_id_prefix_from_string(target_filename)
results = []
print('Iterating... Please wait...')
is_xlsx = lambda fname: fname.endswith('.xlsm') or fname.endswith('.xlsx') or fname.endswith('.xls') or fname.endswith('.XLSM') or fname.endswith('.XLSX') or fname.endswith('.XLS')
for (dirpath, dirnames, filenames) in os.walk(config.library_path):
for fname in filenames:
if is_xlsx(fname):
if contains_id(dirpath + os.path.sep + fname, target_id):
results.append(fname)
# if config.search_only_top_level_directory:
# break
if config.working_dir != "":
os.chdir(config.working_dir)
print(results)
with open(target_id + '被引用处.csv', 'w+') as f:
f.write(',\n'.join(results))
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment