blue-assistant 4.194.1__py3-none-any.whl → 4.221.1__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.
@@ -0,0 +1,11 @@
1
+ #! /usr/bin/env bash
2
+
3
+ function blue_assistant_hue_create_user() {
4
+ local options=$1
5
+ local do_dryrun=$(abcli_option_int "$options" dryrun 0)
6
+
7
+ abcli_eval dryrun=$do_dryrun \
8
+ python3 -m blue_assistant.script.repository.hue \
9
+ create_user \
10
+ "${@:2}"
11
+ }
@@ -0,0 +1,11 @@
1
+ #! /usr/bin/env bash
2
+
3
+ function blue_assistant_hue_list() {
4
+ local options=$1
5
+ local do_dryrun=$(abcli_option_int "$options" dryrun 0)
6
+
7
+ abcli_eval dryrun=$do_dryrun \
8
+ python3 -m blue_assistant.script.repository.hue \
9
+ list \
10
+ "${@:2}"
11
+ }
@@ -9,7 +9,7 @@ function blue_assistant_hue() {
9
9
  return
10
10
  fi
11
11
 
12
- python3 -m blue_assistant.hue "$@"
12
+ python3 -m blue_assistant.script.repository.hue "$@"
13
13
  }
14
14
 
15
15
  abcli_source_caller_suffix_path /hue
@@ -27,7 +27,10 @@ function test_blue_assistant_help() {
27
27
  "@assistant web crawl" \
28
28
  \
29
29
  "@hue" \
30
+ "@hue create_user" \
31
+ "@hue list" \
30
32
  "@hue set" \
33
+ "@hue test" \
31
34
  \
32
35
  "blue_assistant"; do
33
36
  abcli_eval ,$options \
blue_assistant/README.py CHANGED
@@ -10,8 +10,8 @@ items = README.Items(
10
10
  {
11
11
  "name": "hue",
12
12
  "url": "./blue_assistant/script/repository/hue",
13
- "marquee": "https://github.com/kamangir/assets/blob/main/blue-assistant/hue.jpg?raw=true",
14
- "description": '"send a color command to the Hue LED lights in my apartment." 🔥',
13
+ "marquee": "https://github.com/kamangir/assets/raw/main/blue-assistant/20250314_143702.jpg?raw=true",
14
+ "description": '"send a color command to the Hue LED lights in my apartment."',
15
15
  },
16
16
  {
17
17
  "name": "blue-amo",
@@ -4,7 +4,7 @@ ICON = "🧠"
4
4
 
5
5
  DESCRIPTION = f"{ICON} An AI Assistant."
6
6
 
7
- VERSION = "4.194.1"
7
+ VERSION = "4.221.1"
8
8
 
9
9
  REPO_NAME = "blue-assistant"
10
10
 
blue_assistant/env.py CHANGED
@@ -15,3 +15,5 @@ BLUE_ASSISTANT_IMAGE_DEFAULT_QUALITY = get_env("BLUE_ASSISTANT_IMAGE_DEFAULT_QUA
15
15
  BLUE_ASSISTANT_IMAGE_DEFAULT_SIZE = get_env("BLUE_ASSISTANT_IMAGE_DEFAULT_SIZE")
16
16
 
17
17
  HUE_BRIDGE_IP_ADDRESS = get_env("HUE_BRIDGE_IP_ADDRESS")
18
+
19
+ HUE_BRIDGE_USERNAME = get_env("HUE_BRIDGE_USERNAME")
@@ -5,6 +5,52 @@ from blue_options.terminal import show_usage, xtra
5
5
  from blue_assistant import env
6
6
 
7
7
 
8
+ def help_create_user(
9
+ tokens: List[str],
10
+ mono: bool,
11
+ ) -> str:
12
+ options = xtra("dryrun", mono=mono)
13
+
14
+ args = [
15
+ f"[--bridge_ip <{env.HUE_BRIDGE_IP_ADDRESS}>]",
16
+ ]
17
+
18
+ return show_usage(
19
+ [
20
+ "@hue",
21
+ "create_user",
22
+ f"[{options}]",
23
+ ]
24
+ + args,
25
+ "create a hue user.",
26
+ mono=mono,
27
+ )
28
+
29
+
30
+ def help_list(
31
+ tokens: List[str],
32
+ mono: bool,
33
+ ) -> str:
34
+ options = xtra("dryrun", mono=mono)
35
+
36
+ args = [
37
+ f"[--bridge_ip <{env.HUE_BRIDGE_IP_ADDRESS}>]",
38
+ f"[--username <{env.HUE_BRIDGE_USERNAME}>]",
39
+ "[--verbose 1]",
40
+ ]
41
+
42
+ return show_usage(
43
+ [
44
+ "@hue",
45
+ "list",
46
+ f"[{options}]",
47
+ ]
48
+ + args,
49
+ "list hue lights.",
50
+ mono=mono,
51
+ )
52
+
53
+
8
54
  def help_set(
9
55
  tokens: List[str],
10
56
  mono: bool,
@@ -13,12 +59,13 @@ def help_set(
13
59
 
14
60
  args = [
15
61
  f"[--bridge_ip <{env.HUE_BRIDGE_IP_ADDRESS}>]",
16
- "[--username <username>]",
62
+ f"[--username <{env.HUE_BRIDGE_USERNAME}>]",
17
63
  "[--light_id <light_id>]",
18
64
  "[--hue <65535>]",
19
65
  "[--saturation <254>]",
20
66
  "[--verbose 1]",
21
67
  ]
68
+
22
69
  return show_usage(
23
70
  [
24
71
  "@hue",
@@ -31,6 +78,36 @@ def help_set(
31
78
  )
32
79
 
33
80
 
81
+ def help_test(
82
+ tokens: List[str],
83
+ mono: bool,
84
+ ) -> str:
85
+ options = xtra("dryrun", mono=mono)
86
+
87
+ args = [
88
+ f"[--bridge_ip <{env.HUE_BRIDGE_IP_ADDRESS}>]",
89
+ f"[--username <{env.HUE_BRIDGE_USERNAME}>]",
90
+ "[--light_id all | <light_id>]",
91
+ "[--interval <1>]",
92
+ "[--hue <65535>]",
93
+ "[--verbose 1]",
94
+ ]
95
+
96
+ return show_usage(
97
+ [
98
+ "@hue",
99
+ "test",
100
+ f"[{options}]",
101
+ ]
102
+ + args,
103
+ "test hue.",
104
+ mono=mono,
105
+ )
106
+
107
+
34
108
  help_functions = {
109
+ "create_user": help_create_user,
110
+ "list": help_list,
35
111
  "set": help_set,
112
+ "test": help_test,
36
113
  }
blue_assistant/sample.env CHANGED
@@ -0,0 +1 @@
1
+ HUE_BRIDGE_USERNAME=
@@ -5,7 +5,12 @@ from blueness.argparse.generic import sys_exit
5
5
 
6
6
  from blue_assistant import NAME
7
7
  from blue_assistant import env
8
- from blue_assistant.script.repository.hue.functions import set_light_color
8
+ from blue_assistant.script.repository.hue.functions import (
9
+ create_user,
10
+ list_lights,
11
+ set_light_color,
12
+ test,
13
+ )
9
14
  from blue_assistant.logger import logger
10
15
 
11
16
  NAME = module.name(__file__, NAME)
@@ -14,7 +19,7 @@ parser = argparse.ArgumentParser(NAME)
14
19
  parser.add_argument(
15
20
  "task",
16
21
  type=str,
17
- help="set",
22
+ help="create_user | list | set | test",
18
23
  )
19
24
  parser.add_argument(
20
25
  "--bridge_ip",
@@ -24,11 +29,14 @@ parser.add_argument(
24
29
  parser.add_argument(
25
30
  "--username",
26
31
  type=str,
32
+ default=env.HUE_BRIDGE_USERNAME,
27
33
  help="aka API key",
28
34
  )
29
35
  parser.add_argument(
30
36
  "--light_id",
31
37
  type=str,
38
+ default="",
39
+ help="all | <light_id>",
32
40
  )
33
41
  parser.add_argument(
34
42
  "--hue",
@@ -48,10 +56,28 @@ parser.add_argument(
48
56
  default=0,
49
57
  help="0 | 1",
50
58
  )
59
+ parser.add_argument(
60
+ "--interval",
61
+ type=float,
62
+ default=0.1,
63
+ help="in seconds",
64
+ )
51
65
  args = parser.parse_args()
52
66
 
53
67
  success = False
54
- if args.task == "set":
68
+ if args.task == "create_user":
69
+ username = create_user(
70
+ bridge_ip=args.bridge_ip,
71
+ )
72
+ if username:
73
+ success = True
74
+ elif args.task == "list":
75
+ success, _ = list_lights(
76
+ bridge_ip=args.bridge_ip,
77
+ username=args.username,
78
+ verbose=args.verbose == 1,
79
+ )
80
+ elif args.task == "set":
55
81
  success = set_light_color(
56
82
  bridge_ip=args.bridge_ip,
57
83
  username=args.username,
@@ -60,6 +86,15 @@ if args.task == "set":
60
86
  saturation=args.saturation,
61
87
  verbose=args.verbose == 1,
62
88
  )
89
+ elif args.task == "test":
90
+ success = test(
91
+ bridge_ip=args.bridge_ip,
92
+ username=args.username,
93
+ light_id=args.light_id,
94
+ interval=args.interval,
95
+ hue=args.hue,
96
+ verbose=args.verbose == 1,
97
+ )
63
98
  else:
64
99
  success = None
65
100
 
@@ -1,4 +1,7 @@
1
+ from typing import Tuple, Dict, List
1
2
  import requests
3
+ from time import sleep
4
+ from tqdm import tqdm
2
5
 
3
6
  from blueness import module
4
7
 
@@ -9,12 +12,75 @@ from blue_assistant.logger import logger
9
12
  NAME = module.name(__file__, NAME)
10
13
 
11
14
 
15
+ # hue-2025-03-14-1l8tv6
16
+ def create_user(
17
+ bridge_ip: str = env.HUE_BRIDGE_IP_ADDRESS,
18
+ wait_for_link_press: bool = True,
19
+ ) -> str:
20
+ URL = f"http://{bridge_ip}/api"
21
+
22
+ payload = {
23
+ "devicetype": "my_hue_app#python_script",
24
+ }
25
+
26
+ if wait_for_link_press:
27
+ input("Press the link button on the Hue Bridge ...")
28
+
29
+ try:
30
+ response = requests.post(URL, json=payload)
31
+
32
+ if response.status_code == 200:
33
+ result = response.json()
34
+ if "success" in result[0]:
35
+ username = result[0]["success"]["username"]
36
+ logger.info(f"created {username}")
37
+ return username
38
+
39
+ logger.error(result)
40
+ return ""
41
+
42
+ logger.error(response)
43
+ return ""
44
+ except Exception as e:
45
+ logger.error(e)
46
+ return ""
47
+
48
+
49
+ # hue-2025-03-14-4r9mgh
50
+ def list_lights(
51
+ bridge_ip: str = env.HUE_BRIDGE_IP_ADDRESS,
52
+ username: str = env.HUE_BRIDGE_USERNAME,
53
+ verbose: bool = False,
54
+ ) -> Tuple[bool, Dict]:
55
+ URL = f"http://{bridge_ip}/api/{username}"
56
+
57
+ response = requests.get(URL)
58
+
59
+ if response.status_code != 200:
60
+ logger.error(response)
61
+ return False, {}
62
+
63
+ list_of_lights = response.json()["lights"]
64
+ logger.info(
65
+ "found {} light(s): {}".format(
66
+ len(list_of_lights),
67
+ ", ".join(list_of_lights.keys()),
68
+ )
69
+ )
70
+ if verbose:
71
+ for light_id, light_info in list_of_lights.items():
72
+ logger.info(f"#{light_id}: {light_info}")
73
+
74
+ return True, list_of_lights
75
+
76
+
77
+ # hue-2025-03-13-1xjr1z
12
78
  def set_light_color(
13
- username: str,
14
79
  light_id: str,
15
80
  hue: int, # 0 to 65535
16
81
  saturation: int, # 0 to 254
17
82
  bridge_ip: str = env.HUE_BRIDGE_IP_ADDRESS,
83
+ username: str = env.HUE_BRIDGE_USERNAME,
18
84
  verbose: bool = False,
19
85
  ) -> bool:
20
86
  logger.info(
@@ -28,8 +94,6 @@ def set_light_color(
28
94
  )
29
95
  )
30
96
 
31
- # hue-2025-03-13-1xjr1z
32
-
33
97
  # Construct the API endpoint URL
34
98
  url = f"http://{bridge_ip}/api/{username}/lights/{light_id}/state"
35
99
 
@@ -51,3 +115,57 @@ def set_light_color(
51
115
  logger.info(response.json())
52
116
 
53
117
  return True
118
+
119
+
120
+ def test(
121
+ hue: int,
122
+ light_id: str = "all",
123
+ interval: float = 0.1,
124
+ bridge_ip: str = env.HUE_BRIDGE_IP_ADDRESS,
125
+ username: str = env.HUE_BRIDGE_USERNAME,
126
+ verbose: bool = False,
127
+ ) -> bool:
128
+ if not light_id:
129
+ light_id = "all"
130
+
131
+ logger.info(
132
+ "{}.test({}@{}:{}) @ hue=0x{:x}, interval={} s".format(
133
+ NAME,
134
+ username,
135
+ bridge_ip,
136
+ light_id,
137
+ hue,
138
+ interval,
139
+ )
140
+ )
141
+
142
+ list_of_lights: List[str]
143
+ if light_id == "all":
144
+ success, dict_of_lights = list_lights(
145
+ bridge_ip=bridge_ip,
146
+ username=username,
147
+ verbose=verbose,
148
+ )
149
+ if not success:
150
+ return success
151
+ list_of_lights = list(dict_of_lights.keys())
152
+ else:
153
+ list_of_lights = [light_id]
154
+
155
+ saturation = 0
156
+ while True:
157
+ for light_id_ in tqdm(list_of_lights):
158
+ set_light_color(
159
+ light_id=light_id_,
160
+ hue=hue,
161
+ saturation=saturation,
162
+ bridge_ip=bridge_ip,
163
+ username=username,
164
+ verbose=verbose,
165
+ )
166
+
167
+ sleep(interval)
168
+
169
+ saturation = 254 - saturation
170
+
171
+ return True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: blue_assistant
3
- Version: 4.194.1
3
+ Version: 4.221.1
4
4
  Summary: 🧠 An AI Assistant.
5
5
  Home-page: https://github.com/kamangir/blue-assistant
6
6
  Author: Arash Abadpour (Kamangir)
@@ -62,6 +62,7 @@ graph LR
62
62
  url["🔗 url"]:::folder
63
63
  object["📂 object"]:::folder
64
64
 
65
+
65
66
  script --> assistant_script_list
66
67
 
67
68
  script --> assistant_script_run
@@ -71,12 +72,39 @@ graph LR
71
72
  url --> assistant_web_crawl
72
73
  assistant_web_crawl --> object
73
74
 
75
+
76
+ bridge_ip["🔗 bridge_ip"]:::folder
77
+ hue_username["🔗 hue_username"]:::folder
78
+ list_of_lights["💡 light IDs"]:::folder
79
+
80
+ hue_create_user["@hue<br>create_user"]
81
+ hue_list["@hue<br>list"]
82
+ hue_set["@hue<br>set"]
83
+ hue_test["@hue<br>test"]
84
+
85
+ bridge_ip --> hue_create_user
86
+ hue_create_user --> hue_username
87
+
88
+ bridge_ip --> hue_list
89
+ hue_username --> hue_list
90
+ hue_list --> list_of_lights
91
+
92
+ bridge_ip --> hue_set
93
+ hue_username --> hue_set
94
+ list_of_lights --> hue_set
95
+
96
+ bridge_ip --> hue_test
97
+ hue_username --> hue_test
98
+ list_of_lights --> hue_test
99
+
100
+
101
+
74
102
  classDef folder fill:#999,stroke:#333,stroke-width:2px;
75
103
  ```
76
104
 
77
105
  | | |
78
106
  | --- | --- |
79
- | [`hue`](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/hue) [![image](https://github.com/kamangir/assets/blob/main/blue-assistant/hue.jpg?raw=true)](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/hue) "send a color command to the Hue LED lights in my apartment." 🔥 | [`blue-amo`](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/blue_amo/README.md) [![image](https://github.com/kamangir/assets/raw/main/blue-amo-2025-02-03-nswnx6/stitching_the_frames-2.png?raw=true)](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/blue_amo/README.md) A story developed and visualized, by AI. |
107
+ | [`hue`](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/hue) [![image](https://github.com/kamangir/assets/raw/main/blue-assistant/20250314_143702.jpg?raw=true)](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/hue) "send a color command to the Hue LED lights in my apartment." | [`blue-amo`](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/blue_amo/README.md) [![image](https://github.com/kamangir/assets/raw/main/blue-amo-2025-02-03-nswnx6/stitching_the_frames-2.png?raw=true)](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/blue_amo/README.md) A story developed and visualized, by AI. |
80
108
  | [`orbital-data-explorer`](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/orbital_data_explorer/README.md) [![image](https://github.com/kamangir/assets/blob/main/blue-assistant/orbital-data-explorer.png?raw=true)](https://raw.githubusercontent.com/kamangir/blue-assistant/main/blue_assistant/script/repository/orbital_data_explorer/README.md) Access to the [Orbital Data Explorer](https://ode.rsl.wustl.edu/), through AI. ⏸️ | |
81
109
 
82
110
  ---
@@ -84,4 +112,4 @@ graph LR
84
112
 
85
113
  [![pylint](https://github.com/kamangir/blue-assistant/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/blue-assistant/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/blue-assistant/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/blue-assistant/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/blue-assistant/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/blue-assistant/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/blue-assistant.svg)](https://pypi.org/project/blue-assistant/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/blue-assistant)](https://pypistats.org/packages/blue-assistant)
86
114
 
87
- built by 🌀 [`blue_options-4.234.1`](https://github.com/kamangir/awesome-bash-cli), based on 🧠 [`blue_assistant-4.194.1`](https://github.com/kamangir/blue-assistant).
115
+ built by 🌀 [`blue_options-4.234.1`](https://github.com/kamangir/awesome-bash-cli), based on 🧠 [`blue_assistant-4.221.1`](https://github.com/kamangir/blue-assistant).
@@ -1,26 +1,28 @@
1
- blue_assistant/README.py,sha256=CfWGCgzrRjJYsTzb54xEN8wMcd4i07uiXMexPXNIZPM,1892
2
- blue_assistant/__init__.py,sha256=pguwP78L_PIpppm8r4yKoUl5NaCDWsugNTfBiFi4U0Y,311
1
+ blue_assistant/README.py,sha256=GEtSZDyrctYxvOWNkRRMbfuJiX6U-ttM8FU3kWFhZkI,1898
2
+ blue_assistant/__init__.py,sha256=Vawh9IzcpQbt-fsBQ-UhBtRilKjbsnDHbJDa2JNIyFg,311
3
3
  blue_assistant/__main__.py,sha256=URtal70XZc0--3FDTYWcLtnGOqBYjMX9gt-L1k8hDXI,361
4
4
  blue_assistant/config.env,sha256=hH4mWFF8fQaBscocDiHLsJ3tstoLSq0MvNRqTTCscww,247
5
- blue_assistant/env.py,sha256=ruMvPEthUs1rS7RtoKcSO6WY8u8UqVkItkgZaU8yMGU,579
5
+ blue_assistant/env.py,sha256=YU20gy7_qlS3nG_U-ZKp8K2pXz2dxDp__IS0bQDEWnY,633
6
6
  blue_assistant/functions.py,sha256=ajz1GSNU9xYVrFEDSz6Xwg7amWQ_yvW75tQa1ZvRIWc,3
7
7
  blue_assistant/host.py,sha256=SapEe4s9J-7gV3F9JuWEmSfslCeWuJ5f7a-nFObFBrI,208
8
8
  blue_assistant/logger.py,sha256=3MfsXwivdRfVPjAjqdQld3iOg9JB6olbACL8t8gIRgI,105
9
- blue_assistant/sample.env,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ blue_assistant/sample.env,sha256=rFfaN3lwiVm1CW28Pi0ZPwJPuu7_r3QWL54jIgHK_fY,20
10
10
  blue_assistant/urls.py,sha256=59Op4CwgZeo1ZtFouisZxMk07zJNBOqlVAi8tXpsidM,20
11
11
  blue_assistant/.abcli/abcli.sh,sha256=56ZicaXpbZ4zuaGPZJTEgfajokNUWTklzl38vENGzz0,198
12
12
  blue_assistant/.abcli/actions.sh,sha256=vW1hNMuhjghvqib0775kDzDwqGnqPo3mqLTUkPCd8z4,236
13
13
  blue_assistant/.abcli/alias.sh,sha256=UOAS8mrAr-kKx0QQpfPf-nYBKL7lkR8tSF6bWviA09Y,85
14
14
  blue_assistant/.abcli/blue_assistant.sh,sha256=plLTQQerVmfb_SNlOkv0MEaQCF7YdsOHzCq0M3FWT4c,239
15
15
  blue_assistant/.abcli/browse.sh,sha256=qZ_RK_WnsjmF-hfWKiMEOnnv22QtZh9HQ0VFJUbP6aI,294
16
- blue_assistant/.abcli/hue.sh,sha256=Sgph5Wm-Gm9ajfXF19jft-Wr04vB2oPN-KcO1sn3M4Y,344
16
+ blue_assistant/.abcli/hue.sh,sha256=avQT49SlA2ZPDvSdme1vWqDAYtAOHJQI8-3LdqXvBZc,362
17
17
  blue_assistant/.abcli/script.sh,sha256=XIkY4eZyFPKLi_mLoPMbnq76E4K1GG3xxha8VYJC2zI,356
18
18
  blue_assistant/.abcli/web.sh,sha256=1HA3u6umxwZro_CnxD2H9_WABypeSfMU-X2ncFMnU8c,344
19
+ blue_assistant/.abcli/hue/create_user.sh,sha256=Nh8FhnGweB2JZB7SVh-6jp8ud5YHeJSaCe_0MdkgsxI,282
20
+ blue_assistant/.abcli/hue/list.sh,sha256=ynptjPo6jZnwm-7wAVgGx-mZvyPKZ9b5JaJoY0xidCg,268
19
21
  blue_assistant/.abcli/hue/set.sh,sha256=VcADsfbjjbrxIMX9cVVHeK0MH649ZRY29V8YDTgflms,266
20
22
  blue_assistant/.abcli/script/list.sh,sha256=2lcVfqDfZP50NszF8o5YCo3TrJKeDc_qo7MTAF3XTGw,131
21
23
  blue_assistant/.abcli/script/run.sh,sha256=kSXmyM9NUj2X2orSGyu5t_P5frG-gyumbRq-xqF692c,911
22
24
  blue_assistant/.abcli/tests/README.sh,sha256=Qs0YUxVB1OZZ70Nqw2kT1LKXeUnC5-XfQRMfqb8Cbwg,152
23
- blue_assistant/.abcli/tests/help.sh,sha256=VKcritMf2q4KxLDTACOV0CocwqNnUu-oprcnDeSLgvk,842
25
+ blue_assistant/.abcli/tests/help.sh,sha256=V9eOnJFClPumxX69TtZ8fR6HBdueRQOfqwRUQNPj27M,915
24
26
  blue_assistant/.abcli/tests/script_list.sh,sha256=OVOwWO9wR0eeDZTM6uub-eTKbz3eswU3vEUPWXcK-gQ,178
25
27
  blue_assistant/.abcli/tests/script_run.sh,sha256=vfmK8sjkMfSQPwCacQppiL6inMbvQP7nci7qLppFSL0,769
26
28
  blue_assistant/.abcli/tests/version.sh,sha256=oR2rvYR8zi-0VDPIdPJsmsmWwYaamT8dmNTqUh3-8Gw,154
@@ -29,7 +31,7 @@ blue_assistant/.abcli/web/crawl.sh,sha256=M9YoKKJBKZT2OtmFPvRCSSKpiAq0zyacRAVZ6s
29
31
  blue_assistant/help/__init__.py,sha256=ajz1GSNU9xYVrFEDSz6Xwg7amWQ_yvW75tQa1ZvRIWc,3
30
32
  blue_assistant/help/__main__.py,sha256=cVejR7OpoWPg0qLbm-PZf5TuJS27x49jzfiyCLyzEns,241
31
33
  blue_assistant/help/functions.py,sha256=O85zVEMtnm32O7KB6W6uQRoFXnE_4dW5pwYZtMakYDg,865
32
- blue_assistant/help/hue.py,sha256=2c7yvUXQ5D15nVyKM8bGKxqlVoJjrZWdVOwFBFNqCTw,665
34
+ blue_assistant/help/hue.py,sha256=1CfhpUF3MjXkNacmsII3UD0inMZ8HNjw9-4lw3Oo0PU,2117
33
35
  blue_assistant/help/script.py,sha256=tofv49tIBqoH8ed9hDCFHqzWaXmyyPofvqElk2n976w,1121
34
36
  blue_assistant/help/web.py,sha256=yOtA1IdQLBbhx_0Q1xLNwzdHozXdpALMYtwS5X3889o,575
35
37
  blue_assistant/script/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -50,9 +52,9 @@ blue_assistant/script/repository/blue_amo/actions/stitching_the_frames.py,sha256
50
52
  blue_assistant/script/repository/generic/__init__.py,sha256=kLffGsQMQAFJTw6IZBE5eBxvshP1x9wwHHR4hsDJblo,75
51
53
  blue_assistant/script/repository/generic/classes.py,sha256=LqxQGRbakikvGwdQB8jjqlpsjt-PGKC9BcHMSO9wN-E,2318
52
54
  blue_assistant/script/repository/hue/__init__.py,sha256=WjL9GIlN-DBnbUMJ8O_FxTp0rcVGlsIS3H9YtXEefTk,76
53
- blue_assistant/script/repository/hue/__main__.py,sha256=_OMa721WQ6Q3zCabrPfD9OEwktyzxy6Wi2sE22PqwqI,1280
55
+ blue_assistant/script/repository/hue/__main__.py,sha256=8H-NyzQKvbJK9EuiPKdjT3gtLnRGKwbXKwVStYc5y_8,2083
54
56
  blue_assistant/script/repository/hue/classes.py,sha256=YhifmcuylnZuI0_BjBPmwrSbsO-BOHDHNJ0pSLIExiE,188
55
- blue_assistant/script/repository/hue/functions.py,sha256=lpOBqQ2udUy53u8x-M32Dvfvo7kNmpNbFhJ7BAeDPNU,1219
57
+ blue_assistant/script/repository/hue/functions.py,sha256=paxyJ5MInXUuwpEBdukj079FEcFjFlfxitDHDq7ZOz4,4133
56
58
  blue_assistant/script/repository/orbital_data_explorer/__init__.py,sha256=yy5FtCeHlr9dRfqxw4QYWr7_yRjnQpwVyuAY2vLrh4Q,110
57
59
  blue_assistant/script/repository/orbital_data_explorer/classes.py,sha256=NEJeud6UPXarnAIEvAX_ZKFoRnyK1tiEIORSsrixLxQ,1024
58
60
  blue_assistant/script/repository/orbital_data_explorer/actions/__init__.py,sha256=RcrFUAwnvhuwNh3gC65w9G26vd_cIa7LV1lFvGFcigk,370
@@ -60,8 +62,8 @@ blue_assistant/script/repository/orbital_data_explorer/actions/researching_the_q
60
62
  blue_assistant/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
63
  blue_assistant/web/__main__.py,sha256=wriAODGqb_WRaXxq5KF5ZJp1pOzuTMlVElDafgZo5f0,1258
62
64
  blue_assistant/web/crawl.py,sha256=Sxkxg9b0IsQxL0ecEAcb13JwPOmwkwUie8XUeDChf1c,2249
63
- blue_assistant-4.194.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
64
- blue_assistant-4.194.1.dist-info/METADATA,sha256=gSMvACrGOz8uFIx0nDjAbp2WBnKmh4qGtHeEUFw9-2A,4213
65
- blue_assistant-4.194.1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
66
- blue_assistant-4.194.1.dist-info/top_level.txt,sha256=ud0BkBbdOVze13bNqHuhZj1rwCztaBtDf5ChEYzASOs,15
67
- blue_assistant-4.194.1.dist-info/RECORD,,
65
+ blue_assistant-4.221.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
66
+ blue_assistant-4.221.1.dist-info/METADATA,sha256=XGsZlBMRwKosIrLNSsr6viAJ66grSUGOcQj6uYerF6o,4826
67
+ blue_assistant-4.221.1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
68
+ blue_assistant-4.221.1.dist-info/top_level.txt,sha256=ud0BkBbdOVze13bNqHuhZj1rwCztaBtDf5ChEYzASOs,15
69
+ blue_assistant-4.221.1.dist-info/RECORD,,