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

@@ -48,6 +48,9 @@ function bluer_ai_seed_headless_ubuntu_rpi() {
48
48
  bluer_ai_seed add_repo repo=bluer-ugv
49
49
  seed="${seed}pip3 install -e .$delim_section"
50
50
 
51
+ bluer_ai_seed add_repo repo=bluer-algo
52
+ seed="${seed}pip3 install -e .$delim_section"
53
+
51
54
  seed="${seed}pip3 install RPi.GPIO$delim_section"
52
55
 
53
56
  seed="${seed}source \$HOME/git/bluer-ai/bluer_ai/.abcli/bluer_ai.sh$delim_section"
bluer_sbc/README.py CHANGED
@@ -4,48 +4,30 @@ from typing import List
4
4
  from bluer_objects import file, README
5
5
 
6
6
  from bluer_sbc import NAME, VERSION, ICON, REPO_NAME
7
+ from bluer_sbc.designs.blue_bracket import items as blue_bracket_items
8
+ from bluer_sbc.designs.bluer_swallow import items as bluer_swallow_items
9
+ from bluer_sbc.designs.bryce import items as bryce_items
10
+ from bluer_sbc.designs.bluer_swallow import marquee as bluer_swallow_marquee
11
+ from bluer_sbc.designs.bryce import marquee as bryce_marquee
7
12
 
8
13
 
9
- image_prefix = "https://github.com/kamangir/blue-bracket/raw/main/images/"
10
- design_prefix = "https://github.com/kamangir/blue-bracket/blob/main/designs/"
11
-
12
-
13
- def items() -> List[str]:
14
- return [
15
- "[![image]({}{})]({}{}.md)".format(
16
- image_prefix,
17
- item["image"],
18
- design_prefix,
19
- item["name"],
14
+ def build():
15
+ return all(
16
+ README.build(
17
+ items=readme.get("items", []),
18
+ cols=readme.get("cols", 3),
19
+ path=os.path.join(file.path(__file__), readme["path"]),
20
+ ICON=ICON,
21
+ NAME=NAME,
22
+ VERSION=VERSION,
23
+ REPO_NAME=REPO_NAME,
20
24
  )
21
- for item in [
22
- {
23
- "image": "blue3-1.jpg",
24
- "name": "blue3",
25
- },
26
- {
27
- "image": "chenar-grove-1.jpg",
28
- "name": "chenar-grove",
29
- },
30
- {
31
- "image": "cube-1.jpg",
32
- "name": "cube",
33
- },
25
+ for readme in [
34
26
  {
35
- "image": "eye_nano-1.jpg",
36
- "name": "eye_nano",
27
+ "items": bluer_swallow_marquee + bryce_marquee + blue_bracket_items,
28
+ "path": "..",
37
29
  },
30
+ {"items": bluer_swallow_items, "path": "./docs/bluer-swallow.md"},
31
+ {"items": bryce_items, "path": "./docs/bryce.md"},
38
32
  ]
39
- ]
40
-
41
-
42
- def build():
43
- return README.build(
44
- items=items(),
45
- cols=4,
46
- path=os.path.join(file.path(__file__), ".."),
47
- ICON=ICON,
48
- NAME=NAME,
49
- VERSION=VERSION,
50
- REPO_NAME=REPO_NAME,
51
33
  )
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.105.1"
7
+ VERSION = "8.121.1"
8
8
 
9
9
  REPO_NAME = "bluer-sbc"
10
10
 
File without changes
@@ -0,0 +1,33 @@
1
+ from bluer_objects import README
2
+
3
+ design_template = "https://github.com/kamangir/blue-bracket/blob/main/designs/{}.md"
4
+
5
+ image_template = "https://github.com/kamangir/blue-bracket/raw/main/images/{}"
6
+
7
+ items = README.Items(
8
+ [
9
+ {
10
+ "name": item["name"],
11
+ "marquee": image_template.format(item["image"]),
12
+ "url": design_template.format(item["name"]),
13
+ }
14
+ for item in [
15
+ {
16
+ "image": "blue3-1.jpg",
17
+ "name": "blue3",
18
+ },
19
+ {
20
+ "image": "chenar-grove-1.jpg",
21
+ "name": "chenar-grove",
22
+ },
23
+ {
24
+ "image": "cube-1.jpg",
25
+ "name": "cube",
26
+ },
27
+ {
28
+ "image": "eye_nano-1.jpg",
29
+ "name": "eye_nano",
30
+ },
31
+ ]
32
+ ]
33
+ )
@@ -0,0 +1,26 @@
1
+ from bluer_objects import README
2
+
3
+
4
+ image_template = (
5
+ "https://github.com/kamangir/assets2/blob/main/bluer-swallow/design/{}?raw=true"
6
+ )
7
+
8
+ marquee = README.Items(
9
+ [
10
+ {
11
+ "name": "bluer-swallow",
12
+ "marquee": image_template.format("06.jpg"),
13
+ "url": "./bluer_sbc/docs/bluer-swallow.md",
14
+ }
15
+ ]
16
+ )
17
+
18
+ items = README.Items(
19
+ [
20
+ {
21
+ "marquee": image_template.format(f"{index+1:02}.jpg"),
22
+ "name": "",
23
+ }
24
+ for index in range(6)
25
+ ]
26
+ )
@@ -0,0 +1,23 @@
1
+ from bluer_objects import README
2
+
3
+ image_template = "https://github.com/kamangir/assets2/blob/main/bryce/{}?raw=true"
4
+
5
+ marquee = README.Items(
6
+ [
7
+ {
8
+ "name": "bryce",
9
+ "marquee": image_template.format("08.jpg"),
10
+ "url": "./bluer_sbc/docs/bryce.md",
11
+ }
12
+ ]
13
+ )
14
+
15
+ items = README.Items(
16
+ [
17
+ {
18
+ "marquee": image_template.format(f"{index+1:02}.jpg"),
19
+ "name": "",
20
+ }
21
+ for index in range(9)
22
+ ]
23
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_sbc
3
- Version: 8.105.1
3
+ Version: 8.121.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)
@@ -34,9 +34,10 @@ pip install bluer_sbc
34
34
  @env dot cp <env-name> local
35
35
  ```
36
36
 
37
- | | | | |
38
- | --- | --- | --- | --- |
39
- | [![image](https://github.com/kamangir/blue-bracket/raw/main/images/blue3-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/blue3.md) | [![image](https://github.com/kamangir/blue-bracket/raw/main/images/chenar-grove-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/chenar-grove.md) | [![image](https://github.com/kamangir/blue-bracket/raw/main/images/cube-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) | [![image](https://github.com/kamangir/blue-bracket/raw/main/images/eye_nano-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/eye_nano.md) |
37
+ | | | |
38
+ | --- | --- | --- |
39
+ | [`bluer-swallow`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bluer-swallow.md) [![image](https://github.com/kamangir/assets2/blob/main/bluer-swallow/design/06.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bluer-swallow.md) | [`bryce`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bryce.md) [![image](https://github.com/kamangir/assets2/blob/main/bryce/08.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bryce.md) | [`blue3`](https://github.com/kamangir/blue-bracket/blob/main/designs/blue3.md) [![image](https://github.com/kamangir/blue-bracket/raw/main/images/blue3-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/blue3.md) |
40
+ | [`chenar-grove`](https://github.com/kamangir/blue-bracket/blob/main/designs/chenar-grove.md) [![image](https://github.com/kamangir/blue-bracket/raw/main/images/chenar-grove-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/chenar-grove.md) | [`cube`](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) [![image](https://github.com/kamangir/blue-bracket/raw/main/images/cube-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) | [`eye_nano`](https://github.com/kamangir/blue-bracket/blob/main/designs/eye_nano.md) [![image](https://github.com/kamangir/blue-bracket/raw/main/images/eye_nano-1.jpg)](https://github.com/kamangir/blue-bracket/blob/main/designs/eye_nano.md) |
40
41
 
41
42
 
42
43
 
@@ -49,7 +50,7 @@ pip install bluer_sbc
49
50
 
50
51
  [![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)
51
52
 
52
- built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.105.1`](https://github.com/kamangir/bluer-sbc).
53
+ built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.121.1`](https://github.com/kamangir/bluer-sbc).
53
54
 
54
55
 
55
56
  built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
@@ -1,5 +1,5 @@
1
- bluer_sbc/README.py,sha256=PX_NHt0J5kkaF38D3g0wljQWCG3L7w5C9hkRd4SP680,1179
2
- bluer_sbc/__init__.py,sha256=zhRQCpiUrRt01hNHeVG-FG8r8YJ6Uh4QEaWIDdNikj4,292
1
+ bluer_sbc/README.py,sha256=p-zQD0mdeXyPxgy9MpqlTH8tNhP2HMLO6J7Ta2Gv4qQ,1115
2
+ bluer_sbc/__init__.py,sha256=h3tRoy01zLGn4BL7CfKAIa1_O4N6jr1wZOC9syiV_Ps,292
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
@@ -22,7 +22,7 @@ bluer_sbc/.abcli/seed.sh,sha256=75cd8YCA7JGXgohVk-N9CjxCLjZpIoAWYGy_QJ9wHlA,1639
22
22
  bluer_sbc/.abcli/session.sh,sha256=90Y-2pzZnM3YZO9sYeshS83oiLUE38WqCl-gA_RfWT0,1003
23
23
  bluer_sbc/.abcli/sparkfun_top_phat.sh,sha256=F8dV3MjghNU1MMzCXRnQ0kaorr2BOswLBt8Sry5Youo,686
24
24
  bluer_sbc/.abcli/unicorn_16x16.sh,sha256=_cvgK1tT51BqN12HxEx_9FXWTNvPISd4T7pPmA2Jxfo,330
25
- bluer_sbc/.abcli/ROS/seed.sh,sha256=CAx0pF5MPxQvIJ2RCpS2CTawbE5AS4olrO6ywWMerEY,2313
25
+ bluer_sbc/.abcli/ROS/seed.sh,sha256=8OVfgFjU6KDv0V6V_CaRSswa4lACs3pQbVV8oGGVNnY,2407
26
26
  bluer_sbc/.abcli/install/adafruit_rgb_matrix.sh,sha256=YwUKVwwNtmETTomaPUi5O01_Bhoo9IZGdkv3ohGYyTY,452
27
27
  bluer_sbc/.abcli/install/grove.sh,sha256=4ceAMdU62p-_Y3gSF_ZLjqZqCnZ3ka_mKQVKu-bvdPI,848
28
28
  bluer_sbc/.abcli/install/lepton.sh,sha256=ziLRm872Y-SIRSqXFdSPap596hWFNOSJGz6oFLY4nMw,1005
@@ -39,6 +39,10 @@ bluer_sbc/.abcli/tests/version.sh,sha256=odDOmAFlzH7KtsAYWOmyLsQ6GAws6XadNlZ6H-N
39
39
  bluer_sbc/ROS/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
40
40
  bluer_sbc/algo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  bluer_sbc/algo/diff.py,sha256=ZCUkRgip-Uss86r--RuEwyYtFjpukM3fbY_yovXwgNw,2190
42
+ bluer_sbc/designs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ bluer_sbc/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
44
+ bluer_sbc/designs/bluer_swallow.py,sha256=8YQrnLJy3g19SXpweF3y1KJejtG6VAA82D5spytzN_g,527
45
+ bluer_sbc/designs/bryce.py,sha256=w-gTD9B4W16l-pqsYDan7hyQCBLN2Z9mSqV0vm1rNNg,487
42
46
  bluer_sbc/hardware/__init__.py,sha256=EW_u4fRXPVpAO47EaLZn0Vxo_rfE9a1O4cPdl_w6vOI,1421
43
47
  bluer_sbc/hardware/adafruit_rgb_matrix.py,sha256=4xFRghBXJWkDDOhPvO-Yt6xY61D451KKxjrUL8ZxXQ8,803
44
48
  bluer_sbc/hardware/display.py,sha256=bRjemItjmF3tJcWxP3e2lVB5Ul8br3_3PcJhfrBT7mY,3057
@@ -79,8 +83,8 @@ bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
79
83
  bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
80
84
  bluer_sbc/session/classes.py,sha256=WrfFBXf6Shz4PGyw1Xpr5nAnWbhfHXzabLnW393zbsE,8938
81
85
  bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
82
- bluer_sbc-8.105.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
83
- bluer_sbc-8.105.1.dist-info/METADATA,sha256=7cJ6f8v4cMyUWveb1Q7TyRLIxUTRgI2dwYyaGJ1vWUk,2705
84
- bluer_sbc-8.105.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
85
- bluer_sbc-8.105.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
86
- bluer_sbc-8.105.1.dist-info/RECORD,,
86
+ bluer_sbc-8.121.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
87
+ bluer_sbc-8.121.1.dist-info/METADATA,sha256=i5ZH8iMkwj1cYKqjgkFEL_RBmL-pymZ-zK0gk0pX0x4,3552
88
+ bluer_sbc-8.121.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
+ bluer_sbc-8.121.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
90
+ bluer_sbc-8.121.1.dist-info/RECORD,,