halib 0.1.43__tar.gz → 0.1.44__tar.gz

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.
Files changed (38) hide show
  1. {halib-0.1.43/halib.egg-info → halib-0.1.44}/PKG-INFO +2 -2
  2. {halib-0.1.43 → halib-0.1.44}/README.md +1 -1
  3. {halib-0.1.43 → halib-0.1.44}/halib/__init__.py +10 -5
  4. {halib-0.1.43 → halib-0.1.44/halib.egg-info}/PKG-INFO +2 -2
  5. {halib-0.1.43 → halib-0.1.44}/setup.py +1 -1
  6. {halib-0.1.43 → halib-0.1.44}/.gitignore +0 -0
  7. {halib-0.1.43 → halib-0.1.44}/GDriveFolder.txt +0 -0
  8. {halib-0.1.43 → halib-0.1.44}/LICENSE.txt +0 -0
  9. {halib-0.1.43 → halib-0.1.44}/guide_publish_pip.pdf +0 -0
  10. {halib-0.1.43 → halib-0.1.44}/halib/common.py +0 -0
  11. {halib-0.1.43 → halib-0.1.44}/halib/cuda.py +0 -0
  12. {halib-0.1.43 → halib-0.1.44}/halib/dataset.py +0 -0
  13. {halib-0.1.43 → halib-0.1.44}/halib/filetype/__init__.py +0 -0
  14. {halib-0.1.43 → halib-0.1.44}/halib/filetype/csvfile.py +0 -0
  15. {halib-0.1.43 → halib-0.1.44}/halib/filetype/jsonfile.py +0 -0
  16. {halib-0.1.43 → halib-0.1.44}/halib/filetype/textfile.py +0 -0
  17. {halib-0.1.43 → halib-0.1.44}/halib/filetype/videofile.py +0 -0
  18. {halib-0.1.43 → halib-0.1.44}/halib/filetype/yamlfile.py +0 -0
  19. {halib-0.1.43 → halib-0.1.44}/halib/listop.py +0 -0
  20. {halib-0.1.43 → halib-0.1.44}/halib/online/__init__.py +0 -0
  21. {halib-0.1.43 → halib-0.1.44}/halib/online/gdrive.py +0 -0
  22. {halib-0.1.43 → halib-0.1.44}/halib/online/gdrive_mkdir.py +0 -0
  23. {halib-0.1.43 → halib-0.1.44}/halib/online/gdrive_test.py +0 -0
  24. {halib-0.1.43 → halib-0.1.44}/halib/online/projectmake.py +0 -0
  25. {halib-0.1.43 → halib-0.1.44}/halib/plot.py +0 -0
  26. {halib-0.1.43 → halib-0.1.44}/halib/rich_color.py +0 -0
  27. {halib-0.1.43 → halib-0.1.44}/halib/system/__init__.py +0 -0
  28. {halib-0.1.43 → halib-0.1.44}/halib/system/cmd.py +0 -0
  29. {halib-0.1.43 → halib-0.1.44}/halib/system/filesys.py +0 -0
  30. {halib-0.1.43 → halib-0.1.44}/halib/tele_noti.py +0 -0
  31. {halib-0.1.43 → halib-0.1.44}/halib/torchloader.py +0 -0
  32. {halib-0.1.43 → halib-0.1.44}/halib.egg-info/SOURCES.txt +0 -0
  33. {halib-0.1.43 → halib-0.1.44}/halib.egg-info/dependency_links.txt +0 -0
  34. {halib-0.1.43 → halib-0.1.44}/halib.egg-info/requires.txt +0 -0
  35. {halib-0.1.43 → halib-0.1.44}/halib.egg-info/top_level.txt +0 -0
  36. {halib-0.1.43 → halib-0.1.44}/setup.cfg +0 -0
  37. {halib-0.1.43 → halib-0.1.44}/test/test15.py +0 -0
  38. {halib-0.1.43 → halib-0.1.44}/test/test_df_creator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: halib
3
- Version: 0.1.43
3
+ Version: 0.1.44
4
4
  Summary: Small library for common tasks
5
5
  Author: Hoang Van Ha
6
6
  Author-email: hoangvanhauit@gmail.com
@@ -15,7 +15,7 @@ License-File: LICENSE.txt
15
15
 
16
16
  Helper package for coding and automation
17
17
 
18
- **Version 0.1.43**
18
+ **Version 0.1.44**
19
19
  + filter the warning message of `UserWarning: Unable to import Axes3D.`
20
20
 
21
21
  **Version 0.1.42**
@@ -1,6 +1,6 @@
1
1
  Helper package for coding and automation
2
2
 
3
- **Version 0.1.43**
3
+ **Version 0.1.44**
4
4
  + filter the warning message of `UserWarning: Unable to import Axes3D.`
5
5
 
6
6
  **Version 0.1.42**
@@ -1,9 +1,10 @@
1
1
  __all__ = [
2
+ "arrow",
2
3
  "cmd",
3
4
  "console_log",
4
5
  "console",
5
- "console",
6
6
  "ConsoleLog",
7
+ "csvfile",
7
8
  "DictConfig",
8
9
  "filetype",
9
10
  "fs",
@@ -15,18 +16,22 @@ __all__ = [
15
16
  "np",
16
17
  "omegaconf",
17
18
  "OmegaConf",
19
+ "os",
18
20
  "pd",
19
21
  "plt",
20
22
  "pprint",
23
+ "px",
24
+ "rcolor_all_str",
25
+ "rcolor_palette_all",
26
+ "rcolor_palette",
27
+ "rcolor_str",
21
28
  "re",
22
29
  "rprint",
30
+ "sns",
23
31
  "tcuda",
24
32
  "timebudget",
25
33
  "tqdm",
26
- "rcolor_all_str",
27
- "rcolor_palette",
28
- "rcolor_str",
29
- "rcolor_palette_all"
34
+ "warnings",
30
35
  ]
31
36
  import warnings
32
37
  warnings.filterwarnings("ignore", message="Unable to import Axes3D")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: halib
3
- Version: 0.1.43
3
+ Version: 0.1.44
4
4
  Summary: Small library for common tasks
5
5
  Author: Hoang Van Ha
6
6
  Author-email: hoangvanhauit@gmail.com
@@ -15,7 +15,7 @@ License-File: LICENSE.txt
15
15
 
16
16
  Helper package for coding and automation
17
17
 
18
- **Version 0.1.43**
18
+ **Version 0.1.44**
19
19
  + filter the warning message of `UserWarning: Unable to import Axes3D.`
20
20
 
21
21
  **Version 0.1.42**
@@ -8,7 +8,7 @@ with open("requirements.txt") as f:
8
8
 
9
9
  setuptools.setup(
10
10
  name="halib",
11
- version="0.1.43",
11
+ version="0.1.44",
12
12
  author="Hoang Van Ha",
13
13
  author_email="hoangvanhauit@gmail.com",
14
14
  description="Small library for common tasks",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes