logger-36 2024.1__py3-none-any.whl → 2025.3__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. logger_36/__init__.py +64 -42
  2. logger_36/api/logger.py +53 -0
  3. logger_36/api/storage.py +53 -0
  4. logger_36/catalog/config/console_rich.py +76 -0
  5. logger_36/catalog/handler/console.py +117 -0
  6. logger_36/catalog/handler/console_rich.py +235 -0
  7. logger_36/catalog/handler/file.py +128 -0
  8. logger_36/catalog/handler/generic.py +228 -0
  9. logger_36/catalog/logger/chronos.py +61 -0
  10. logger_36/catalog/logger/gpu.py +90 -0
  11. logger_36/catalog/logger/memory.py +129 -0
  12. logger_36/catalog/logger/system.py +84 -0
  13. logger_36/config/issue.py +56 -0
  14. logger_36/config/logger.py +103 -0
  15. logger_36/config/memory.py +54 -0
  16. logger_36/config/message.py +66 -0
  17. logger_36/config/system.py +70 -0
  18. logger_36/constant/error.py +70 -0
  19. logger_36/constant/generic.py +58 -0
  20. logger_36/constant/handler.py +58 -0
  21. logger_36/constant/issue.py +58 -0
  22. logger_36/constant/logger.py +67 -0
  23. logger_36/constant/memory.py +58 -0
  24. logger_36/constant/message.py +72 -0
  25. logger_36/constant/record.py +55 -0
  26. logger_36/constant/system.py +60 -0
  27. logger_36/content.py +55 -0
  28. logger_36/exception.py +105 -0
  29. logger_36/gpu.py +53 -0
  30. logger_36/handler.py +209 -0
  31. logger_36/instance/logger.py +55 -0
  32. logger_36/instance/loggers.py +56 -0
  33. logger_36/memory.py +60 -0
  34. logger_36/storage.py +53 -0
  35. logger_36/system.py +53 -0
  36. logger_36/task/format/memory.py +132 -0
  37. logger_36/task/format/message.py +111 -0
  38. logger_36/task/format/rule.py +74 -0
  39. logger_36/task/inspection.py +70 -48
  40. logger_36/task/measure/chronos.py +84 -0
  41. logger_36/task/measure/memory.py +72 -0
  42. logger_36/task/storage.py +127 -46
  43. logger_36/time.py +54 -0
  44. logger_36/type/handler.py +184 -0
  45. logger_36/type/issue.py +91 -0
  46. logger_36/type/logger.py +542 -0
  47. logger_36/type/loggers.py +78 -0
  48. logger_36/version.py +53 -32
  49. logger_36-2025.3.dist-info/METADATA +154 -0
  50. logger_36-2025.3.dist-info/RECORD +52 -0
  51. {logger_36-2024.1.dist-info → logger_36-2025.3.dist-info}/WHEEL +1 -1
  52. logger_36/catalog/gpu.py +0 -56
  53. logger_36/catalog/memory.py +0 -109
  54. logger_36/catalog/system.py +0 -84
  55. logger_36/config.py +0 -48
  56. logger_36/constant.py +0 -52
  57. logger_36/instance.py +0 -34
  58. logger_36/main.py +0 -96
  59. logger_36/measure/chronos.py +0 -55
  60. logger_36/measure/memory.py +0 -50
  61. logger_36/type/console.py +0 -122
  62. logger_36/type/extension.py +0 -122
  63. logger_36/type/file.py +0 -52
  64. logger_36/type/generic.py +0 -115
  65. logger_36-2024.1.dist-info/METADATA +0 -106
  66. logger_36-2024.1.dist-info/RECORD +0 -21
  67. {logger_36-2024.1.dist-info → logger_36-2025.3.dist-info}/top_level.txt +0 -0
@@ -1,106 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: logger-36
3
- Version: 2024.1
4
- Summary: Simple logger using rich_
5
- Home-page: https://src.koda.cnrs.fr/eric.debreuve/logger-36/
6
- Author: Eric Debreuve
7
- Author-email: eric.debreuve@cnrs.fr
8
- License: CeCILL-2.1
9
- Project-URL: Documentation, https://src.koda.cnrs.fr/eric.debreuve/logger-36//-/wikis/home
10
- Project-URL: Source, https://src.koda.cnrs.fr/eric.debreuve/logger-36/
11
- Keywords: log,warning,error
12
- Classifier: Topic :: Software Development
13
- Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)
15
- Classifier: Programming Language :: Python :: 3.10
16
- Classifier: Development Status :: 4 - Beta
17
- Requires-Python: >=3.10
18
- Description-Content-Type: text/x-rst
19
- Requires-Dist: rich
20
-
21
- ..
22
- Copyright CNRS/Inria/UCA
23
- Contributor(s): Eric Debreuve (since 2023)
24
-
25
- eric.debreuve@cnrs.fr
26
-
27
- This software is governed by the CeCILL license under French law and
28
- abiding by the rules of distribution of free software. You can use,
29
- modify and/ or redistribute the software under the terms of the CeCILL
30
- license as circulated by CEA, CNRS and INRIA at the following URL
31
- "http://www.cecill.info".
32
-
33
- As a counterpart to the access to the source code and rights to copy,
34
- modify and redistribute granted by the license, users are provided only
35
- with a limited warranty and the software's author, the holder of the
36
- economic rights, and the successive licensors have only limited
37
- liability.
38
-
39
- In this respect, the user's attention is drawn to the risks associated
40
- with loading, using, modifying and/or developing or reproducing the
41
- software by the user in light of its specific status of free software,
42
- that may mean that it is complicated to manipulate, and that also
43
- therefore means that it is reserved for developers and experienced
44
- professionals having in-depth computer knowledge. Users are therefore
45
- encouraged to load and test the software's suitability as regards their
46
- requirements in conditions enabling the security of their systems and/or
47
- data to be ensured and, more generally, to use and operate it in the
48
- same conditions as regards security.
49
-
50
- The fact that you are presently reading this means that you have had
51
- knowledge of the CeCILL license and that you accept its terms.
52
-
53
- .. |PROJECT_NAME| replace:: logger-36
54
- .. |SHORT_DESCRIPTION| replace:: Simple logger using ``rich_``
55
-
56
- .. |PYPI_NAME_LITERAL| replace:: ``logger-36``
57
- .. |PYPI_PROJECT_URL| replace:: https://pypi.org/project/logger-36/
58
- .. _PYPI_PROJECT_URL: https://pypi.org/project/logger-36/
59
-
60
- .. |DOCUMENTATION_URL| replace:: https://src.koda.cnrs.fr/eric.debreuve/logger-36/-/wikis/home
61
- .. _DOCUMENTATION_URL: https://src.koda.cnrs.fr/eric.debreuve/logger-36/-/wikis/home
62
-
63
-
64
-
65
- ===================================
66
- |PROJECT_NAME|: |SHORT_DESCRIPTION|
67
- ===================================
68
-
69
-
70
-
71
- Installation
72
- ============
73
-
74
- This project is published
75
- on the `Python Package Index (PyPI) <https://pypi.org/>`_
76
- at: |PYPI_PROJECT_URL|_.
77
- It should be installable from Python distribution platforms or Integrated Development Environments (IDEs).
78
- Otherwise, it can be installed from a command console:
79
-
80
- - For all users, after acquiring administrative rights:
81
- - First installation: ``pip install`` |PYPI_NAME_LITERAL|
82
- - Installation update: ``pip install --upgrade`` |PYPI_NAME_LITERAL|
83
- - For the current user (no administrative rights required):
84
- - First installation: ``pip install --user`` |PYPI_NAME_LITERAL|
85
- - Installation update: ``pip install --user --upgrade`` |PYPI_NAME_LITERAL|
86
-
87
-
88
-
89
- Documentation
90
- =============
91
-
92
- The documentation is available at |DOCUMENTATION_URL|_.
93
-
94
-
95
-
96
- Acknowledgments
97
- ===============
98
-
99
- The project is developed with `PyCharm Community <https://www.jetbrains.com/pycharm/>`_.
100
-
101
- The development relies on several open-source packages
102
- (see ``install_requires`` in ``setup.py``, if present; otherwise ``import`` statements should be searched for).
103
-
104
- The code is formatted by `Black <https://github.com/psf/black/>`_, *The Uncompromising Code Formatter*.
105
-
106
- The imports are ordered by `isort <https://github.com/timothycrosley/isort/>`_... *your imports, so you don't have to*.
@@ -1,21 +0,0 @@
1
- logger_36/__init__.py,sha256=ZK4nZo2cycuE3UKjBoqSzH_JrtKiaSTnKBw3tZbzfxk,1875
2
- logger_36/config.py,sha256=ERko-knzRMgKsSXkYBM4A9ec1Yl8PWGub4qODhaQt7Q,2000
3
- logger_36/constant.py,sha256=aFdNXVTN04iwwTk9KwKAO9ttD_LvMFOfHgWHsLMb84Q,2210
4
- logger_36/instance.py,sha256=hb64crFecbnXvAlek8b9WZPc9ip7x9FznrpRoqwNtes,1614
5
- logger_36/main.py,sha256=KZrI33d1tO98jbT7X9hYS_OptvE6r5NGPuToWU5MI64,3437
6
- logger_36/version.py,sha256=7HGe6CUjyMygCnYHQ4opWWAG0kLhqV36brpnaN3cCOs,1575
7
- logger_36/catalog/gpu.py,sha256=CzS4nIUH3iAFczm8SiBfLRFxXYnp7SYysefATEhuCx8,2380
8
- logger_36/catalog/memory.py,sha256=ZC6jBNjpDStvSkwW5jijqcec4KzU3kc5_NNy0MPjWvU,3713
9
- logger_36/catalog/system.py,sha256=VPjz0R6eMLe_xfshC3xB6tC63UfuS6DfD0KkhQY6QRg,2757
10
- logger_36/measure/chronos.py,sha256=absTi1vArUQYxDKdebgjwijT7xunb5uenIj7pT96Maw,2113
11
- logger_36/measure/memory.py,sha256=1f1X-XHd_58LJYJ0Ok5TGIagnf0k5F39IFqWHN2Ojas,1874
12
- logger_36/task/inspection.py,sha256=pey___Q0Kqg-lFoK3OKWfzf8Rm7wm5QulPN_QGIUmww,4127
13
- logger_36/task/storage.py,sha256=gYQkPMAnoW6uihvtO0FlRo6j93DcKtAt7L5PjL-QY7w,3123
14
- logger_36/type/console.py,sha256=jZfXsn6TQNk2nWXgFIHIi__-5bejqmKkVMLhieIDlLc,4862
15
- logger_36/type/extension.py,sha256=RO4hD6YBasKAdNY8QoHzVaW8L5f4pAoyG-r0JvXbuTQ,4812
16
- logger_36/type/file.py,sha256=OLBcnrnQAkIKkVa-qssXMJVdY8kzOmjzQnO9k4NM-sc,2224
17
- logger_36/type/generic.py,sha256=aAf3CIWiNRy0rG8Dn7SQeDQC8w2KPMKvAuIe8i3wxJk,4536
18
- logger_36-2024.1.dist-info/METADATA,sha256=rMmjT0YmhYKvZ1w_Ls71AGGXKKkOwq60KmS89q7malk,4241
19
- logger_36-2024.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
20
- logger_36-2024.1.dist-info/top_level.txt,sha256=sM95BTMWmslEEgR_1pzwZsOeSp8C_QBiu8ImbFr0XLc,10
21
- logger_36-2024.1.dist-info/RECORD,,