0.0.136
This commit is contained in:
parent
3192ef0007
commit
e7dee55f3f
@ -331,7 +331,7 @@ degenerate_k_array, degenerate_eigenvalue_array = guan.find_degenerate_points(k_
|
|||||||
|
|
||||||
guan.batch_reading_and_plotting(directory, xlabel='x', ylabel='y')
|
guan.batch_reading_and_plotting(directory, xlabel='x', ylabel='y')
|
||||||
|
|
||||||
guan.write_file_list_in_markdown(directory, filename='a', reverse_positive_or_negative=1, starting_from_h1=None, banned_type=[], hide_file_type=None, divided_line=None, show_second_number=None, show_third_number=None)
|
guan.write_file_list_in_markdown(directory, filename='a', reverse_positive_or_negative=1, starting_from_h1=None, banned_file_format=[], hide_file_format=None, divided_line=None, show_second_number=None, show_third_number=None)
|
||||||
|
|
||||||
guan.move_all_files_to_root_directory(directory)
|
guan.move_all_files_to_root_directory(directory)
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
# replace with your username:
|
# replace with your username:
|
||||||
name = guan
|
name = guan
|
||||||
version = 0.0.135
|
version = 0.0.136
|
||||||
author = guanjihuan
|
author = guanjihuan
|
||||||
author_email = guanjihuan@163.com
|
author_email = guanjihuan@163.com
|
||||||
description = An open source python package
|
description = An open source python package
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Metadata-Version: 2.1
|
Metadata-Version: 2.1
|
||||||
Name: guan
|
Name: guan
|
||||||
Version: 0.0.135
|
Version: 0.0.136
|
||||||
Summary: An open source python package
|
Summary: An open source python package
|
||||||
Home-page: https://py.guanjihuan.com
|
Home-page: https://py.guanjihuan.com
|
||||||
Author: guanjihuan
|
Author: guanjihuan
|
||||||
|
@ -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.
|
# 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.135, updated on September 12, 2022.
|
# The current version is guan-0.0.136, updated on September 13, 2022.
|
||||||
|
|
||||||
# Installation: pip install --upgrade guan
|
# Installation: pip install --upgrade guan
|
||||||
|
|
||||||
@ -2538,7 +2538,7 @@ def batch_reading_and_plotting(directory, xlabel='x', ylabel='y'):
|
|||||||
x_array, y_array = guan.read_one_dimensional_data(filename=filename)
|
x_array, y_array = guan.read_one_dimensional_data(filename=filename)
|
||||||
guan.plot(x_array, y_array, xlabel=xlabel, ylabel=ylabel, title=filename, show=0, save=1, filename=filename)
|
guan.plot(x_array, y_array, xlabel=xlabel, ylabel=ylabel, title=filename, show=0, save=1, filename=filename)
|
||||||
|
|
||||||
def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_negative=1, starting_from_h1=None, banned_type=[], hide_file_type=None, divided_line=None, show_second_number=None, show_third_number=None):
|
def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_negative=1, starting_from_h1=None, banned_file_format=[], hide_file_format=None, divided_line=None, show_second_number=None, show_third_number=None):
|
||||||
import os
|
import os
|
||||||
f = open(filename+'.md', 'w', encoding="utf-8")
|
f = open(filename+'.md', 'w', encoding="utf-8")
|
||||||
filenames1 = os.listdir(directory)
|
filenames1 = os.listdir(directory)
|
||||||
@ -2546,8 +2546,8 @@ def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_neg
|
|||||||
for filename1 in filenames1[::reverse_positive_or_negative]:
|
for filename1 in filenames1[::reverse_positive_or_negative]:
|
||||||
filename1_with_path = os.path.join(directory,filename1)
|
filename1_with_path = os.path.join(directory,filename1)
|
||||||
if os.path.isfile(filename1_with_path):
|
if os.path.isfile(filename1_with_path):
|
||||||
if os.path.splitext(filename1)[1] not in banned_type:
|
if os.path.splitext(filename1)[1] not in banned_file_format:
|
||||||
if hide_file_type == None:
|
if hide_file_format == None:
|
||||||
f.write('+ '+str(filename1)+'\n\n')
|
f.write('+ '+str(filename1)+'\n\n')
|
||||||
else:
|
else:
|
||||||
f.write('+ '+str(os.path.splitext(filename1)[0])+'\n\n')
|
f.write('+ '+str(os.path.splitext(filename1)[0])+'\n\n')
|
||||||
@ -2564,8 +2564,8 @@ def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_neg
|
|||||||
for filename2 in filenames2[::reverse_positive_or_negative]:
|
for filename2 in filenames2[::reverse_positive_or_negative]:
|
||||||
filename2_with_path = os.path.join(directory, filename1, filename2)
|
filename2_with_path = os.path.join(directory, filename1, filename2)
|
||||||
if os.path.isfile(filename2_with_path):
|
if os.path.isfile(filename2_with_path):
|
||||||
if os.path.splitext(filename2)[1] not in banned_type:
|
if os.path.splitext(filename2)[1] not in banned_file_format:
|
||||||
if hide_file_type == None:
|
if hide_file_format == None:
|
||||||
f.write('+ '+str(filename2)+'\n\n')
|
f.write('+ '+str(filename2)+'\n\n')
|
||||||
else:
|
else:
|
||||||
f.write('+ '+str(os.path.splitext(filename2)[0])+'\n\n')
|
f.write('+ '+str(os.path.splitext(filename2)[0])+'\n\n')
|
||||||
@ -2583,8 +2583,8 @@ def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_neg
|
|||||||
for filename3 in filenames3[::reverse_positive_or_negative]:
|
for filename3 in filenames3[::reverse_positive_or_negative]:
|
||||||
filename3_with_path = os.path.join(directory, filename1, filename2, filename3)
|
filename3_with_path = os.path.join(directory, filename1, filename2, filename3)
|
||||||
if os.path.isfile(filename3_with_path):
|
if os.path.isfile(filename3_with_path):
|
||||||
if os.path.splitext(filename3)[1] not in banned_type:
|
if os.path.splitext(filename3)[1] not in banned_file_format:
|
||||||
if hide_file_type == None:
|
if hide_file_format == None:
|
||||||
f.write('+ '+str(filename3)+'\n\n')
|
f.write('+ '+str(filename3)+'\n\n')
|
||||||
else:
|
else:
|
||||||
f.write('+ '+str(os.path.splitext(filename3)[0])+'\n\n')
|
f.write('+ '+str(os.path.splitext(filename3)[0])+'\n\n')
|
||||||
@ -2601,8 +2601,8 @@ def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_neg
|
|||||||
for filename4 in filenames4[::reverse_positive_or_negative]:
|
for filename4 in filenames4[::reverse_positive_or_negative]:
|
||||||
filename4_with_path = os.path.join(directory, filename1, filename2, filename3, filename4)
|
filename4_with_path = os.path.join(directory, filename1, filename2, filename3, filename4)
|
||||||
if os.path.isfile(filename4_with_path):
|
if os.path.isfile(filename4_with_path):
|
||||||
if os.path.splitext(filename4)[1] not in banned_type:
|
if os.path.splitext(filename4)[1] not in banned_file_format:
|
||||||
if hide_file_type == None:
|
if hide_file_format == None:
|
||||||
f.write('+ '+str(filename4)+'\n\n')
|
f.write('+ '+str(filename4)+'\n\n')
|
||||||
else:
|
else:
|
||||||
f.write('+ '+str(os.path.splitext(filename4)[0])+'\n\n')
|
f.write('+ '+str(os.path.splitext(filename4)[0])+'\n\n')
|
||||||
@ -2615,8 +2615,8 @@ def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_neg
|
|||||||
for filename5 in filenames5[::reverse_positive_or_negative]:
|
for filename5 in filenames5[::reverse_positive_or_negative]:
|
||||||
filename5_with_path = os.path.join(directory, filename1, filename2, filename3, filename4, filename5)
|
filename5_with_path = os.path.join(directory, filename1, filename2, filename3, filename4, filename5)
|
||||||
if os.path.isfile(filename5_with_path):
|
if os.path.isfile(filename5_with_path):
|
||||||
if os.path.splitext(filename5)[1] not in banned_type:
|
if os.path.splitext(filename5)[1] not in banned_file_format:
|
||||||
if hide_file_type == None:
|
if hide_file_format == None:
|
||||||
f.write('+ '+str(filename5)+'\n\n')
|
f.write('+ '+str(filename5)+'\n\n')
|
||||||
else:
|
else:
|
||||||
f.write('+ '+str(os.path.splitext(filename5)[0])+'\n\n')
|
f.write('+ '+str(os.path.splitext(filename5)[0])+'\n\n')
|
||||||
@ -2629,8 +2629,8 @@ def write_file_list_in_markdown(directory, filename='a', reverse_positive_or_neg
|
|||||||
for filename6 in filenames6[::reverse_positive_or_negative]:
|
for filename6 in filenames6[::reverse_positive_or_negative]:
|
||||||
filename6_with_path = os.path.join(directory, filename1, filename2, filename3, filename4, filename5, filename6)
|
filename6_with_path = os.path.join(directory, filename1, filename2, filename3, filename4, filename5, filename6)
|
||||||
if os.path.isfile(filename6_with_path):
|
if os.path.isfile(filename6_with_path):
|
||||||
if os.path.splitext(filename6)[1] not in banned_type:
|
if os.path.splitext(filename6)[1] not in banned_file_format:
|
||||||
if hide_file_type == None:
|
if hide_file_format == None:
|
||||||
f.write('+ '+str(filename6)+'\n\n')
|
f.write('+ '+str(filename6)+'\n\n')
|
||||||
else:
|
else:
|
||||||
f.write('+ '+str(os.path.splitext(filename6)[0])+'\n\n')
|
f.write('+ '+str(os.path.splitext(filename6)[0])+'\n\n')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user