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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
|
%global _empty_manifest_terminate_build 0
Name: python-generallibrary
Version: 2.9.12
Release: 1
Summary: Random useful code categorized into modules.
License: mit
URL: https://github.com/ManderaGeneral/generallibrary
Source0: https://mirrors.nju.edu.cn/pypi/web/packages/06/87/c53816f40c83a646c0a4a7acd6a7ce072d5cd23c9984adbf78cdddd9e914/generallibrary-2.9.12.tar.gz
BuildArch: noarch
Requires: python3-generalimport
Requires: python3-packaging
Requires: python3-pyperclip
Requires: python3-pytz
Requires: python3-dill
Requires: python3-matplotlib
Requires: python3-networkx
Requires: python3-pandas
Requires: python3-tabulate
Requires: python3-pandas
Requires: python3-tabulate
%description
<details open>
<summary><h1>generallibrary</h1></summary>
Random useful code categorized into modules.
<details>
<summary><h2>Table of Contents</h2></summary>
<pre>
<a href='#generallibrary'>generallibrary</a>
├─ <a href='#Dependency-Diagram-for-ManderaGeneral'>Dependency Diagram for ManderaGeneral</a>
├─ <a href='#Installation-showing-dependencies'>Installation showing dependencies</a>
├─ <a href='#Information'>Information</a>
├─ <a href='#Attributes'>Attributes</a>
├─ <a href='#Contributions'>Contributions</a>
└─ <a href='#Todo'>Todo</a>
</pre>
</details>
<details open>
<summary><h2>Dependency Diagram for ManderaGeneral</h2></summary>
```mermaid
flowchart LR
1([library]) --> 4([packager])
2([file]) --> 4([packager])
1([library]) --> 2([file])
0([import]) --> 1([library])
0([import]) --> 2([file])
1([library]) --> 3([vector])
click 0 "https://github.com/ManderaGeneral/generalimport"
click 1 "https://github.com/ManderaGeneral/generallibrary"
click 2 "https://github.com/ManderaGeneral/generalfile"
click 3 "https://github.com/ManderaGeneral/generalvector"
click 4 "https://github.com/ManderaGeneral/generalpackager"
style 1 fill:#482
```
</details>
<details open>
<summary><h2>Installation showing dependencies</h2></summary>
| `pip install` | `generallibrary` | `generallibrary[table]` | `generallibrary[full]` |
|:-------------------------------------------------------------------|:-------------------|:--------------------------|:-------------------------|
| <a href='https://pypi.org/project/generalimport'>generalimport</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/packaging'>packaging</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pyperclip'>pyperclip</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pytz'>pytz</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/dill'>dill</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/matplotlib'>matplotlib</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/networkx'>networkx</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pandas'>pandas</a> | ❌ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/tabulate'>tabulate</a> | ❌ | ✔️ | ✔️ |
</details>
<details open>
<summary><h2>Information</h2></summary>
| Package | Ver | Latest Release | Python | Platform | Cover |
|:-------------------------------------------------------------------|:---------------------------------------------------|:----------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------|:--------|
| [generallibrary](https://github.com/ManderaGeneral/generallibrary) | [2.9.12](https://pypi.org/project/generallibrary/) | 2022-10-27 16:21 CEST | [3.8](https://www.python.org/downloads/release/python-380/), [3.9](https://www.python.org/downloads/release/python-390/), [3.10](https://www.python.org/downloads/release/python-3100/), [3.11](https://www.python.org/downloads/release/python-3110/) | Windows, Ubuntu | 93.3 % |
</details>
<details>
<summary><h2>Attributes</h2></summary>
<pre>
<a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/__init__.py#L1'>Module: generallibrary</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L202'>Class: AutoInitBases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L10'>Class: BoolStr</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L91'>Class: CallTable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L136'>Method: generate</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L140'>Method: generate_with_args</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L144'>Method: generate_with_funcs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L104'>Method: set_args</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L99'>Method: set_funcs</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L132'>Class: CodeLine</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L150'>Method: get_lines</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L165'>Method: text</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L229'>Class: DataClass</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L222'>Method: field_dict</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L216'>Method: field_values</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L55'>Class: Date</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L77'>Method: get_timezone_obj</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L81'>Method: now</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L7'>Class: DecoContext</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L18'>Method: after</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L15'>Method: before</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L82'>Class: EmptyContext</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L158'>Class: EnvVar</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L174'>Property: value</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L210'>Class: HierarchyStorer</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L20'>Class: Log</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L249'>Method: assert_max_one_missing_name</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L69'>Method: configure_file</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L73'>Method: configure_stream</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L54'>Method: critical</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L50'>Method: debug</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L53'>Method: error</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L51'>Method: info</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L81'>Method: is_root</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L77'>Method: loggers</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L313'>Method: recycle_clear</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L318'>Method: recycle_clear_all</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L52'>Method: warning</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L595'>Class: Markdown</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L721'>Method: add_code_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L686'>Method: add_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L716'>Method: add_list_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L727'>Method: add_pre_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L706'>Method: add_table_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L628'>Method: format_header</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L695'>Method: get_all_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L670'>Method: get_section_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L647'>Method: get_tags_post</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L611'>Method: link</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L664'>Method: render</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L639'>Method: update_collapsible</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L732'>Method: wrap_with_tags</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L556'>Class: NetworkDiagram</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L579'>Method: get_spouse</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L564'>Method: get_spouses</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L18'>Class: ObjInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L18'>Class: ObjInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L205'>Method: add_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/parents.py#L59'>Method: check_if_parent_eligible</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L141'>Method: defined_by_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L285'>Method: disconnect</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L116'>Method: doc</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L52'>Method: file</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L28'>Method: from_base</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L21'>Method: from_builtin</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L36'>Method: from_class</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L51'>Method: from_instance</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L58'>Method: from_module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L296'>Method: get_all</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L225'>Method: get_child</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L403'>Method: get_children</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L107'>Method: get_connections</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L91'>Method: get_definition_line</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L176'>Method: get_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L103'>Method: get_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L251'>Method: get_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L441'>Method: get_nodes</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L313'>Method: get_ordered</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L277'>Method: get_ordered_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L85'>Method: get_origin</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L238'>Method: get_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L422'>Method: get_parents</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L264'>Method: get_sibling</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L458'>Method: get_siblings</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L92'>Method: graph</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L61'>Method: identifier</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L17'>Method: internal</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L34'>Method: is_class</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L28'>Method: is_function</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L50'>Method: is_instance</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L59'>Method: is_method</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L22'>Method: is_module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L44'>Method: is_property</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L125'>Method: mermaid</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L43'>Method: module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L75'>Method: print_link_to_obj</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L26'>Method: private</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L34'>Method: protected</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L9'>Method: public</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L214'>Method: remove_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L189'>Method: set_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L369'>Method: set_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/parents.py#L7'>Method: spawn_parents</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L8'>Method: type</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L508'>Method: view</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L385'>Class: Operators</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L396'>Method: deco_define_comparisons</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L225'>Class: PythonVersion</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L231'>Property: version</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L216'>Class: Recycle</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L249'>Method: assert_max_one_missing_name</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L313'>Method: recycle_clear</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L318'>Method: recycle_clear_all</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L46'>Class: RedirectStdout</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L22'>Class: SigInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L265'>Method: call</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L48'>Property: callableObject</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L52'>Method: class_from_callable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L178'>Property: defaults</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L220'>Method: getIndexFromName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L146'>Property: leadingArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L126'>Property: names</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L136'>Property: namesRequired</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L131'>Property: namesWithoutDefaults</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L141'>Property: namesWithoutPacked</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L227'>Property: packedArgs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L164'>Property: packedArgsName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L232'>Property: packedKwargs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L171'>Property: packedKwargsName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L85'>Property: parameters</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L204'>Property: positionalArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L188'>Property: positionalOnlyArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L197'>Property: positionalOnlyOppositeArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L212'>Property: positionalOppositeArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L75'>Property: positional_extra</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L237'>Property: unpackedArgs</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L248'>Property: unpackedKwargs</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L5'>Class: SortedList</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L32'>Method: add</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L49'>Method: remove</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L345'>Class: Storable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L355'>Method: copy_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L350'>Method: load_node</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L347'>Method: save_node</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L20'>Class: Timer</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L28'>Method: output_time</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L33'>Method: time</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L485'>Class: TreeDiagram</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L508'>Method: view</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L15'>Class: Ver</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L29'>Method: bump</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L213'>Class: VerInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L177'>Property: caseSensitive</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L191'>Property: pathDelimiter</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L205'>Property: pathRootHasColon</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L198'>Property: pathRootIsDelimiter</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L184'>Property: positionalArgument</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L139'>Property: pythonAlpha</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L144'>Property: pythonBeta</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L149'>Property: pythonCandidate</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L154'>Property: pythonFinal</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L108'>Property: pythonMajor</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L118'>Property: pythonMicro</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L113'>Property: pythonMinor</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L159'>Property: pythonReleaseKeyword</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L123'>Property: pythonReleaseLevel</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L129'>Property: pythonSerial</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L134'>Property: pythonSerialString</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L164'>Property: pythonString</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L169'>Property: pythonVersion</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L200'>Function: auto_deco</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L120'>Function: cache_clear</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L38'>Function: calculate</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L134'>Function: call_base_hooks</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L38'>Function: ceil</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L47'>Function: clamp</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L15'>Class: classproperty</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L114'>Function: clipboard_copy</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L127'>Function: clipboard_get</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L291'>Function: combine</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L16'>Function: comma_and_and</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L20'>Function: comma_and_or</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L129'>Function: confineTo</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L171'>Function: debug</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L337'>Function: deco_bound_defaults</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L15'>Function: deco_cache</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L303'>Function: deco_cast_parameters</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L321'>Function: deco_cast_to_self</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L357'>Function: deco_extend</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L280'>Function: deco_optional_suppress</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L368'>Function: deco_propagate_while</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L418'>Function: deco_require</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L61'>Function: defaults</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L91'>Function: depth</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L334'>Function: dict_insert</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L153'>Function: dir_appearance_order</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L104'>Function: doubleRectify</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/serialize.py#L24'>Function: dumps</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L261'>Function: exclusive</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L122'>Function: extend_list_in_dict</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L319'>Function: flatten</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L34'>Function: floor</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L167'>Function: get</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L164'>Function: getBaseClassNames</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L132'>Function: getBaseClasses</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L125'>Function: get_attrs_from_bases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L248'>Function: get_definition_line</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L146'>Function: get_free_index</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L182'>Function: get_index</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L78'>Function: get_items</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L197'>Function: get_launch_options</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L203'>Function: get_origin</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L228'>Function: get_rows</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L70'>Function: get_values</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/object.py#L8'>Function: getsize</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L176'>Function: hasMethod</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L87'>Function: hook</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L266'>Function: inclusive</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L149'>Function: initBases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L78'>Function: inrange</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/object.py#L34'>Function: interconnect</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L86'>Function: is_iterable</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L106'>Function: iter_first_value</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L117'>Function: join_with_str</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/serialize.py#L30'>Function: loads</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L46'>Function: match</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L314'>Function: pivot_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L25'>Function: plur_sing</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L224'>Function: print_link</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L239'>Function: print_link_to_obj</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L92'>Function: rectify</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L194'>Function: remove</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L282'>Function: remove_duplicates</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L36'>Function: replace</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L42'>Function: round_</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L61'>Function: sign</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L47'>Function: sleep</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L304'>Function: split_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L5'>Function: strToDynamicType</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L326'>Function: subtract_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L323'>Function: terminal</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L104'>Function: typeChecker</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L271'>Function: unique_obj_in_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L134'>Function: update_dict_in_dict</a>
└─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L6'>Function: wrapper_transfer</a>
</pre>
</details>
<details open>
<summary><h2>Contributions</h2></summary>
Issue-creation and discussions are most welcome!
Pull requests are not wanted, please discuss with me before investing any time
</details>
<details>
<summary><h2>Todo</h2></summary>
| Module | Message |
|:------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L1'>code.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L43'>Make Log use __name__ from previous frame so it doesn't write to root.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L1'>code.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L70'>Use another delimiter than , in Log and make sure it can handle quotes.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L1'>diagram.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L499'>Shared dict for NetworkDiagram, resolve logic with multiple parents.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/test/test_time.py#L1'>test_time.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/test/test_time.py#L61'>Fix time casting to wrong day when past midnight.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L1'>objinfo.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L23'>Recycle ObjInfo.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L1'>versions.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L17'>Use Ver in each part of VerInfo.</a> |
</details>
<sup>
Generated 2022-10-27 16:21 CEST for commit <a href='https://github.com/ManderaGeneral/generallibrary/commit/a7989582'>a7989582</a>.
</sup>
</details>
%package -n python3-generallibrary
Summary: Random useful code categorized into modules.
Provides: python-generallibrary
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
%description -n python3-generallibrary
<details open>
<summary><h1>generallibrary</h1></summary>
Random useful code categorized into modules.
<details>
<summary><h2>Table of Contents</h2></summary>
<pre>
<a href='#generallibrary'>generallibrary</a>
├─ <a href='#Dependency-Diagram-for-ManderaGeneral'>Dependency Diagram for ManderaGeneral</a>
├─ <a href='#Installation-showing-dependencies'>Installation showing dependencies</a>
├─ <a href='#Information'>Information</a>
├─ <a href='#Attributes'>Attributes</a>
├─ <a href='#Contributions'>Contributions</a>
└─ <a href='#Todo'>Todo</a>
</pre>
</details>
<details open>
<summary><h2>Dependency Diagram for ManderaGeneral</h2></summary>
```mermaid
flowchart LR
1([library]) --> 4([packager])
2([file]) --> 4([packager])
1([library]) --> 2([file])
0([import]) --> 1([library])
0([import]) --> 2([file])
1([library]) --> 3([vector])
click 0 "https://github.com/ManderaGeneral/generalimport"
click 1 "https://github.com/ManderaGeneral/generallibrary"
click 2 "https://github.com/ManderaGeneral/generalfile"
click 3 "https://github.com/ManderaGeneral/generalvector"
click 4 "https://github.com/ManderaGeneral/generalpackager"
style 1 fill:#482
```
</details>
<details open>
<summary><h2>Installation showing dependencies</h2></summary>
| `pip install` | `generallibrary` | `generallibrary[table]` | `generallibrary[full]` |
|:-------------------------------------------------------------------|:-------------------|:--------------------------|:-------------------------|
| <a href='https://pypi.org/project/generalimport'>generalimport</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/packaging'>packaging</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pyperclip'>pyperclip</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pytz'>pytz</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/dill'>dill</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/matplotlib'>matplotlib</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/networkx'>networkx</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pandas'>pandas</a> | ❌ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/tabulate'>tabulate</a> | ❌ | ✔️ | ✔️ |
</details>
<details open>
<summary><h2>Information</h2></summary>
| Package | Ver | Latest Release | Python | Platform | Cover |
|:-------------------------------------------------------------------|:---------------------------------------------------|:----------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------|:--------|
| [generallibrary](https://github.com/ManderaGeneral/generallibrary) | [2.9.12](https://pypi.org/project/generallibrary/) | 2022-10-27 16:21 CEST | [3.8](https://www.python.org/downloads/release/python-380/), [3.9](https://www.python.org/downloads/release/python-390/), [3.10](https://www.python.org/downloads/release/python-3100/), [3.11](https://www.python.org/downloads/release/python-3110/) | Windows, Ubuntu | 93.3 % |
</details>
<details>
<summary><h2>Attributes</h2></summary>
<pre>
<a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/__init__.py#L1'>Module: generallibrary</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L202'>Class: AutoInitBases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L10'>Class: BoolStr</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L91'>Class: CallTable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L136'>Method: generate</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L140'>Method: generate_with_args</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L144'>Method: generate_with_funcs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L104'>Method: set_args</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L99'>Method: set_funcs</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L132'>Class: CodeLine</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L150'>Method: get_lines</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L165'>Method: text</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L229'>Class: DataClass</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L222'>Method: field_dict</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L216'>Method: field_values</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L55'>Class: Date</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L77'>Method: get_timezone_obj</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L81'>Method: now</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L7'>Class: DecoContext</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L18'>Method: after</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L15'>Method: before</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L82'>Class: EmptyContext</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L158'>Class: EnvVar</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L174'>Property: value</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L210'>Class: HierarchyStorer</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L20'>Class: Log</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L249'>Method: assert_max_one_missing_name</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L69'>Method: configure_file</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L73'>Method: configure_stream</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L54'>Method: critical</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L50'>Method: debug</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L53'>Method: error</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L51'>Method: info</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L81'>Method: is_root</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L77'>Method: loggers</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L313'>Method: recycle_clear</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L318'>Method: recycle_clear_all</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L52'>Method: warning</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L595'>Class: Markdown</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L721'>Method: add_code_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L686'>Method: add_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L716'>Method: add_list_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L727'>Method: add_pre_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L706'>Method: add_table_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L628'>Method: format_header</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L695'>Method: get_all_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L670'>Method: get_section_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L647'>Method: get_tags_post</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L611'>Method: link</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L664'>Method: render</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L639'>Method: update_collapsible</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L732'>Method: wrap_with_tags</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L556'>Class: NetworkDiagram</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L579'>Method: get_spouse</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L564'>Method: get_spouses</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L18'>Class: ObjInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L18'>Class: ObjInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L205'>Method: add_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/parents.py#L59'>Method: check_if_parent_eligible</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L141'>Method: defined_by_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L285'>Method: disconnect</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L116'>Method: doc</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L52'>Method: file</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L28'>Method: from_base</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L21'>Method: from_builtin</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L36'>Method: from_class</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L51'>Method: from_instance</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L58'>Method: from_module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L296'>Method: get_all</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L225'>Method: get_child</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L403'>Method: get_children</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L107'>Method: get_connections</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L91'>Method: get_definition_line</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L176'>Method: get_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L103'>Method: get_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L251'>Method: get_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L441'>Method: get_nodes</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L313'>Method: get_ordered</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L277'>Method: get_ordered_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L85'>Method: get_origin</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L238'>Method: get_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L422'>Method: get_parents</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L264'>Method: get_sibling</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L458'>Method: get_siblings</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L92'>Method: graph</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L61'>Method: identifier</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L17'>Method: internal</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L34'>Method: is_class</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L28'>Method: is_function</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L50'>Method: is_instance</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L59'>Method: is_method</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L22'>Method: is_module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L44'>Method: is_property</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L125'>Method: mermaid</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L43'>Method: module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L75'>Method: print_link_to_obj</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L26'>Method: private</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L34'>Method: protected</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L9'>Method: public</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L214'>Method: remove_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L189'>Method: set_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L369'>Method: set_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/parents.py#L7'>Method: spawn_parents</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L8'>Method: type</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L508'>Method: view</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L385'>Class: Operators</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L396'>Method: deco_define_comparisons</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L225'>Class: PythonVersion</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L231'>Property: version</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L216'>Class: Recycle</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L249'>Method: assert_max_one_missing_name</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L313'>Method: recycle_clear</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L318'>Method: recycle_clear_all</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L46'>Class: RedirectStdout</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L22'>Class: SigInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L265'>Method: call</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L48'>Property: callableObject</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L52'>Method: class_from_callable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L178'>Property: defaults</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L220'>Method: getIndexFromName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L146'>Property: leadingArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L126'>Property: names</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L136'>Property: namesRequired</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L131'>Property: namesWithoutDefaults</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L141'>Property: namesWithoutPacked</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L227'>Property: packedArgs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L164'>Property: packedArgsName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L232'>Property: packedKwargs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L171'>Property: packedKwargsName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L85'>Property: parameters</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L204'>Property: positionalArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L188'>Property: positionalOnlyArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L197'>Property: positionalOnlyOppositeArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L212'>Property: positionalOppositeArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L75'>Property: positional_extra</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L237'>Property: unpackedArgs</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L248'>Property: unpackedKwargs</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L5'>Class: SortedList</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L32'>Method: add</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L49'>Method: remove</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L345'>Class: Storable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L355'>Method: copy_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L350'>Method: load_node</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L347'>Method: save_node</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L20'>Class: Timer</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L28'>Method: output_time</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L33'>Method: time</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L485'>Class: TreeDiagram</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L508'>Method: view</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L15'>Class: Ver</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L29'>Method: bump</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L213'>Class: VerInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L177'>Property: caseSensitive</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L191'>Property: pathDelimiter</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L205'>Property: pathRootHasColon</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L198'>Property: pathRootIsDelimiter</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L184'>Property: positionalArgument</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L139'>Property: pythonAlpha</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L144'>Property: pythonBeta</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L149'>Property: pythonCandidate</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L154'>Property: pythonFinal</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L108'>Property: pythonMajor</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L118'>Property: pythonMicro</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L113'>Property: pythonMinor</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L159'>Property: pythonReleaseKeyword</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L123'>Property: pythonReleaseLevel</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L129'>Property: pythonSerial</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L134'>Property: pythonSerialString</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L164'>Property: pythonString</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L169'>Property: pythonVersion</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L200'>Function: auto_deco</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L120'>Function: cache_clear</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L38'>Function: calculate</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L134'>Function: call_base_hooks</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L38'>Function: ceil</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L47'>Function: clamp</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L15'>Class: classproperty</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L114'>Function: clipboard_copy</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L127'>Function: clipboard_get</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L291'>Function: combine</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L16'>Function: comma_and_and</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L20'>Function: comma_and_or</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L129'>Function: confineTo</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L171'>Function: debug</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L337'>Function: deco_bound_defaults</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L15'>Function: deco_cache</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L303'>Function: deco_cast_parameters</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L321'>Function: deco_cast_to_self</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L357'>Function: deco_extend</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L280'>Function: deco_optional_suppress</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L368'>Function: deco_propagate_while</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L418'>Function: deco_require</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L61'>Function: defaults</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L91'>Function: depth</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L334'>Function: dict_insert</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L153'>Function: dir_appearance_order</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L104'>Function: doubleRectify</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/serialize.py#L24'>Function: dumps</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L261'>Function: exclusive</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L122'>Function: extend_list_in_dict</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L319'>Function: flatten</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L34'>Function: floor</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L167'>Function: get</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L164'>Function: getBaseClassNames</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L132'>Function: getBaseClasses</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L125'>Function: get_attrs_from_bases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L248'>Function: get_definition_line</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L146'>Function: get_free_index</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L182'>Function: get_index</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L78'>Function: get_items</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L197'>Function: get_launch_options</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L203'>Function: get_origin</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L228'>Function: get_rows</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L70'>Function: get_values</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/object.py#L8'>Function: getsize</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L176'>Function: hasMethod</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L87'>Function: hook</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L266'>Function: inclusive</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L149'>Function: initBases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L78'>Function: inrange</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/object.py#L34'>Function: interconnect</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L86'>Function: is_iterable</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L106'>Function: iter_first_value</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L117'>Function: join_with_str</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/serialize.py#L30'>Function: loads</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L46'>Function: match</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L314'>Function: pivot_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L25'>Function: plur_sing</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L224'>Function: print_link</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L239'>Function: print_link_to_obj</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L92'>Function: rectify</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L194'>Function: remove</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L282'>Function: remove_duplicates</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L36'>Function: replace</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L42'>Function: round_</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L61'>Function: sign</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L47'>Function: sleep</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L304'>Function: split_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L5'>Function: strToDynamicType</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L326'>Function: subtract_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L323'>Function: terminal</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L104'>Function: typeChecker</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L271'>Function: unique_obj_in_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L134'>Function: update_dict_in_dict</a>
└─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L6'>Function: wrapper_transfer</a>
</pre>
</details>
<details open>
<summary><h2>Contributions</h2></summary>
Issue-creation and discussions are most welcome!
Pull requests are not wanted, please discuss with me before investing any time
</details>
<details>
<summary><h2>Todo</h2></summary>
| Module | Message |
|:------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L1'>code.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L43'>Make Log use __name__ from previous frame so it doesn't write to root.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L1'>code.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L70'>Use another delimiter than , in Log and make sure it can handle quotes.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L1'>diagram.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L499'>Shared dict for NetworkDiagram, resolve logic with multiple parents.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/test/test_time.py#L1'>test_time.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/test/test_time.py#L61'>Fix time casting to wrong day when past midnight.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L1'>objinfo.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L23'>Recycle ObjInfo.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L1'>versions.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L17'>Use Ver in each part of VerInfo.</a> |
</details>
<sup>
Generated 2022-10-27 16:21 CEST for commit <a href='https://github.com/ManderaGeneral/generallibrary/commit/a7989582'>a7989582</a>.
</sup>
</details>
%package help
Summary: Development documents and examples for generallibrary
Provides: python3-generallibrary-doc
%description help
<details open>
<summary><h1>generallibrary</h1></summary>
Random useful code categorized into modules.
<details>
<summary><h2>Table of Contents</h2></summary>
<pre>
<a href='#generallibrary'>generallibrary</a>
├─ <a href='#Dependency-Diagram-for-ManderaGeneral'>Dependency Diagram for ManderaGeneral</a>
├─ <a href='#Installation-showing-dependencies'>Installation showing dependencies</a>
├─ <a href='#Information'>Information</a>
├─ <a href='#Attributes'>Attributes</a>
├─ <a href='#Contributions'>Contributions</a>
└─ <a href='#Todo'>Todo</a>
</pre>
</details>
<details open>
<summary><h2>Dependency Diagram for ManderaGeneral</h2></summary>
```mermaid
flowchart LR
1([library]) --> 4([packager])
2([file]) --> 4([packager])
1([library]) --> 2([file])
0([import]) --> 1([library])
0([import]) --> 2([file])
1([library]) --> 3([vector])
click 0 "https://github.com/ManderaGeneral/generalimport"
click 1 "https://github.com/ManderaGeneral/generallibrary"
click 2 "https://github.com/ManderaGeneral/generalfile"
click 3 "https://github.com/ManderaGeneral/generalvector"
click 4 "https://github.com/ManderaGeneral/generalpackager"
style 1 fill:#482
```
</details>
<details open>
<summary><h2>Installation showing dependencies</h2></summary>
| `pip install` | `generallibrary` | `generallibrary[table]` | `generallibrary[full]` |
|:-------------------------------------------------------------------|:-------------------|:--------------------------|:-------------------------|
| <a href='https://pypi.org/project/generalimport'>generalimport</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/packaging'>packaging</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pyperclip'>pyperclip</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pytz'>pytz</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/dill'>dill</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/matplotlib'>matplotlib</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/networkx'>networkx</a> | ✔️ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/pandas'>pandas</a> | ❌ | ✔️ | ✔️ |
| <a href='https://pypi.org/project/tabulate'>tabulate</a> | ❌ | ✔️ | ✔️ |
</details>
<details open>
<summary><h2>Information</h2></summary>
| Package | Ver | Latest Release | Python | Platform | Cover |
|:-------------------------------------------------------------------|:---------------------------------------------------|:----------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------|:--------|
| [generallibrary](https://github.com/ManderaGeneral/generallibrary) | [2.9.12](https://pypi.org/project/generallibrary/) | 2022-10-27 16:21 CEST | [3.8](https://www.python.org/downloads/release/python-380/), [3.9](https://www.python.org/downloads/release/python-390/), [3.10](https://www.python.org/downloads/release/python-3100/), [3.11](https://www.python.org/downloads/release/python-3110/) | Windows, Ubuntu | 93.3 % |
</details>
<details>
<summary><h2>Attributes</h2></summary>
<pre>
<a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/__init__.py#L1'>Module: generallibrary</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L202'>Class: AutoInitBases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L10'>Class: BoolStr</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L91'>Class: CallTable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L136'>Method: generate</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L140'>Method: generate_with_args</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L144'>Method: generate_with_funcs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L104'>Method: set_args</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L99'>Method: set_funcs</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L132'>Class: CodeLine</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L150'>Method: get_lines</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L165'>Method: text</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L229'>Class: DataClass</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L222'>Method: field_dict</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L216'>Method: field_values</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L55'>Class: Date</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L77'>Method: get_timezone_obj</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L81'>Method: now</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L7'>Class: DecoContext</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L18'>Method: after</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L15'>Method: before</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L82'>Class: EmptyContext</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L158'>Class: EnvVar</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L174'>Property: value</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L210'>Class: HierarchyStorer</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L20'>Class: Log</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L249'>Method: assert_max_one_missing_name</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L69'>Method: configure_file</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L73'>Method: configure_stream</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L54'>Method: critical</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L50'>Method: debug</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L53'>Method: error</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L51'>Method: info</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L81'>Method: is_root</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L77'>Method: loggers</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L313'>Method: recycle_clear</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L318'>Method: recycle_clear_all</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L52'>Method: warning</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L595'>Class: Markdown</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L721'>Method: add_code_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L686'>Method: add_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L716'>Method: add_list_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L727'>Method: add_pre_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L706'>Method: add_table_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L628'>Method: format_header</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L695'>Method: get_all_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L670'>Method: get_section_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L647'>Method: get_tags_post</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L611'>Method: link</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L664'>Method: render</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L639'>Method: update_collapsible</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L732'>Method: wrap_with_tags</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L556'>Class: NetworkDiagram</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L579'>Method: get_spouse</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L564'>Method: get_spouses</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L18'>Class: ObjInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L18'>Class: ObjInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L205'>Method: add_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/parents.py#L59'>Method: check_if_parent_eligible</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L141'>Method: defined_by_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L285'>Method: disconnect</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L116'>Method: doc</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L52'>Method: file</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L28'>Method: from_base</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L21'>Method: from_builtin</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L36'>Method: from_class</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L51'>Method: from_instance</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/origin.py#L58'>Method: from_module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L296'>Method: get_all</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L225'>Method: get_child</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L403'>Method: get_children</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L107'>Method: get_connections</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L91'>Method: get_definition_line</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L176'>Method: get_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L103'>Method: get_lines</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L251'>Method: get_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L441'>Method: get_nodes</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L313'>Method: get_ordered</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L277'>Method: get_ordered_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L85'>Method: get_origin</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L238'>Method: get_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L422'>Method: get_parents</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L264'>Method: get_sibling</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L458'>Method: get_siblings</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L92'>Method: graph</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L61'>Method: identifier</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L17'>Method: internal</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L34'>Method: is_class</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L28'>Method: is_function</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L50'>Method: is_instance</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L59'>Method: is_method</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L22'>Method: is_module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L44'>Method: is_property</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L125'>Method: mermaid</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L43'>Method: module</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L75'>Method: print_link_to_obj</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L26'>Method: private</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L34'>Method: protected</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/properties.py#L9'>Method: public</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L214'>Method: remove_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L189'>Method: set_index</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L369'>Method: set_parent</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/parents.py#L7'>Method: spawn_parents</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/type.py#L8'>Method: type</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L508'>Method: view</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L385'>Class: Operators</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L396'>Method: deco_define_comparisons</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L225'>Class: PythonVersion</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L231'>Property: version</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L216'>Class: Recycle</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L249'>Method: assert_max_one_missing_name</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L313'>Method: recycle_clear</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L318'>Method: recycle_clear_all</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/context.py#L46'>Class: RedirectStdout</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L22'>Class: SigInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L265'>Method: call</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L48'>Property: callableObject</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L52'>Method: class_from_callable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L178'>Property: defaults</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L220'>Method: getIndexFromName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L146'>Property: leadingArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L126'>Property: names</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L136'>Property: namesRequired</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L131'>Property: namesWithoutDefaults</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L141'>Property: namesWithoutPacked</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L227'>Property: packedArgs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L164'>Property: packedArgsName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L232'>Property: packedKwargs</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L171'>Property: packedKwargsName</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L85'>Property: parameters</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L204'>Property: positionalArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L188'>Property: positionalOnlyArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L197'>Property: positionalOnlyOppositeArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L212'>Property: positionalOppositeArgNames</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L75'>Property: positional_extra</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L237'>Property: unpackedArgs</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L248'>Property: unpackedKwargs</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L5'>Class: SortedList</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L32'>Method: add</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L49'>Method: remove</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L345'>Class: Storable</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L355'>Method: copy_node</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L350'>Method: load_node</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L347'>Method: save_node</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L20'>Class: Timer</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L28'>Method: output_time</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L33'>Method: time</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L485'>Class: TreeDiagram</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L508'>Method: view</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L15'>Class: Ver</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L29'>Method: bump</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L213'>Class: VerInfo</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L177'>Property: caseSensitive</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L191'>Property: pathDelimiter</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L205'>Property: pathRootHasColon</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L198'>Property: pathRootIsDelimiter</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L184'>Property: positionalArgument</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L139'>Property: pythonAlpha</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L144'>Property: pythonBeta</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L149'>Property: pythonCandidate</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L154'>Property: pythonFinal</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L108'>Property: pythonMajor</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L118'>Property: pythonMicro</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L113'>Property: pythonMinor</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L159'>Property: pythonReleaseKeyword</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L123'>Property: pythonReleaseLevel</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L129'>Property: pythonSerial</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L134'>Property: pythonSerialString</a>
│ ├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L164'>Property: pythonString</a>
│ └─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L169'>Property: pythonVersion</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L200'>Function: auto_deco</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L120'>Function: cache_clear</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L38'>Function: calculate</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L134'>Function: call_base_hooks</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L38'>Function: ceil</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L47'>Function: clamp</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L15'>Class: classproperty</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L114'>Function: clipboard_copy</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L127'>Function: clipboard_get</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L291'>Function: combine</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L16'>Function: comma_and_and</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L20'>Function: comma_and_or</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L129'>Function: confineTo</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L171'>Function: debug</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L337'>Function: deco_bound_defaults</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L15'>Function: deco_cache</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L303'>Function: deco_cast_parameters</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L321'>Function: deco_cast_to_self</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L357'>Function: deco_extend</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L280'>Function: deco_optional_suppress</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L368'>Function: deco_propagate_while</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L418'>Function: deco_require</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L61'>Function: defaults</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L91'>Function: depth</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L334'>Function: dict_insert</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L153'>Function: dir_appearance_order</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L104'>Function: doubleRectify</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/serialize.py#L24'>Function: dumps</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L261'>Function: exclusive</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L122'>Function: extend_list_in_dict</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L319'>Function: flatten</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L34'>Function: floor</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L167'>Function: get</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L164'>Function: getBaseClassNames</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L132'>Function: getBaseClasses</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L125'>Function: get_attrs_from_bases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L248'>Function: get_definition_line</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L146'>Function: get_free_index</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L182'>Function: get_index</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L78'>Function: get_items</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L197'>Function: get_launch_options</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L203'>Function: get_origin</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L228'>Function: get_rows</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L70'>Function: get_values</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/object.py#L8'>Function: getsize</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L176'>Function: hasMethod</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L87'>Function: hook</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L266'>Function: inclusive</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L149'>Function: initBases</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L78'>Function: inrange</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/object.py#L34'>Function: interconnect</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L86'>Function: is_iterable</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L106'>Function: iter_first_value</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L117'>Function: join_with_str</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/serialize.py#L30'>Function: loads</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L46'>Function: match</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L314'>Function: pivot_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L25'>Function: plur_sing</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L224'>Function: print_link</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L239'>Function: print_link_to_obj</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L92'>Function: rectify</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L194'>Function: remove</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L282'>Function: remove_duplicates</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/text.py#L36'>Function: replace</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L42'>Function: round_</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/values.py#L61'>Function: sign</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/time.py#L47'>Function: sleep</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L304'>Function: split_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L5'>Function: strToDynamicType</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L326'>Function: subtract_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/functions.py#L323'>Function: terminal</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/types.py#L104'>Function: typeChecker</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L271'>Function: unique_obj_in_list</a>
├─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/iterables.py#L134'>Function: update_dict_in_dict</a>
└─ <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/decorators.py#L6'>Function: wrapper_transfer</a>
</pre>
</details>
<details open>
<summary><h2>Contributions</h2></summary>
Issue-creation and discussions are most welcome!
Pull requests are not wanted, please discuss with me before investing any time
</details>
<details>
<summary><h2>Todo</h2></summary>
| Module | Message |
|:------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L1'>code.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L43'>Make Log use __name__ from previous frame so it doesn't write to root.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L1'>code.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/code.py#L70'>Use another delimiter than , in Log and make sure it can handle quotes.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L1'>diagram.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/diagram.py#L499'>Shared dict for NetworkDiagram, resolve logic with multiple parents.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/test/test_time.py#L1'>test_time.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/test/test_time.py#L61'>Fix time casting to wrong day when past midnight.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L1'>objinfo.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/objinfo/objinfo.py#L23'>Recycle ObjInfo.</a> |
| <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L1'>versions.py</a> | <a href='https://github.com/ManderaGeneral/generallibrary/blob/a7989582/generallibrary/versions.py#L17'>Use Ver in each part of VerInfo.</a> |
</details>
<sup>
Generated 2022-10-27 16:21 CEST for commit <a href='https://github.com/ManderaGeneral/generallibrary/commit/a7989582'>a7989582</a>.
</sup>
</details>
%prep
%autosetup -n generallibrary-2.9.12
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-generallibrary -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 2.9.12-1
- Package Spec generated
|