This commit is contained in:
guanjihuan 2023-01-13 14:02:27 +08:00
parent 40497af8f5
commit 648176ad25
3 changed files with 10 additions and 7 deletions

View File

@ -1,7 +1,7 @@
[metadata]
# replace with your username:
name = guan
version = 0.0.159
version = 0.0.160
author = guanjihuan
author_email = guanjihuan@163.com
description = An open source python package

View File

@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: guan
Version: 0.0.159
Version: 0.0.160
Summary: An open source python package
Home-page: https://py.guanjihuan.com
Author: guanjihuan

View File

@ -2,7 +2,7 @@
# With this package, you can calculate band structures, density of states, quantum transport and topological invariant of tight-binding models by invoking the functions you need. Other frequently used functions are also integrated in this package, such as file reading/writing, figure plotting, data processing.
# The current version is guan-0.0.159, updated on January 02, 2023.
# The current version is guan-0.0.160, updated on January 13, 2023.
# Installation: pip install --upgrade guan
@ -2830,12 +2830,15 @@ def find_repeated_file_with_same_filename(directory='./', missed_directory_with_
for root, dirs, files in os.walk(directory):
for i0 in range(len(files)):
file_list.append(files[i0])
for word in missed_file_with_words:
if word in files[i0]:
file_list.remove(files[i0])
for word in missed_directory_with_words:
if word in root:
file_list.remove(files[i0])
file_list.remove(files[i0])
for word in missed_file_with_words:
if word in files[i0]:
try:
file_list.remove(files[i0])
except:
pass
count_file = Counter(file_list).most_common(num)
repeated_file = []
for item in count_file: