bear-utils 0.7.11__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.
- bear_utils/__init__.py +13 -0
- bear_utils/ai/__init__.py +30 -0
- bear_utils/ai/ai_helpers/__init__.py +130 -0
- bear_utils/ai/ai_helpers/_common.py +19 -0
- bear_utils/ai/ai_helpers/_config.py +24 -0
- bear_utils/ai/ai_helpers/_parsers.py +188 -0
- bear_utils/ai/ai_helpers/_types.py +20 -0
- bear_utils/cache/__init__.py +119 -0
- bear_utils/cli/__init__.py +4 -0
- bear_utils/cli/commands.py +59 -0
- bear_utils/cli/prompt_helpers.py +166 -0
- bear_utils/cli/shell/__init__.py +0 -0
- bear_utils/cli/shell/_base_command.py +74 -0
- bear_utils/cli/shell/_base_shell.py +390 -0
- bear_utils/cli/shell/_common.py +19 -0
- bear_utils/config/__init__.py +11 -0
- bear_utils/config/config_manager.py +92 -0
- bear_utils/config/dir_manager.py +64 -0
- bear_utils/config/settings_manager.py +232 -0
- bear_utils/constants/__init__.py +16 -0
- bear_utils/constants/_exceptions.py +3 -0
- bear_utils/constants/_lazy_typing.py +15 -0
- bear_utils/constants/date_related.py +36 -0
- bear_utils/constants/time_related.py +22 -0
- bear_utils/database/__init__.py +6 -0
- bear_utils/database/_db_manager.py +104 -0
- bear_utils/events/__init__.py +16 -0
- bear_utils/events/events_class.py +52 -0
- bear_utils/events/events_module.py +65 -0
- bear_utils/extras/__init__.py +17 -0
- bear_utils/extras/_async_helpers.py +15 -0
- bear_utils/extras/_tools.py +178 -0
- bear_utils/extras/platform_utils.py +53 -0
- bear_utils/extras/wrappers/__init__.py +0 -0
- bear_utils/extras/wrappers/add_methods.py +98 -0
- bear_utils/files/__init__.py +4 -0
- bear_utils/files/file_handlers/__init__.py +3 -0
- bear_utils/files/file_handlers/_base_file_handler.py +93 -0
- bear_utils/files/file_handlers/file_handler_factory.py +278 -0
- bear_utils/files/file_handlers/json_file_handler.py +44 -0
- bear_utils/files/file_handlers/log_file_handler.py +33 -0
- bear_utils/files/file_handlers/txt_file_handler.py +34 -0
- bear_utils/files/file_handlers/yaml_file_handler.py +57 -0
- bear_utils/files/ignore_parser.py +298 -0
- bear_utils/graphics/__init__.py +4 -0
- bear_utils/graphics/bear_gradient.py +140 -0
- bear_utils/graphics/image_helpers.py +39 -0
- bear_utils/gui/__init__.py +3 -0
- bear_utils/gui/gui_tools/__init__.py +5 -0
- bear_utils/gui/gui_tools/_settings.py +37 -0
- bear_utils/gui/gui_tools/_types.py +12 -0
- bear_utils/gui/gui_tools/qt_app.py +145 -0
- bear_utils/gui/gui_tools/qt_color_picker.py +119 -0
- bear_utils/gui/gui_tools/qt_file_handler.py +138 -0
- bear_utils/gui/gui_tools/qt_input_dialog.py +306 -0
- bear_utils/logging/__init__.py +25 -0
- bear_utils/logging/logger_manager/__init__.py +0 -0
- bear_utils/logging/logger_manager/_common.py +47 -0
- bear_utils/logging/logger_manager/_console_junk.py +131 -0
- bear_utils/logging/logger_manager/_styles.py +91 -0
- bear_utils/logging/logger_manager/loggers/__init__.py +0 -0
- bear_utils/logging/logger_manager/loggers/_base_logger.py +238 -0
- bear_utils/logging/logger_manager/loggers/_base_logger.pyi +50 -0
- bear_utils/logging/logger_manager/loggers/_buffer_logger.py +55 -0
- bear_utils/logging/logger_manager/loggers/_console_logger.py +249 -0
- bear_utils/logging/logger_manager/loggers/_console_logger.pyi +64 -0
- bear_utils/logging/logger_manager/loggers/_file_logger.py +141 -0
- bear_utils/logging/logger_manager/loggers/_level_sin.py +58 -0
- bear_utils/logging/logger_manager/loggers/_logger.py +18 -0
- bear_utils/logging/logger_manager/loggers/_sub_logger.py +110 -0
- bear_utils/logging/logger_manager/loggers/_sub_logger.pyi +38 -0
- bear_utils/logging/loggers.py +76 -0
- bear_utils/monitoring/__init__.py +10 -0
- bear_utils/monitoring/host_monitor.py +350 -0
- bear_utils/time/__init__.py +16 -0
- bear_utils/time/_helpers.py +91 -0
- bear_utils/time/_time_class.py +316 -0
- bear_utils/time/_timer.py +80 -0
- bear_utils/time/_tools.py +17 -0
- bear_utils/time/time_manager.py +218 -0
- bear_utils-0.7.11.dist-info/METADATA +260 -0
- bear_utils-0.7.11.dist-info/RECORD +83 -0
- bear_utils-0.7.11.dist-info/WHEEL +4 -0
@@ -0,0 +1,260 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: bear-utils
|
3
|
+
Version: 0.7.11
|
4
|
+
Summary: Various utilities for Bear programmers, including a rich logging utility, a disk cache, and a SQLite database wrapper amongst other things.
|
5
|
+
Author: chaz
|
6
|
+
Author-email: bright.lid5647@fastmail.com
|
7
|
+
Requires-Python: >=3.12
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
11
|
+
Requires-Dist: diskcache (>=5.6.3,<6.0.0)
|
12
|
+
Requires-Dist: httpx (>=0.28.1)
|
13
|
+
Requires-Dist: pathspec (>=0.12.1)
|
14
|
+
Requires-Dist: pillow (>=11.2.1,<12.0.0)
|
15
|
+
Requires-Dist: prompt-toolkit (>=3.0.51,<4.0.0)
|
16
|
+
Requires-Dist: pydantic (>=2.11.5)
|
17
|
+
Requires-Dist: pyglm (>=2.8.2,<3.0.0)
|
18
|
+
Requires-Dist: pyqt6 (>=6.9.0)
|
19
|
+
Requires-Dist: pytz (>=2025.2)
|
20
|
+
Requires-Dist: pyyaml (>=6.0.2)
|
21
|
+
Requires-Dist: rich (>=14.0.0,<15.0.0)
|
22
|
+
Requires-Dist: singleton-base (>=1.0.5)
|
23
|
+
Requires-Dist: sqlalchemy (>=2.0.40,<3.0.0)
|
24
|
+
Description-Content-Type: text/markdown
|
25
|
+
|
26
|
+
# Bear Utils v# Bear Utils v0.7.11
|
27
|
+
|
28
|
+
Personal set of tools and utilities for Python projects, focusing on modularity and ease of use. This library includes components for caching, database management, logging, time handling, file operations, CLI prompts, image processing, clipboard interaction, gradient utilities, event systems, and async helpers.
|
29
|
+
|
30
|
+
## Overview
|
31
|
+
|
32
|
+
Bear Utils is a collection of utility modules I've created for common tasks across my Python projects. The library is designed to be modular and easy to use, with each component focusing on a specific functionality.
|
33
|
+
|
34
|
+
## Installation
|
35
|
+
|
36
|
+
```bash
|
37
|
+
# Using pip
|
38
|
+
pip install bear-utils
|
39
|
+
|
40
|
+
# Using poetry
|
41
|
+
poetry add bear-utils
|
42
|
+
```
|
43
|
+
|
44
|
+
## Key Components
|
45
|
+
|
46
|
+
### Cache Management
|
47
|
+
|
48
|
+
The `cache` package provides disk cache functionality via `diskcache`:
|
49
|
+
|
50
|
+
```python
|
51
|
+
from bear_utils.cache import CacheWrapper, cache_factory
|
52
|
+
|
53
|
+
# Create a cache instance
|
54
|
+
cache = Cache(directory="~/.cache/my_app")
|
55
|
+
|
56
|
+
# Use the cache factory to create a decorated function
|
57
|
+
@cache_factory(directory="~/.cache/my_app")
|
58
|
+
def expensive_function(arg1, arg2):
|
59
|
+
# Function will be cached based on arguments
|
60
|
+
pass
|
61
|
+
```
|
62
|
+
|
63
|
+
### Database Management
|
64
|
+
|
65
|
+
The `database` package provides SQLAlchemy integration with helpful patterns:
|
66
|
+
|
67
|
+
```python
|
68
|
+
from bear_utils.database import DatabaseManager
|
69
|
+
from sqlalchemy import Column, Integer, String
|
70
|
+
|
71
|
+
# Get declarative base
|
72
|
+
Base = DatabaseManager.get_base()
|
73
|
+
|
74
|
+
# Define models
|
75
|
+
class User(Base):
|
76
|
+
__tablename__ = "users"
|
77
|
+
id = Column(Integer, primary_key=True)
|
78
|
+
name = Column(String)
|
79
|
+
|
80
|
+
# Create and use database
|
81
|
+
db = DatabaseManager("sqlite:///app.db")
|
82
|
+
with db.session() as session:
|
83
|
+
session.add(User(name="test"))
|
84
|
+
session.commit()
|
85
|
+
```
|
86
|
+
|
87
|
+
### Logging
|
88
|
+
|
89
|
+
The `logging` package provides an enhanced console logger using rich:
|
90
|
+
|
91
|
+
```python
|
92
|
+
from bear_utils.logging import ConsoleLogger
|
93
|
+
|
94
|
+
logger = ConsoleLogger()
|
95
|
+
logger.info("Information message")
|
96
|
+
logger.error("Error message")
|
97
|
+
logger.warning("Warning message")
|
98
|
+
```
|
99
|
+
|
100
|
+
### Time Management
|
101
|
+
|
102
|
+
The `time` package contains tools for time handling and measurement:
|
103
|
+
|
104
|
+
```python
|
105
|
+
from bear_utils.time import TimeTools, EpochTimestamp
|
106
|
+
|
107
|
+
# Get current timestamp
|
108
|
+
now = EpochTimestamp()
|
109
|
+
|
110
|
+
# Time function execution
|
111
|
+
from bear_utils.time.time_manager import timer
|
112
|
+
|
113
|
+
with timer(name="my_operation"):
|
114
|
+
# Code to measure
|
115
|
+
pass
|
116
|
+
```
|
117
|
+
|
118
|
+
### File Handling
|
119
|
+
|
120
|
+
The `files` package provides abstractions for working with different file types:
|
121
|
+
|
122
|
+
```python
|
123
|
+
from pathlib import Path
|
124
|
+
from bear_utils.files.file_handlers import FileHandlerFactory
|
125
|
+
|
126
|
+
factory = FileHandlerFactory()
|
127
|
+
handler = factory.get_handler(Path("config.json"))
|
128
|
+
data = handler.read_file()
|
129
|
+
```
|
130
|
+
|
131
|
+
### Prompt Helpers
|
132
|
+
|
133
|
+
Utilities for creating interactive command-line prompts:
|
134
|
+
|
135
|
+
```python
|
136
|
+
from bear_utils.cli.prompt_helpers import restricted_prompt
|
137
|
+
|
138
|
+
choice = restricted_prompt(
|
139
|
+
message="Select an option:",
|
140
|
+
valid_options=["option1", "option2"]
|
141
|
+
)
|
142
|
+
```
|
143
|
+
|
144
|
+
### Image Helpers
|
145
|
+
|
146
|
+
Utilities for working with images are located in the `graphics` package:
|
147
|
+
|
148
|
+
```python
|
149
|
+
from pathlib import Path
|
150
|
+
from bear_utils.graphics import encode_image_to_jpeg, encode_image_to_png
|
151
|
+
|
152
|
+
# Encode image to base64 string
|
153
|
+
jpeg_data = encode_image_to_jpeg(Path("image.jpg"), max_size=800)
|
154
|
+
png_data = encode_image_to_png(Path("image.png"), max_size=800)
|
155
|
+
```
|
156
|
+
|
157
|
+
### Clipboard Helpers
|
158
|
+
|
159
|
+
`bear_utils.extras._tools` includes simple helpers for interacting with the system clipboard:
|
160
|
+
|
161
|
+
```python
|
162
|
+
from bear_utils.extras._tools import copy_to_clipboard, paste_from_clipboard
|
163
|
+
|
164
|
+
copy_to_clipboard("hello world")
|
165
|
+
text = paste_from_clipboard()
|
166
|
+
```
|
167
|
+
|
168
|
+
Supported platforms include macOS (`pbcopy/pbpaste`), Windows (`clip`/`powershell Get-Clipboard`),
|
169
|
+
and Linux with either Wayland (`wl-copy`/`wl-paste`) or X11 (`xclip`).
|
170
|
+
|
171
|
+
### Gradient Utilities
|
172
|
+
|
173
|
+
The `graphics.bear_gradient` module provides color gradient functionality for the purposes of visualizing data or creating color transitions:
|
174
|
+
|
175
|
+
```python
|
176
|
+
from bear_utils.graphics import ColorGradient, RichColor
|
177
|
+
from rich.console import Console
|
178
|
+
from rich.color_triplet import ColorTriplet
|
179
|
+
|
180
|
+
console = Console()
|
181
|
+
|
182
|
+
# Health meter goes from red (low health) to green (full health)
|
183
|
+
health_gradient = ColorGradient()
|
184
|
+
|
185
|
+
console.print("🏥 [bold]Health Meter Demonstration[/bold] 🏥\n")
|
186
|
+
|
187
|
+
# Normal health: Red (low) -> Green (high)
|
188
|
+
console.print("[bold green]Normal Health Levels (0% = Critical, 100% = Perfect):[/bold green]")
|
189
|
+
for health in range(0, 101, 10):
|
190
|
+
color: ColorTriplet = health_gradient.map_to_color(0, 100, health)
|
191
|
+
health_bar = "█" * (health // 5)
|
192
|
+
console.print(f"HP: {health:3d}/100 {health_bar:<20}", style=color.rgb)
|
193
|
+
|
194
|
+
console.print("\n" + "="*50 + "\n")
|
195
|
+
|
196
|
+
# Reversed: Infection/Damage meter (Green = good, Red = bad)
|
197
|
+
console.print("[bold red]Infection Level (0% = Healthy, 100% = Critical):[/bold red]")
|
198
|
+
health_gradient.reverse = True
|
199
|
+
for infection in range(0, 101, 10):
|
200
|
+
color: ColorTriplet = health_gradient.map_to_color(0, 100, infection)
|
201
|
+
infection_bar = "█" * (infection // 5)
|
202
|
+
status = "🦠" if infection > 70 else "⚠️" if infection > 30 else "✅"
|
203
|
+
console.print(f"Infection: {infection:3d}% {infection_bar:<20} {status}", style=color.rgb)
|
204
|
+
|
205
|
+
health_scenarios = [
|
206
|
+
(5, "💀 Nearly Dead"),
|
207
|
+
(25, "🩸 Critical Condition"),
|
208
|
+
(50, "⚠️ Wounded"),
|
209
|
+
(75, "😐 Recovering"),
|
210
|
+
(95, "💪 Almost Full Health"),
|
211
|
+
(100, "✨ Perfect Health")
|
212
|
+
]
|
213
|
+
|
214
|
+
console.print("[bold green]Health Status Examples:[/bold green]")
|
215
|
+
for hp, status in health_scenarios:
|
216
|
+
color: ColorTriplet = health_gradient.map_to_color(0, 100, hp)
|
217
|
+
console.print(f"{status}: {hp}/100 HP", style=color.rgb)
|
218
|
+
```
|
219
|
+
|
220
|
+
### Event System
|
221
|
+
|
222
|
+
The `events` module provides a pub/sub event system that supports both synchronous and asynchronous handlers:
|
223
|
+
|
224
|
+
```python
|
225
|
+
from bear_utils.events.events_module import subscribe, publish
|
226
|
+
|
227
|
+
# Subscribe to events
|
228
|
+
@subscribe("user_logged_in")
|
229
|
+
def handle_login(user_id):
|
230
|
+
print(f"User {user_id} logged in")
|
231
|
+
|
232
|
+
# Publish events
|
233
|
+
publish("user_logged_in", 12345)
|
234
|
+
|
235
|
+
# Async support
|
236
|
+
@subscribe("data_processed")
|
237
|
+
async def handle_process(data):
|
238
|
+
await process_async(data)
|
239
|
+
|
240
|
+
# Clear handlers
|
241
|
+
from bear_utils.events.events_module import clear_handlers_for_event
|
242
|
+
clear_handlers_for_event("user_logged_in")
|
243
|
+
```
|
244
|
+
|
245
|
+
### Async Helpers
|
246
|
+
|
247
|
+
The `extras/_async_helpers.py` module provides utility functions for working with async code:
|
248
|
+
|
249
|
+
```python
|
250
|
+
from bear_utils.extras._async_helpers import is_async_function
|
251
|
+
|
252
|
+
def handle_function(func):
|
253
|
+
if is_async_function(func):
|
254
|
+
# Handle async function
|
255
|
+
pass
|
256
|
+
else:
|
257
|
+
# Handle sync function
|
258
|
+
pass
|
259
|
+
```
|
260
|
+
|
@@ -0,0 +1,83 @@
|
|
1
|
+
bear_utils/__init__.py,sha256=WFl2Lm6v7V7nvWJwji3oGUy6BAwZUsy_apwyBPSHeiI,659
|
2
|
+
bear_utils/ai/__init__.py,sha256=g7DiwwqbcKAktcwqq6Xs3rSwFqvq4H1yrG2aHoc6FQo,766
|
3
|
+
bear_utils/ai/ai_helpers/__init__.py,sha256=siujxR7b7mjsHM2J24V9NXM-edlgcuRZQpxegVU9-is,3968
|
4
|
+
bear_utils/ai/ai_helpers/_common.py,sha256=KgaOb_IePfC8Z1VsdA0EiodfS_YGVYYnrZFR2ZdsUYM,418
|
5
|
+
bear_utils/ai/ai_helpers/_config.py,sha256=UX7wPIiEr2Uqt2kZWtMaYagmRFmUsQKSuopQ41XW53I,774
|
6
|
+
bear_utils/ai/ai_helpers/_parsers.py,sha256=aWbbrB44pRI-CZpmPuVCQalcEd17BDUtE2FVQstq3rU,7993
|
7
|
+
bear_utils/ai/ai_helpers/_types.py,sha256=yTvB00bKIZXu-BKoXtZv6I3vHrxBwxO0gpl61bEslrY,550
|
8
|
+
bear_utils/cache/__init__.py,sha256=PRXhqzVCoMLlu1AwLcNz1w39n4dvjkj3__uYUFQk8Nk,4109
|
9
|
+
bear_utils/cli/__init__.py,sha256=Lsp03rSXrTikOKI8XFR74-iZoI3IWzNRVgSLlEIzc8M,227
|
10
|
+
bear_utils/cli/commands.py,sha256=B0eI6iPeE5uaEa7JvfwKZavHe4ZsK_fLFBWxojW1Cx8,1537
|
11
|
+
bear_utils/cli/prompt_helpers.py,sha256=aGfa4tnO24kFKC-CBJhoiKtll8kc_uU5RvXmxSoD5BM,6094
|
12
|
+
bear_utils/cli/shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
bear_utils/cli/shell/_base_command.py,sha256=96zlL6BFWVkC_pJzxlxQy1o3oxu-P4e80mRcLEvS0PY,2251
|
14
|
+
bear_utils/cli/shell/_base_shell.py,sha256=8PEny2MciOig8r1gN5YHbk3j3L5fFE6mHh2v3XxLAXU,14596
|
15
|
+
bear_utils/cli/shell/_common.py,sha256=_KQyL5lvqOfjonFIwlEOyp3K9G3TSOj19RhgVzfNNpg,669
|
16
|
+
bear_utils/config/__init__.py,sha256=htYbcAhIAGXgA4BaSQMKRtwu5RjWwNsnAiD0JxZ82aE,289
|
17
|
+
bear_utils/config/config_manager.py,sha256=WojWwxsTo2Izf2EFxZJXjjUmhqcbbatZ-nBKq436BGw,2631
|
18
|
+
bear_utils/config/dir_manager.py,sha256=zH0CQAyeFSCjorUQd6TPxkco33hoPqy9wdagByccqP4,1865
|
19
|
+
bear_utils/config/settings_manager.py,sha256=1icasrvSmhgPS08fGFswYT7eHbbguqscFZgia5XtazM,7484
|
20
|
+
bear_utils/constants/__init__.py,sha256=exQ6tfE05Wi72i6PyZ71WXRs_b9RO4zbupPUyV6fHQg,545
|
21
|
+
bear_utils/constants/_exceptions.py,sha256=KCd4iT7RxrS4DxU1vLrTiYP2U6pyEjnyP_AGXbEpwR0,137
|
22
|
+
bear_utils/constants/_lazy_typing.py,sha256=WfuWpRqx9XchvuyPWg3tVjMC5-C4QA-Bhwfskf4YmAE,339
|
23
|
+
bear_utils/constants/date_related.py,sha256=Dd1JdsvGIkcevrGxe6ZodiL9RJVL_rvfGvV2hFyK_qc,1325
|
24
|
+
bear_utils/constants/time_related.py,sha256=q-0wi0qnC5qHq4vOXbMAETVA5lEc-c7STFqi3fTjuLs,638
|
25
|
+
bear_utils/database/__init__.py,sha256=JkpeqL9F1Rhcj9CMhM6ZP72qq-nDKPzWAR2aeJyyiZg,111
|
26
|
+
bear_utils/database/_db_manager.py,sha256=1EY8ueSf3US8yUhnMP5R96pHolOyy_3ufNi5fv5d-NM,3776
|
27
|
+
bear_utils/events/__init__.py,sha256=ZvPC95Y80QEMDki9MnsdP9sz_jH0mg78tuy5QO4DVPE,364
|
28
|
+
bear_utils/events/events_class.py,sha256=pEdZNS8l5wwrn3I4WrFspZlNiy3Lzcwjxr6E2hTKXyM,1657
|
29
|
+
bear_utils/events/events_module.py,sha256=NtWqlBpTWAtaC_KVJnweReQe6OU2PXt04yNtAEcATuc,1852
|
30
|
+
bear_utils/extras/__init__.py,sha256=q2o3zzY8Yk11_JIeK7QnRWOTRP01apCvChz63BkPSD8,484
|
31
|
+
bear_utils/extras/_async_helpers.py,sha256=OcgPmCfdAKcTsqGA3Fm8ORkePgaJSok_1t9-sbf-zNQ,416
|
32
|
+
bear_utils/extras/_tools.py,sha256=8l41jRIiyNTI9LmBC5MM-rx9nyx9wmmVwk_h980B388,6110
|
33
|
+
bear_utils/extras/platform_utils.py,sha256=vRLybOm_Kk4ysVyNdsv1oTrMHD64vPeGre23fg-kJxI,1257
|
34
|
+
bear_utils/extras/wrappers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
+
bear_utils/extras/wrappers/add_methods.py,sha256=8JI9oFakHRBHcyix6sgqfiXZyXW5antLbyRdFL4F1_M,4222
|
36
|
+
bear_utils/files/__init__.py,sha256=Xzo1229NTq-NaeQIvsqUSaFxwm8DFmpxEIfnhDb_uHg,142
|
37
|
+
bear_utils/files/file_handlers/__init__.py,sha256=hXoxBoUP343DyjjBFxQRF7cCB1tEMNor2huYOdlGvqo,87
|
38
|
+
bear_utils/files/file_handlers/_base_file_handler.py,sha256=jNmdYfpN6DRplKNR590Yy3Vd9wuPg27DwnSlm79Ed3o,3164
|
39
|
+
bear_utils/files/file_handlers/file_handler_factory.py,sha256=8ZY1N6b6onDmNNCDDtsAahv4BdaBmI09YxsqqQxjLbw,9746
|
40
|
+
bear_utils/files/file_handlers/json_file_handler.py,sha256=YUz4yFHHzO6HcQl0kiiWZCMp57FEaUJ6_yNGhw6tJz4,1482
|
41
|
+
bear_utils/files/file_handlers/log_file_handler.py,sha256=hScsVnJkO17y9tovJatY7VpMyO5kzFGv_1OnQ9oQCiU,1246
|
42
|
+
bear_utils/files/file_handlers/txt_file_handler.py,sha256=dsw1sO6KwzMcqmwt5_UZSv9SF1xisN2Zo2cRNYcO_XI,1250
|
43
|
+
bear_utils/files/file_handlers/yaml_file_handler.py,sha256=Oe8U0fYtDv7q8sFWs_rO3uRQa9olEbrGWF1JuQ2iyTk,2083
|
44
|
+
bear_utils/files/ignore_parser.py,sha256=W8SQDUm-_R9abUwvcaA7zr8me281N0kLIP823_sAoyA,10678
|
45
|
+
bear_utils/graphics/__init__.py,sha256=N6EXOyAVoytsKecFKvi4P9Q0biEZeLkLBDor5YFUqYg,218
|
46
|
+
bear_utils/graphics/bear_gradient.py,sha256=bwjJobhgMguEA0FQnjpGzyU3CzFG4bxEvxJtJXAKBcc,4808
|
47
|
+
bear_utils/graphics/image_helpers.py,sha256=fy96H_BkuiCXecDXCMmrlH-SWGsA5SkEUSxlKGzcibI,1374
|
48
|
+
bear_utils/gui/__init__.py,sha256=PUxxVf4txMQhzwXQlCn9SJfZgIxnOZJdJ_ADO8W5EdI,118
|
49
|
+
bear_utils/gui/gui_tools/__init__.py,sha256=RItgVR6gVL0tmWF9KLmZaKKiu-DMgRwvNSOAHhbE0QM,171
|
50
|
+
bear_utils/gui/gui_tools/_settings.py,sha256=1zFSMwTacybbleXs2LMDuoyZJwr8ixkLZBfcYVfLbiU,1202
|
51
|
+
bear_utils/gui/gui_tools/_types.py,sha256=krguJ-ccALKeUHz9auh_iyOCzeAuerOYcuhWW8jjJQ0,248
|
52
|
+
bear_utils/gui/gui_tools/qt_app.py,sha256=rTeiaGSZztKogZC1E6lDwOfJ0eVcZXWJmNGjOkbT9bw,5520
|
53
|
+
bear_utils/gui/gui_tools/qt_color_picker.py,sha256=c_-VMaSqSiceDc3mmu7SPRJ3E_ZWj-s3Y4N-q2x3KSU,4437
|
54
|
+
bear_utils/gui/gui_tools/qt_file_handler.py,sha256=vOYSlQTFiRi-FtXqagp1M_jRSOjz7W-LCb8KXlEtr50,4325
|
55
|
+
bear_utils/gui/gui_tools/qt_input_dialog.py,sha256=MwZ2myLEKRZlldYH_rZtEzPeaz3-fRBP06xBmkTKyAk,9224
|
56
|
+
bear_utils/logging/__init__.py,sha256=o5MX0ow4ugo3JhS2k9vFO0HMzTwUBVnzdhoJBCmqW1g,492
|
57
|
+
bear_utils/logging/logger_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
+
bear_utils/logging/logger_manager/_common.py,sha256=6r69PIqk6IaIauxax35c5Paz1J1iv87ukbvoZ3uWI_Q,1582
|
59
|
+
bear_utils/logging/logger_manager/_console_junk.py,sha256=vMChuVTNxyxly-onEad1u2tsb6syalXjFVfxOS2-qHw,4821
|
60
|
+
bear_utils/logging/logger_manager/_styles.py,sha256=x2ZiTpK_hGzr1vyn3i9q0cDU_gq6AcaJWfZ200kOQoM,2536
|
61
|
+
bear_utils/logging/logger_manager/loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
|
+
bear_utils/logging/logger_manager/loggers/_base_logger.py,sha256=LnhPJuTChhgXsxrafJBE1w7aIntn5OW43ZOjFxwhysU,9453
|
63
|
+
bear_utils/logging/logger_manager/loggers/_base_logger.pyi,sha256=fFjv7GHh9LAvBZDK5Bqth50wOheNwM_qt-sKowW8UWg,2606
|
64
|
+
bear_utils/logging/logger_manager/loggers/_buffer_logger.py,sha256=l3XtjGWIZlWOtFH_2ltNjyxWgmKJ_ZqIwWYLofXn-1E,1535
|
65
|
+
bear_utils/logging/logger_manager/loggers/_console_logger.py,sha256=b0qQeMJtktRnCekuZKlHp8mej8htj1xKJa-TvT2Rig0,9400
|
66
|
+
bear_utils/logging/logger_manager/loggers/_console_logger.pyi,sha256=B3hjFePgAyy5lESlLjHZVTMu4Y18txvAVzv3kD_Akuc,2512
|
67
|
+
bear_utils/logging/logger_manager/loggers/_file_logger.py,sha256=slx_eaxH5sn1s96wmxDehJU5O__9JHzXin5CqaqetTw,4684
|
68
|
+
bear_utils/logging/logger_manager/loggers/_level_sin.py,sha256=n4EJUZc_z2YQkTzbVuFvPIhwiUt3gv4_Go90C46vsFc,1712
|
69
|
+
bear_utils/logging/logger_manager/loggers/_logger.py,sha256=RbqfrHSyaxIbXEDO63WK5oGMVXsMJIL1Rx8_frYacsQ,547
|
70
|
+
bear_utils/logging/logger_manager/loggers/_sub_logger.py,sha256=YMW03UP9fh_c51Ls1KEoMr-bcAfMt4tTT0OIELpDa_k,3471
|
71
|
+
bear_utils/logging/logger_manager/loggers/_sub_logger.pyi,sha256=-SCh73lTkqolDq-5Ll-lstfl-88gi-E3y1FIknBoI5w,1520
|
72
|
+
bear_utils/logging/loggers.py,sha256=oFdKrm9ot7F4pKghzYQrq-BK7RfevKQSBaHsmSolHTA,3196
|
73
|
+
bear_utils/monitoring/__init__.py,sha256=cj7UYsipfYFwxQmXtMpziAv4suRtGzWEdjdwOCbxJN4,168
|
74
|
+
bear_utils/monitoring/host_monitor.py,sha256=GwIK9X8rATUhYIbOXi4MINfACWgO3T1vzUK1gSK_TQc,12902
|
75
|
+
bear_utils/time/__init__.py,sha256=x9Mz3wKwLpRXA7cg-fUo7nxFdQAJtVdqtJ2levLSKwE,398
|
76
|
+
bear_utils/time/_helpers.py,sha256=P6s8K-Fix6ZgcuTOnfGeC5m2ZMhxMUfN3mW1Apmua6w,2824
|
77
|
+
bear_utils/time/_time_class.py,sha256=PUr39hGaWpw6p5c1lgMmnTyS2dNNPM7eZL-bpxd2LBk,11425
|
78
|
+
bear_utils/time/_timer.py,sha256=FTl-DcO4zmaz6qGcDfTnRPlarXTEGN0pQJaYbsU4fRk,2463
|
79
|
+
bear_utils/time/_tools.py,sha256=3awC3x874V1j3pd6dWNie3u5Pku-7I-G1MBjIcwFW8U,456
|
80
|
+
bear_utils/time/time_manager.py,sha256=R_nQFmGsIZ5F_oGNvMJbpW-R9AwNyu9QxXM_GzjR16Y,7731
|
81
|
+
bear_utils-0.7.11.dist-info/METADATA,sha256=hUtAewOhcuHffBTMFqPi8kCCTribC0gvmfUT5JrKmGI,7484
|
82
|
+
bear_utils-0.7.11.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
83
|
+
bear_utils-0.7.11.dist-info/RECORD,,
|