bluer-sbc 8.4.1__py3-none-any.whl → 8.6.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.

Potentially problematic release.


This version of bluer-sbc might be problematic. Click here for more details.

@@ -6,7 +6,7 @@ function test_bluer_sbc_camera_capture() {
6
6
 
7
7
  local options=$1
8
8
 
9
- abcli_select \
9
+ bluer_ai_select \
10
10
  test_bluer_sbc_camera_capture-$(abcli_string_timestamp_short)
11
11
 
12
12
  abcli_eval ,$options \
@@ -22,7 +22,7 @@ function test_bluer_sbc_camera_capture_video() {
22
22
 
23
23
  local options=$1
24
24
 
25
- abcli_select \
25
+ bluer_ai_select \
26
26
  test_bluer_sbc_camera_capture_video-$(abcli_string_timestamp_short)
27
27
 
28
28
  abcli_eval ,$options \
@@ -55,7 +55,7 @@ function test_bluer_sbc_help() {
55
55
  \
56
56
  "bluer_sbc"; do
57
57
  abcli_eval ,$options \
58
- abcli_help $module
58
+ bluer_ai_help $module
59
59
  [[ $? -ne 0 ]] && return 1
60
60
 
61
61
  abcli_hr
bluer_sbc/__init__.py CHANGED
@@ -4,7 +4,7 @@ ICON = "🌀"
4
4
 
5
5
  DESCRIPTION = f"{ICON} AI for single board computers."
6
6
 
7
- VERSION = "8.4.1"
7
+ VERSION = "8.6.1"
8
8
 
9
9
  REPO_NAME = "bluer-sbc"
10
10
 
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage, xtra
3
+ from bluer_options.terminal import show_usage
4
4
 
5
5
 
6
6
  def help_validate(
bluer_sbc/help/camera.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage
3
+ from bluer_options.terminal import show_usage
4
4
 
5
5
 
6
6
  def help_capture_image(
bluer_sbc/help/grove.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage
3
+ from bluer_options.terminal import show_usage
4
4
 
5
5
 
6
6
  def help_info(
bluer_sbc/help/hat.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage
3
+ from bluer_options.terminal import show_usage
4
4
 
5
5
 
6
6
  def help_input(
bluer_sbc/help/lepton.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage, xtra
3
+ from bluer_options.terminal import show_usage, xtra
4
4
 
5
5
 
6
6
  def help_capture(
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage
3
+ from bluer_options.terminal import show_usage
4
4
 
5
5
 
6
6
  def help_validate(
bluer_sbc/help/session.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage, xtra
3
+ from bluer_options.terminal import show_usage, xtra
4
4
 
5
5
 
6
6
  def help_session_start(
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage, xtra
3
+ from bluer_options.terminal import show_usage, xtra
4
4
 
5
5
 
6
6
  def help_validate(
@@ -1,6 +1,6 @@
1
1
  from typing import List
2
2
 
3
- from blue_options.terminal import show_usage, xtra
3
+ from bluer_options.terminal import show_usage, xtra
4
4
 
5
5
 
6
6
  def help_validate(
@@ -4,8 +4,8 @@ import numpy as np
4
4
  from time import sleep
5
5
 
6
6
  from blueness import module
7
- from blue_options import string
8
- from blue_options import host
7
+ from bluer_options import string
8
+ from bluer_options import host
9
9
  from bluer_options.timer import Timer
10
10
  from bluer_options.logger import crash_report
11
11
  from bluer_objects import file, objects
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_sbc
3
- Version: 8.4.1
3
+ Version: 8.6.1
4
4
  Summary: 🌀 AI for single board computers.
5
5
  Home-page: https://github.com/kamangir/bluer-sbc
6
6
  Author: Arash Abadpour (Kamangir)
@@ -51,7 +51,7 @@ pip install bluer_sbc
51
51
 
52
52
  [![pylint](https://github.com/kamangir/bluer-sbc/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/bluer-sbc/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/bluer-sbc/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/bluer-sbc/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/bluer-sbc/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/bluer-sbc/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/bluer-sbc.svg)](https://pypi.org/project/bluer-sbc/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/bluer-sbc)](https://pypistats.org/packages/bluer-sbc)
53
53
 
54
- built by 🌀 [`bluer_options-5.32.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_sbc-8.4.1`](https://github.com/kamangir/bluer-sbc).
54
+ built by 🌀 [`bluer_options-5.32.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_sbc-8.6.1`](https://github.com/kamangir/bluer-sbc).
55
55
 
56
56
 
57
57
 
@@ -1,5 +1,5 @@
1
1
  bluer_sbc/README.py,sha256=PX_NHt0J5kkaF38D3g0wljQWCG3L7w5C9hkRd4SP680,1179
2
- bluer_sbc/__init__.py,sha256=ZU2-QH9zu7mx1RU546KS40ea-TmjqDn-r6cujfRPPFI,290
2
+ bluer_sbc/__init__.py,sha256=rI0dQcVyALF11ZX9af8PWt1Qnzg7RoxZEObgEW0Emec,290
3
3
  bluer_sbc/__main__.py,sha256=JV8oYpZDQbvcDpKJtbjU0hDeMJkzsDLGlhIWLmRpDQ4,348
4
4
  bluer_sbc/config.env,sha256=_0-DQI3JZ5lvC1750KepY4ug6apI0I5EhcbZ3JD1yZs,652
5
5
  bluer_sbc/env.py,sha256=w1kYRW06SUm4AzyrqWX1SDRahR8eHWmWHEV1WQ3k1rs,1554
@@ -29,8 +29,8 @@ bluer_sbc/.abcli/install/sparkfun_top_phat.sh,sha256=XD2KBPNjkUpaUrLE434TnOqht22
29
29
  bluer_sbc/.abcli/install/template.sh,sha256=YZ5zjPGkt9ZFXYxALooDf8f71DtZJqEu_1zPZLKWS74,206
30
30
  bluer_sbc/.abcli/install/unicorn_16x16.sh,sha256=Pxmuzzswp4OR9e4srTcHF_tlU6f5YDp8Ei2QR-Vs1O8,490
31
31
  bluer_sbc/.abcli/tests/README.sh,sha256=6mWswcFc-7VQezPxR8fHvQ5bWgFMRjrLhbrYwv8n9r4,139
32
- bluer_sbc/.abcli/tests/camera.sh,sha256=2PA66gDoVnIuIUCfOU_I_sKGCY1YBs2a7uc3VdBl6Cg,992
33
- bluer_sbc/.abcli/tests/help.sh,sha256=7uuhDksohrbUkHlf2NkII1pFsB1yfb3VWNYUkfxovBQ,1450
32
+ bluer_sbc/.abcli/tests/camera.sh,sha256=VjamlnMfnzpLtiSGtMOarHmyHo1bO6GgpHN2iAIoHyM,998
33
+ bluer_sbc/.abcli/tests/help.sh,sha256=-R5VCGB3DUhnLYGqMY_mR0J7ab_AVY9T4RuOBxh4H_U,1453
34
34
  bluer_sbc/.abcli/tests/version.sh,sha256=mLLaswbuyDiyUZVj3gOLrdp2kK_TTOUoAeRHc4mwFOc,144
35
35
  bluer_sbc/algo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  bluer_sbc/algo/diff.py,sha256=hWkpvUCDY6d9xXNhArJbtMhu5gw8RL4FjkRf35fR63E,2242
@@ -51,21 +51,21 @@ bluer_sbc/hardware/sparkfun_top_phat/__main__.py,sha256=NbXhK8C_s5fqkVe2DeWIpcBT
51
51
  bluer_sbc/hardware/sparkfun_top_phat/classes.py,sha256=5q_ZbMNvGGIb2In18W_6f3CSbw2-pZgrFUUj7X_4KzA,3140
52
52
  bluer_sbc/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  bluer_sbc/help/__main__.py,sha256=Aj_lNOTJiCYZK3MrOlETIiFWiFPjZ2vaGzDk0Q3uTYA,229
54
- bluer_sbc/help/adafruit_rgb_matrix.py,sha256=yoXwfRZla0kGq_PBvHfvZIj58NcRzUSfy_5ZU3zkq9I,389
55
- bluer_sbc/help/camera.py,sha256=ZyfpkEdVCE2geyK8bdl0Mo_evH1cP6m_LlV95IDA_bU,1123
54
+ bluer_sbc/help/adafruit_rgb_matrix.py,sha256=VPQkAPb17K9AP2rMpH8yDPIXVG_dXiPZ0C8qtjZKTB8,384
55
+ bluer_sbc/help/camera.py,sha256=-zN4k8Hny0ZPLNxH4z4ogVFFPvrgV-XPZWveGK0tXNg,1124
56
56
  bluer_sbc/help/functions.py,sha256=-CbagRe_wSDGyzBTevqiCr6eMu_EL89Yhw1PGfzsL88,1582
57
- bluer_sbc/help/grove.py,sha256=d6-3HiaSRgwqKzesaeAaW5ua46ODpDSbmVHy2LY29rg,1025
58
- bluer_sbc/help/hat.py,sha256=bBCRGRQ-m8kxLcIAzL965nIVM9AistLTdTIPVxDc_Bk,884
59
- bluer_sbc/help/lepton.py,sha256=FVAtbbNY9JjogNumDu4t7JY4A3EDtQCI9WRjFt8IcoQ,617
60
- bluer_sbc/help/scroll_phat_hd.py,sha256=TuWLjsh13tGxN9bVWXUKZxK0Gw0RYjMb8pHRZcll_LI,373
61
- bluer_sbc/help/session.py,sha256=eXkWHP6RPeLTsrxeIj5CO1ErcqVWpK4uU0SqEKU6DUc,456
62
- bluer_sbc/help/sparkfun_top_phat.py,sha256=Dt8R1-cFUi-aDZQ7fAzRiU1i0G8q1xcSuo2yfYGxU1A,444
63
- bluer_sbc/help/unicorn_16x16.py,sha256=7s0FJnu8H87JjfJDj-NW7Lm5tJ_0_rzx1P5UXYXkxpc,377
57
+ bluer_sbc/help/grove.py,sha256=4CM3_RUeu6hMr1zmkz4f-V7Mzb75vcYv0dfoQKw2KJI,1026
58
+ bluer_sbc/help/hat.py,sha256=fhiEFoWYolmh-loZ87fYghEJK-XLUpkUc4pDj2WWdAE,885
59
+ bluer_sbc/help/lepton.py,sha256=NNJY9f1gkZCD7fGf0chFjncbLOSpb79VLyZ2jxj4rG4,618
60
+ bluer_sbc/help/scroll_phat_hd.py,sha256=pLMIGMKIzRgN2LcNjIPNQiJ0mIowKjxkBhS40PIst1c,374
61
+ bluer_sbc/help/session.py,sha256=kN4cSOJhwCDYvatjTsnUX-li76p0fnS4gRlJ5OQEeDM,457
62
+ bluer_sbc/help/sparkfun_top_phat.py,sha256=4JQMqzapnx5PBtzfw8RqpqgXtnF0HqDWxuTssK0OHUo,445
63
+ bluer_sbc/help/unicorn_16x16.py,sha256=0uKABkkY7VGfmUj2U8g0fA0AvXDBlloVzGQXbx_mPO8,378
64
64
  bluer_sbc/imager/__init__.py,sha256=THkQ_yCpArJKfP7u_oeR-W7vGzCmXFDOa102FTDPAT4,419
65
65
  bluer_sbc/imager/classes.py,sha256=ikfQuazosqVHx-NEXArDvvCCbrOw8YJmRG6yPmiOijo,519
66
66
  bluer_sbc/imager/camera/__init__.py,sha256=n3jSl-WtSgP0DN9Qbl4cbs12tUmsmftxsJx7HXlHeeo,72
67
67
  bluer_sbc/imager/camera/__main__.py,sha256=KIS6lH8jWhE8_8vamQVhM-xd78BQ0GxRBHf7s8BQXFw,1588
68
- bluer_sbc/imager/camera/classes.py,sha256=0xOXjbJ4umIIE6C14EgRW6aT_N1ycwaUUMGdrP-nNBc,7198
68
+ bluer_sbc/imager/camera/classes.py,sha256=9i3nXO4Rb6k9mugz3HT_5Vqg2dHKVlmekgEhmIYaUPs,7200
69
69
  bluer_sbc/imager/camera/constants.py,sha256=bcQ9-iz0OeKII_uFFQYDMZnTxPkh1C--9IsdUFb1qsY,606
70
70
  bluer_sbc/imager/lepton/__init__.py,sha256=qHzzDoYLe-RxMjIul-HTxT7sRt3O-sVC44vZJQZ9VBU,72
71
71
  bluer_sbc/imager/lepton/__main__.py,sha256=AUurRrU64bqLDKoiMeMPbHyIu53Rz4426ihzsPX6Juk,1081
@@ -75,8 +75,8 @@ bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
75
75
  bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
76
76
  bluer_sbc/session/classes.py,sha256=o-dz8Uma52Yxpd-oJEMVnonr0OgMm34I70_WJbuKvLM,9005
77
77
  bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
78
- bluer_sbc-8.4.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
79
- bluer_sbc-8.4.1.dist-info/METADATA,sha256=gqjNCd3bzxDmoKevelpqVx5KRZ1BOJtd26uQuyOsmF4,2743
80
- bluer_sbc-8.4.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
81
- bluer_sbc-8.4.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
82
- bluer_sbc-8.4.1.dist-info/RECORD,,
78
+ bluer_sbc-8.6.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
79
+ bluer_sbc-8.6.1.dist-info/METADATA,sha256=eXd9azBwQ4P6R7XWCCxCvUsmlBF26bI1WitwswRKCRU,2743
80
+ bluer_sbc-8.6.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
81
+ bluer_sbc-8.6.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
82
+ bluer_sbc-8.6.1.dist-info/RECORD,,