halib 0.1.47__py3-none-any.whl → 0.1.49__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,154 +1,156 @@
1
- Metadata-Version: 2.1
2
- Name: halib
3
- Version: 0.1.47
4
- Summary: Small library for common tasks
5
- Author: Hoang Van Ha
6
- Author-email: hoangvanhauit@gmail.com
7
- License: UNKNOWN
8
- Platform: UNKNOWN
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8
13
- Description-Content-Type: text/markdown
14
- License-File: LICENSE.txt
15
- Requires-Dist: arrow
16
- Requires-Dist: click
17
- Requires-Dist: enlighten
18
- Requires-Dist: kaleido (==0.1.*)
19
- Requires-Dist: loguru
20
- Requires-Dist: more-itertools
21
- Requires-Dist: moviepy
22
- Requires-Dist: networkx
23
- Requires-Dist: numpy
24
- Requires-Dist: omegaconf
25
- Requires-Dist: opencv-python
26
- Requires-Dist: pandas
27
- Requires-Dist: Pillow
28
- Requires-Dist: Pyarrow
29
- Requires-Dist: pycurl
30
- Requires-Dist: python-telegram-bot
31
- Requires-Dist: requests
32
- Requires-Dist: rich
33
- Requires-Dist: scikit-learn
34
- Requires-Dist: matplotlib
35
- Requires-Dist: seaborn
36
- Requires-Dist: plotly
37
- Requires-Dist: pygwalker
38
- Requires-Dist: tabulate
39
- Requires-Dist: itables
40
- Requires-Dist: timebudget
41
- Requires-Dist: tqdm
42
- Requires-Dist: tube-dl
43
-
44
- Helper package for coding and automation
45
-
46
- **Version 0.1.47**
47
- + add `pprint_box` to print object/string in a box frame (like in `inspect`)
48
-
49
- **Version 0.1.46**
50
- + filter the warning message of `UserWarning: Unable to import Axes3D.`
51
- + auto_wrap_text for `fn_display_df` to avoid long text in the table
52
-
53
- **Version 0.1.42**
54
- + add <rich_color.py>: add basic color list (for easy usage)
55
-
56
- **Version 0.1.41**
57
- + add <rich_color.py> to display rich color information in <rich> python package (rcolor_str, rcolor_pallet_all, etc.)
58
-
59
- **Version 0.1.40**
60
-
61
- + update <csvfile.py> to use `itables` and `pygwalker` to display dataframe in jupyter notebook.
62
-
63
- **Version 0.1.38**
64
-
65
- + add <torchloader.py> to search for best cfg for torch dataloader (num_workers, batch_size, pin_memory, et.)
66
-
67
- **Version 0.1.37**
68
-
69
- + add <dataset.py> to help split classification dataset into train/val(test)
70
- ---
71
- **Version 0.1.33**
72
-
73
- + add `plot.py` module to plot DL model training history (with columlns: epoch, train_accuracy, val_accuracy, train_loss, val_loss) using `seaborn` and `matplotlib`
74
- ---
75
- **Version 0.1.29**
76
-
77
- + for `tele_noti` module, `kaleido==0.1.*` is required for plotly since `kaleido 0.2.*` is not working (taking for ever to generate image)
78
- ---
79
- **Version 0.1.24**
80
-
81
- + rename `sys` to `system` to avoid conflict with built-in `sys` module
82
- + add `tele_noti` module to send notification to telegram after a specific interval for training progress monitoring
83
- ---
84
- **Version 0.1.22**
85
-
86
- + add `cuda.py` module to check CUDA availability (for both pytorch and tensorflow)
87
- ---
88
- **Version 0.1.21**
89
-
90
- + using `networkx` and `omegaconf` to allow yaml file inheritance and override
91
- ---
92
- **Version 0.1.15**
93
-
94
- + `__init__.py`: add common logging library; also `console_log` decorator to log function (start and end)
95
-
96
- ---
97
-
98
- **Version 0.1.10**
99
-
100
- + filesys: fix typo on "is_exit" to "is_exist"
101
- + gdrive: now support uploading file to folder and return direct link (shareable link)
102
-
103
- **Version 0.1.9**
104
-
105
- + add dependencies requirement.txt
106
-
107
- **Version 0.1.8**
108
-
109
- Fix bugs:
110
-
111
- + [performance] instead of inserting directly new rows into table dataframe, first insert it into in-memory `row_pool_dict`, that fill data in that dict into the actual dataframe when needed.
112
-
113
- ---
114
-
115
- **Version 0.1.7**
116
-
117
- Fix bugs:
118
-
119
- + fix insert into table so slow by allowing insert multiple rows at once
120
-
121
- ---
122
-
123
- **Version 0.1.6**
124
-
125
- New features:
126
-
127
- + add DFCreator for manipulating table (DataFrame) - create, insert row, display, write to file
128
-
129
- ---
130
-
131
- **Version 0.1.5**
132
-
133
- New Features
134
-
135
- + add cmd module
136
- + new package structure
137
-
138
- ---
139
-
140
- **Version 0.1.4**
141
-
142
- New Features
143
-
144
- + add support to create Bitbucket Project from template
145
-
146
- ---
147
-
148
- **Version 0.1.2**
149
-
150
- New Features
151
-
152
- + add support to upload local to google drive.
153
-
154
-
1
+ Metadata-Version: 2.1
2
+ Name: halib
3
+ Version: 0.1.49
4
+ Summary: Small library for common tasks
5
+ Author: Hoang Van Ha
6
+ Author-email: hoangvanhauit@gmail.com
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE.txt
13
+ Requires-Dist: arrow
14
+ Requires-Dist: click
15
+ Requires-Dist: enlighten
16
+ Requires-Dist: kaleido ==0.1.*
17
+ Requires-Dist: loguru
18
+ Requires-Dist: more-itertools
19
+ Requires-Dist: moviepy
20
+ Requires-Dist: networkx
21
+ Requires-Dist: numpy
22
+ Requires-Dist: omegaconf
23
+ Requires-Dist: opencv-python
24
+ Requires-Dist: pandas
25
+ Requires-Dist: Pillow
26
+ Requires-Dist: Pyarrow
27
+ Requires-Dist: pycurl
28
+ Requires-Dist: python-telegram-bot
29
+ Requires-Dist: requests
30
+ Requires-Dist: rich
31
+ Requires-Dist: scikit-learn
32
+ Requires-Dist: matplotlib
33
+ Requires-Dist: seaborn
34
+ Requires-Dist: plotly
35
+ Requires-Dist: pygwalker
36
+ Requires-Dist: tabulate
37
+ Requires-Dist: itables
38
+ Requires-Dist: timebudget
39
+ Requires-Dist: tqdm
40
+ Requires-Dist: tube-dl
41
+ Requires-Dist: wandb
42
+
43
+ Helper package for coding and automation
44
+
45
+ **Version 0.1.49**
46
+
47
+ + add `research` package to help with research tasks, including `benchquery` for benchmarking queries from dataframe
48
+ + add `wandb` module to allow easy sync offline data to Weights & Biases (wandb) and batch clear wandb runs.
49
+
50
+ **Version 0.1.47**
51
+ + add `pprint_box` to print object/string in a box frame (like in `inspect`)
52
+
53
+ **Version 0.1.46**
54
+ + filter the warning message of `UserWarning: Unable to import Axes3D.`
55
+ + auto_wrap_text for `fn_display_df` to avoid long text in the table
56
+
57
+ **Version 0.1.42**
58
+ + add <rich_color.py>: add basic color list (for easy usage)
59
+
60
+ **Version 0.1.41**
61
+ + add <rich_color.py> to display rich color information in <rich> python package (rcolor_str, rcolor_pallet_all, etc.)
62
+
63
+ **Version 0.1.40**
64
+
65
+ + update <csvfile.py> to use `itables` and `pygwalker` to display dataframe in jupyter notebook.
66
+
67
+ **Version 0.1.38**
68
+
69
+ + add <torchloader.py> to search for best cfg for torch dataloader (num_workers, batch_size, pin_memory, et.)
70
+
71
+ **Version 0.1.37**
72
+
73
+ + add <dataset.py> to help split classification dataset into train/val(test)
74
+ ---
75
+ **Version 0.1.33**
76
+
77
+ + add `plot.py` module to plot DL model training history (with columlns: epoch, train_accuracy, val_accuracy, train_loss, val_loss) using `seaborn` and `matplotlib`
78
+ ---
79
+ **Version 0.1.29**
80
+
81
+ + for `tele_noti` module, `kaleido==0.1.*` is required for plotly since `kaleido 0.2.*` is not working (taking for ever to generate image)
82
+ ---
83
+ **Version 0.1.24**
84
+
85
+ + rename `sys` to `system` to avoid conflict with built-in `sys` module
86
+ + add `tele_noti` module to send notification to telegram after a specific interval for training progress monitoring
87
+ ---
88
+ **Version 0.1.22**
89
+
90
+ + add `cuda.py` module to check CUDA availability (for both pytorch and tensorflow)
91
+ ---
92
+ **Version 0.1.21**
93
+
94
+ + using `networkx` and `omegaconf` to allow yaml file inheritance and override
95
+ ---
96
+ **Version 0.1.15**
97
+
98
+ + `__init__.py`: add common logging library; also `console_log` decorator to log function (start and end)
99
+
100
+ ---
101
+
102
+ **Version 0.1.10**
103
+
104
+ + filesys: fix typo on "is_exit" to "is_exist"
105
+ + gdrive: now support uploading file to folder and return direct link (shareable link)
106
+
107
+ **Version 0.1.9**
108
+
109
+ + add dependencies requirement.txt
110
+
111
+ **Version 0.1.8**
112
+
113
+ Fix bugs:
114
+
115
+ + [performance] instead of inserting directly new rows into table dataframe, first insert it into in-memory `row_pool_dict`, that fill data in that dict into the actual dataframe when needed.
116
+
117
+ ---
118
+
119
+ **Version 0.1.7**
120
+
121
+ Fix bugs:
122
+
123
+ + fix insert into table so slow by allowing insert multiple rows at once
124
+
125
+ ---
126
+
127
+ **Version 0.1.6**
128
+
129
+ New features:
130
+
131
+ + add DFCreator for manipulating table (DataFrame) - create, insert row, display, write to file
132
+
133
+ ---
134
+
135
+ **Version 0.1.5**
136
+
137
+ New Features
138
+
139
+ + add cmd module
140
+ + new package structure
141
+
142
+ ---
143
+
144
+ **Version 0.1.4**
145
+
146
+ New Features
147
+
148
+ + add support to create Bitbucket Project from template
149
+
150
+ ---
151
+
152
+ **Version 0.1.2**
153
+
154
+ New Features
155
+
156
+ + add support to upload local to google drive.
@@ -27,14 +27,23 @@ halib/online/gdrive.py,sha256=RmF4y6UPxektkKIctmfT-pKWZsBM9FVUeld6zZmJkp0,7787
27
27
  halib/online/gdrive_mkdir.py,sha256=wSJkQMJCDuS1gxQ2lHQHq_IrJ4xR_SEoPSo9n_2WNFU,1474
28
28
  halib/online/gdrive_test.py,sha256=hMWzz4RqZwETHp4GG4WwVNFfYvFQhp2Boz5t-DqwMo0,1342
29
29
  halib/online/projectmake.py,sha256=Zrs96WgXvO4nIrwxnCOletL4aTBge-EoF0r7hpKO1w8,4034
30
+ halib/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ halib/research/benchquery.py,sha256=FuKnbWQtCEoRRtJAfN-zaN-jPiO_EzsakmTOMiqi7GQ,4626
32
+ halib/research/dataset.py,sha256=QU0Hr5QFb8_XlvnOMgC9QJGIpwXAZ9lDd0RdQi_QRec,6743
33
+ halib/research/plot.py,sha256=-pDUk4z3C_GnyJ5zWmf-mGMdT4gaipVJWzIgcpIPiRk,9448
34
+ halib/research/torchloader.py,sha256=yqUjcSiME6H5W210363HyRUrOi3ISpUFAFkTr1w4DCw,6503
35
+ halib/research/wandb_op.py,sha256=YzLEqME5kIRxi3VvjFkW83wnFrsn92oYeqYuNwtYRkY,4188
30
36
  halib/sys/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
37
  halib/sys/cmd.py,sha256=b2x7JPcNnFjLGheIESVYvqAb-w2UwBM1PAwYxMZ5YjA,228
32
38
  halib/sys/filesys.py,sha256=ERpnELLDKJoTIIKf-AajgkY62nID4qmqmX5TkE95APU,2931
33
39
  halib/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
40
  halib/system/cmd.py,sha256=b2x7JPcNnFjLGheIESVYvqAb-w2UwBM1PAwYxMZ5YjA,228
35
41
  halib/system/filesys.py,sha256=ERpnELLDKJoTIIKf-AajgkY62nID4qmqmX5TkE95APU,2931
36
- halib-0.1.47.dist-info/LICENSE.txt,sha256=qZssdna4aETiR8znYsShUjidu-U4jUT9Q-EWNlZ9yBQ,1100
37
- halib-0.1.47.dist-info/METADATA,sha256=GsAawspTV3gRGBKKkxsSuTG9IlkE2cAIj3GzdlCNE68,3823
38
- halib-0.1.47.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
39
- halib-0.1.47.dist-info/top_level.txt,sha256=7AD6PLaQTreE0Fn44mdZsoHBe_Zdd7GUmjsWPyQ7I-k,6
40
- halib-0.1.47.dist-info/RECORD,,
42
+ halib/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ halib/utils/listop.py,sha256=Vpa8_2fI0wySpB2-8sfTBkyi_A4FhoFVVvFiuvW8N64,339
44
+ halib/utils/tele_noti.py,sha256=-4WXZelCA4W9BroapkRyIdUu9cUVrcJJhegnMs_WpGU,5928
45
+ halib-0.1.49.dist-info/LICENSE.txt,sha256=qZssdna4aETiR8znYsShUjidu-U4jUT9Q-EWNlZ9yBQ,1100
46
+ halib-0.1.49.dist-info/METADATA,sha256=G3MPTsD8-W3o1MptmTpzCvslPuQg6uVISpkSwRoLJqw,4208
47
+ halib-0.1.49.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
48
+ halib-0.1.49.dist-info/top_level.txt,sha256=7AD6PLaQTreE0Fn44mdZsoHBe_Zdd7GUmjsWPyQ7I-k,6
49
+ halib-0.1.49.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: setuptools (70.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5