-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKG-INFO
1058 lines (773 loc) · 22.4 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Metadata-Version: 2.1
Name: myz_tools
Version: 0.2.0
Summary: Python helper tools
Home-page: https://pypi.org/project/myz_tools/
Author: 宇千思
Author-email:
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiocontextvars==0.2.2
Requires-Dist: alabaster==0.7.16
Requires-Dist: anyio==4.4.0
Requires-Dist: astroid==3.2.4
Requires-Dist: asttokens==2.4.1
Requires-Dist: atomicwrites==1.4.1
Requires-Dist: babel==2.16.0
Requires-Dist: beautifulsoup4==4.12.3
Requires-Dist: bs4==0.0.2
Requires-Dist: certifi==2024.7.4
Requires-Dist: chardet==5.2.0
Requires-Dist: charset-normalizer==3.3.2
Requires-Dist: colorama==0.4.6
Requires-Dist: comm==0.2.2
Requires-Dist: commonmark==0.9.1
Requires-Dist: contextvars==2.4
Requires-Dist: DataProperty==1.0.1
Requires-Dist: debugpy==1.8.5
Requires-Dist: decorator==5.1.1
Requires-Dist: dill==0.3.8
Requires-Dist: distlib==0.3.8
Requires-Dist: docutils==0.21.2
Requires-Dist: dominate==2.9.1
Requires-Dist: exceptiongroup==1.2.2
Requires-Dist: executing==2.0.1
Requires-Dist: filelock==3.15.4
Requires-Dist: graphviz==0.20.3
Requires-Dist: h11==0.14.0
Requires-Dist: httpcore==1.0.5
Requires-Dist: httpx==0.27.0
Requires-Dist: idna==3.7
Requires-Dist: imagesize==1.4.1
Requires-Dist: immutables==0.20
Requires-Dist: importlib_metadata==8.2.0
Requires-Dist: ipykernel==6.29.5
Requires-Dist: ipython==8.18.1
Requires-Dist: isort==5.13.2
Requires-Dist: jedi==0.19.1
Requires-Dist: Jinja2==3.1.4
Requires-Dist: jsonpickle==3.2.2
Requires-Dist: jupyter_client==8.6.2
Requires-Dist: jupyter_core==5.7.2
Requires-Dist: loguru==0.5.3
Requires-Dist: MarkupSafe==2.1.5
Requires-Dist: matplotlib-inline==0.1.7
Requires-Dist: mbstrdecoder==1.1.3
Requires-Dist: mccabe==0.7.0
Requires-Dist: nest-asyncio==1.6.0
Requires-Dist: networkx==3.2.1
Requires-Dist: numpy==2.0.1
Requires-Dist: packaging==24.1
Requires-Dist: pandas==2.2.2
Requires-Dist: parso==0.8.4
Requires-Dist: pathvalidate==3.2.0
Requires-Dist: pbr==6.0.0
Requires-Dist: pillow==10.4.0
Requires-Dist: platformdirs==4.2.2
Requires-Dist: prettytable==3.11.0
Requires-Dist: prompt_toolkit==3.0.47
Requires-Dist: psutil==6.0.0
Requires-Dist: pure_eval==0.2.3
Requires-Dist: pycallgraph5==0.1.0
Requires-Dist: Pygments==2.18.0
Requires-Dist: pylint==3.2.6
Requires-Dist: pypistats==1.6.0
Requires-Dist: pytablewriter==1.2.0
Requires-Dist: python-call-graph==2.1.2
Requires-Dist: python-dateutil==2.9.0.post0
Requires-Dist: python-slugify==8.0.4
Requires-Dist: pytz==2024.1
Requires-Dist: pyvis==0.1.9
Requires-Dist: pywin32==306
Requires-Dist: PyYAML==6.0.2
Requires-Dist: pyzmq==26.1.0
Requires-Dist: recommonmark==0.7.1
Requires-Dist: reportlab==4.2.2
Requires-Dist: requests==2.32.3
Requires-Dist: rst2pdf==0.102
Requires-Dist: six==1.16.0
Requires-Dist: smartypants==2.0.1
Requires-Dist: sniffio==1.3.1
Requires-Dist: snowballstemmer==2.2.0
Requires-Dist: socksio==1.0.0
Requires-Dist: soupsieve==2.5
Requires-Dist: Sphinx==7.4.7
Requires-Dist: sphinxcontrib-applehelp==2.0.0
Requires-Dist: sphinxcontrib-devhelp==2.0.0
Requires-Dist: sphinxcontrib-htmlhelp==2.1.0
Requires-Dist: sphinxcontrib-jsmath==1.0.1
Requires-Dist: sphinxcontrib-qthelp==2.0.0
Requires-Dist: sphinxcontrib-serializinghtml==2.0.0
Requires-Dist: stack-data==0.6.3
Requires-Dist: stevedore==5.2.0
Requires-Dist: tabledata==1.3.3
Requires-Dist: tcolorpy==0.1.6
Requires-Dist: termcolor==2.4.0
Requires-Dist: text-unidecode==1.3
Requires-Dist: tomli==2.0.1
Requires-Dist: tomlkit==0.13.2
Requires-Dist: tornado==6.4.1
Requires-Dist: traitlets==5.14.3
Requires-Dist: typepy==1.3.2
Requires-Dist: typing_extensions==4.12.2
Requires-Dist: tzdata==2024.1
Requires-Dist: urllib3==2.2.2
Requires-Dist: virtualenv==20.26.3
Requires-Dist: virtualenv-clone==0.5.7
Requires-Dist: virtualenvwrapper==6.1.0
Requires-Dist: wcwidth==0.2.13
Requires-Dist: win32-setctime==1.1.0
Requires-Dist: zipp==3.20.0
# 0.2.0
正式版,增加了 5 个函数
# 文件名称: all_test.py
---
[TOC]
---
## 函数部分:
#### 函数 test_invalid_input
```
测试函数在非二维数组输入中的行为
```
#### 函数 test_empty_input
```
测试传入空的三维数组。
```
#### 函数 test_valid_input
```
测试正常输入的排列组合生成。
```
#### 函数 test_empty_list
```
测试传入空列表的情况。
```
---
## 类部分:
### 类 TestCreateDir
```
TestCreateDir
```
#### 类方法 setUp
```
在每个测试之前运行的代码,用于设置测试环境
```
#### 类方法 tearDown
```
在每个测试之后运行的代码,用于清理测试环境
```
#### 类方法 test_create_new_directory
```
测试函数在不存在的路径中创建目录
```
#### 类方法 test_directory_already_exists
```
测试函数在目录已经存在的情况下处理
```
### 类 TestGetMaxDiff
#### 类方法 test_standard_case
```
测试函数在正常二维数组中的行为
```
#### 类方法 test_single_column_array
```
测试函数在只有一列的二维数组中的行为
```
#### 类方法 test_invalid_input
```
测试函数在非二维数组输入中的行为
```
#### 类方法 test_non_numeric_data
```
测试函数在包含非数字数据的二维数组中的行为
```
### 类 TestRemoveOutliersIQR
#### 类方法 test_remove_outliers_basic
```
测试简单的二维数组,确保函数能正确去除异常值。
```
#### 类方法 test_all_inliers
```
测试当没有异常值时,所有数据都应该保留。
```
#### 类方法 test_single_column
```
测试只有一列数据的情况。
```
### 类 TestExportToCsv
#### 类方法 setUp
```
在每个测试之前运行的代码,用于设置测试环境
```
#### 类方法 tearDown
```
在每个测试之后运行的代码,用于清理测试环境
```
#### 类方法 test_file_creation
```
测试函数是否能够创建CSV文件
```
#### 类方法 test_data_written_correctly
```
测试函数是否正确写入数据到CSV文件
```
#### 类方法 test_append_data
```
测试函数在文件存在时是否能够正确追加数据
```
### 类 TestGenerate2DCombinationsIter
#### 类方法 test_generate_all_combinations
```
测试正常情况下,生成所有二维数组组合的迭代器。
```
#### 类方法 test_generate_first_group_combinations
```
测试只生成第一个二维数组组合的迭代器。
```
#### 类方法 test_empty_input
```
测试传入空的三维数组。
```
#### 类方法 test_invalid_input
```
测试传入非三维数组,应该抛出 ValueError。
```
#### 类方法 test_single_element_input
```
测试仅包含一个元素的三维数组。
```
#### 类方法 test_single_layer_array
```
测试包含一个二维数组的三维数组。
```
### 类 TestGenerateRowPermutations
#### 类方法 test_valid_input
```
测试正常输入的排列组合生成。
```
#### 类方法 test_single_row
```
测试只有一行的二维数组。
```
#### 类方法 test_empty_rows
```
测试包含空行的二维数组。
```
#### 类方法 test_empty_input
```
测试空的二维数组。
```
#### 类方法 test_empty_element_in_rows
```
测试包含空元素的二维数组。
```
### 类 TestCalculateTotalPermutations
#### 类方法 test_valid_input
```
测试正常输入的排列组合总数。
```
#### 类方法 test_single_row
```
测试只有一行的二维数组。
```
#### 类方法 test_multiple_rows
```
测试多行,每行元素数量不同的情况。
```
#### 类方法 test_empty_input
```
测试空的二维数组。
```
#### 类方法 test_empty_row
```
测试包含空行的二维数组。
```
#### 类方法 test_non_integer_elements
```
测试包含非整数元素的二维数组。
```
### 类 TestEvaluateListSimilarity
#### 类方法 test_mse
```
测试均方误差 (MSE) 评分方法。
```
#### 类方法 test_mae
```
测试平均绝对误差 (MAE) 评分方法。
```
#### 类方法 test_total_score
```
测试总分评分方法。
```
#### 类方法 test_empty_list
```
测试传入空列表的情况。
```
#### 类方法 test_invalid_list_type
```
测试传入无效的列表类型。
```
#### 类方法 test_invalid_element_type
```
测试列表中含有无效元素类型。
```
#### 类方法 test_invalid_n_type
```
测试传入无效的 n 类型。
```
#### 类方法 test_invalid_method
```
测试传入无效评分方法的情况。
```
### 类 TestCheckUnique
#### 类方法 test_unique_elements
```
测试所有元素唯一的情况。
```
#### 类方法 test_non_unique_elements
```
测试存在重复元素的情况。
```
#### 类方法 test_empty_list
```
测试空二维列表的情况。
```
#### 类方法 test_empty_sublist
```
测试包含空子列表的情况。
```
#### 类方法 test_empty_and_non_empty_sublists
```
测试包含空子列表和非空子列表的情况。
```
#### 类方法 test_invalid_input_type
```
测试传入非法输入类型的情况。
```
---
# 文件名称: common_maths.py
---
---
## 函数部分:
#### 函数 create_dir
```
在指定路径下创建名称为{dir_name}的文件夹
Args:
dir_name: 文件夹名称
path: 要创建文件夹的路径,默认为当前路径
Returns:
无
```
#### 函数 get_max_diff
```
参数:
two_dimensional_array: 二维数组
返回值:
每一列里面最大值和最小值的差值,类型是一个一维数组
功能:
传入一个二维数组,函数返回每一列里面最大值和最小值的差值。
```
#### 函数 remove_outliers_iqr
```
参数:
data: 二维数组
返回值:
去除异常值后的二维数组和有效的行索引,类型是一个元组
功能:
四分位距法去除传入的二维数组中的异常值,注意是对于每一列来说的自己的异常值
```
#### 函数 export_to_csv
```
参数:
array_data: 二维数组,要保存的数据
file_name: 字符串,CSV文件的名称(不包含扩展名)
output_directory: 字符串,保存文件的目录路径,默认为当前目录
返回:
None
功能:
将给定的二维数组保存到指定目录中的CSV文件。如果文件已存在,则追加数据,并在每次写入时添加空行作为分隔符。
```
#### 函数 generate_2d_combinations_iter
```
功能:
传入一个三维数组,返回每个二维数组的所有元素组合的迭代器。如果设置了 `test_first_group` 参数True,
则仅返回第一个二维数组的组合。
参数:
data_3d (list): 一个三维列表,每个元素都是一个二维列表,表示多个二维数组。
test_first_group (bool): 是否只生成第一个二维数组的组合。默认为 False。
返回值:
generator: 一个生成器对象,按需生成每个二维数组的所有元素组合。
异常:
ValueError: 如果输入的数据不是三维列表,则抛出异常。
示例:
>>> data = [[[1, 2], [3, 4]], [[5, 6], [7, 8]]]
>>> result_iter = generate_2d_combinations_iter(data)
>>> for combinations in result_iter:
# 每次拿到是一个二维列表的组合
... print(list(combinations)) # [(1, 3), (1, 4), (2, 3), (2, 4)]
下一次
[(5, 7), (5, 8), (6, 7), (6, 8)]
>>> result_iter = generate_2d_combinations_iter(data, test_first_group=True)
>>> print(list(next(result_iter)))
[(1, 3), (1, 4), (2, 3), (2, 4)]
```
#### 函数 generate_row_permutations
```
功能:
传入一个二维数组,返回该二维数组中每一行元素所有可能的排列组合。
参数:
data_2d (list): 一个二维列表,表示多个行数据。
返回值:
generator: 生成器对象,按需生成每一行的所有排列组合并组合成二维数组。
异常:
ValueError: 如果输入的二维数组为空或某行为空,则抛出异常。
示例:
>>> data = [[1, 2], [3, 4]]
>>> permutations = generate_row_permutations(data)
>>> for perm in permutations:
... print(perm)
[[1, 2], [3, 4]]
[[1, 2], [4, 3]]
[[2, 1], [3, 4]]
[[2, 1], [4, 3]]
```
#### 函数 calculate_total_permutations
```
功能:
计算并返回二维数组中所有行的排列组合总数。
参数:
data_2d (list): 一个二维列表,表示多个行数据。
返回值:
int: 所有行排列组合的总数。
异常:
ValueError: 如果输入的二维数组为空或某行为空,则抛出异常。
示例:
>>> data = [[1, 2], [3, 4]]
>>> total = calculate_total_permutations(data)
>>> print(total)
4
```
#### 函数 display_combinations
```
功能:
打印二维数组中前 N 个排列组合,以检测组合生成的正确性。
参数:
data_2d (list): 一个二维列表,表示多个行数据。
N (int): 要打印的组合数量,默认为 5。
返回值:
None
异常:
ValueError: 如果输入的二维数组为空或某行为空,则抛出异常。
示例:
>>> data = [[1, 2], [3, 4]]
>>> display_combinations(data, N=2)
[1, 2]
[3, 4]
[1, 2]
[4, 3]
```
#### 函数 evaluate_list_similarity
```
功能:
评估列表中元素间的差异与给定值 `n` 的接近程度。支持不同的评分方法,例如均方误差 (MSE)、绝对误差等。
三种方式都是得分越小表示列表元素与目标值的接近程度越高
参数:
lst (list of int/float): 需要评估的数字列表。
n (int/float): 用于比较的参考值,计算差异的目标值。
method (str): 选择的评分方法。支持 'MSE'(均方误差)、'MAE'(平均绝对误差)、'total_score'(总分)等。
返回值:
float: 计算得出的评分值。
异常:
ValueError: 如果输入的 `lst` 不是列表或 `n` 不是整数或浮点数,则抛出异常。
TypeError: 如果 `lst` 中的元素不是整数或浮点数,则抛出异常。
ValueError: 如果选择的评分方法不被支持,则抛出异常。
示例:
>>> lst = [1, 3, 6, 10]
>>> n = 2
>>> score = evaluate_list_similarity(lst, n, method='MSE')
>>> print(score)
>>> score = evaluate_list_similarity(lst, n, method='MAE')
>>> print(score)
```
#### 函数 check_unique
```
功能:
检查传入的二维数组中的每个元素是否都是唯一的。如果所有元素唯一,返回 True;否则,返回 False。
参数:
data (list of list): 一个二维列表,其中包含需要检查的元素。
返回值:
bool: 如果所有元素都唯一,返回 True;否则,返回 False。
异常:
TypeError: 如果输入的 `data` 不是一个二维列表,或包含非列表的元素,则抛出异常。
示例:
>>> data = [[1, 2, 3], [4, 5, 6]]
>>> check_unique(data)
True
>>> data = [[1, 2, 3], [3, 4, 5]]
>>> check_unique(data)
False
```
---
## 类部分:
---
# 文件名称: source2md.py
---
---
## 函数部分:
#### 函数 dir2md
```
Args:
source_dir: 待处理目录
output_dir: 输出目录
single_file: 是否将所有文件放到一个md文件中
```
#### 函数 extract_info
```
功能:
解析python文件,提取函数和类信息
Args:
file_path: 待处理文件路径
Returns:
function_docs: 函数信息
class_info: 类信息
```
#### 函数 all_save_markdown
```
功能:
将提取的函数和类信息保存为markdown文件
Args:
file_path: 待处理文件路径
output_path: 保存路径
function_docs: 函数信息
class_info: 类信息
Returns:
无
```
#### 函数 all2md
```
功能:调用,将一个python文件中的函数和类信息提取出来,并保存为markdown文件
Args:
file_path: 字符串,python文件的路径
output_path: 字符串,markdown文件的保存路径
Returns:
无
```
#### 函数 extract_function_docs_from_file
```
从 Python 文件中提取函数的 docstring(注释部分)。
参数:
file_path: 字符串,Python 文件的路径。
返回:
字典,键为函数名,值为函数的 docstring。
```
#### 函数 save_docs_to_markdown
```
将函数的 docstring 保存到 Markdown 文件中。
参数:
docs: 字典,包含函数名和 docstring 的映射。
output_path: 字符串,Markdown 文件的保存路径。
```
#### 函数 pyFun2md
```
将 Python 文件中提取 docstring 并保存为 Markdown 文件。
参数:
source_file: 字符串,源 Python 文件的路径。
output_md: 字符串,输出 Markdown 文件的路径。
```
---
## 类部分:
---
# 文件名称: **init**.py
---
---
## 函数部分:
---
## 类部分:
---
# 0.1.9
测试通过,发布正式版
# 0.1.8
更新内容如下
# 文件名称: common_maths.py
---
---
## 函数部分:
#### 函数 create_dir
```
在指定路径下创建名称为{dir_name}的文件夹
Args:
dir_name: 文件夹名称
path: 要创建文件夹的路径,默认为当前路径
Returns:
无
```
#### 函数 get_max_diff
```
参数:
two_dimensional_array: 二维数组
返回值:
每一列里面最大值和最小值的差值,类型是一个一维数组
功能:
传入一个二维数组,函数返回每一列里面最大值和最小值的差值。
```
#### 函数 remove_outliers_iqr
```
参数:
data: 二维数组
返回值:
去除异常值后的二维数组和有效的行索引,类型是一个元组
功能:
四分位距法去除传入的二维数组中的异常值,注意是对于每一列来说的自己的异常值
```
#### 函数 export_to_csv
```
参数:
array_data: 二维数组,要保存的数据
file_name: 字符串,CSV文件的名称(不包含扩展名)
output_directory: 字符串,保存文件的目录路径,默认为当前目录
返回:
None
功能:
将给定的二维数组保存到指定目录中的CSV文件。如果文件已存在,则追加数据,并在每次写入时添加空行作为分隔符。
```
---
## 类部分:
---
# 文件名称: source2md.py
---
---
## 函数部分:
#### 函数 dir2md
```
Args:
source_dir: 待处理目录
output_dir: 输出目录
single_file: 是否将所有文件放到一个md文件中
```
#### 函数 extract_info
```
功能:
解析python文件,提取函数和类信息
Args:
file_path: 待处理文件路径
Returns:
function_docs: 函数信息
class_info: 类信息
```
#### 函数 all_save_markdown
```
功能:
将提取的函数和类信息保存为markdown文件
Args:
file_path: 待处理文件路径
output_path: 保存路径
function_docs: 函数信息
class_info: 类信息
Returns:
无
```
#### 函数 all2md
```
功能:调用,将一个python文件中的函数和类信息提取出来,并保存为markdown文件
Args:
file_path: 字符串,python文件的路径
output_path: 字符串,markdown文件的保存路径
Returns:
无
```
#### 函数 extract_function_docs_from_file
```
从 Python 文件中提取函数的 docstring(注释部分)。
参数:
file_path: 字符串,Python 文件的路径。
返回:
字典,键为函数名,值为函数的 docstring。
```
#### 函数 save_docs_to_markdown
```
将函数的 docstring 保存到 Markdown 文件中。
参数:
docs: 字典,包含函数名和 docstring 的映射。
output_path: 字符串,Markdown 文件的保存路径。
```
#### 函数 pyFun2md
```
将 Python 文件中提取 docstring 并保存为 Markdown 文件。
参数:
source_file: 字符串,源 Python 文件的路径。
output_md: 字符串,输出 Markdown 文件的路径。
```
---
## 类部分:
---
# 0.1.7
与 0.1.8 相同
# 0.1.6
发布至正式版
# 0.1.5
更新以下内容
注:所有的函数调用方式都是
`myz_tools.文件名称.函数名称(必要的参数)`
各项函数均已通过单元测试
## py2md.py 文件内容
```
主函数,用于从 Python 文件中提取 docstring 并保存为 Markdown 文件。
参数:
source_file: 字符串,源 Python 文件的路径。
output_md: 字符串,输出 Markdown 文件的路径。
```
## common_maths.py 文件内容
### create_dir
```
参数:
dir_name: 文件夹名称
path: 要创建文件夹的路径,默认为当前路径
返回值:
无
功能:
在指定路径下创建名称为{dir_name}的文件夹
```