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

Files changed (44) hide show
  1. bluer_sbc/.abcli/{blue_sbc.sh → bluer_sbc.sh} +2 -0
  2. bluer_sbc/.abcli/sbc/parts/adjust.sh +12 -0
  3. bluer_sbc/.abcli/sbc/parts/cd.sh +5 -0
  4. bluer_sbc/.abcli/sbc/parts.sh +15 -0
  5. bluer_sbc/.abcli/tests/help.sh +4 -0
  6. bluer_sbc/.abcli/tests/parts_adjust.sh +13 -0
  7. bluer_sbc/README/__init__.py +0 -0
  8. bluer_sbc/README/aliases.py +11 -0
  9. bluer_sbc/README/build.py +29 -0
  10. bluer_sbc/README/design.py +32 -0
  11. bluer_sbc/README/designs/__init__.py +54 -0
  12. bluer_sbc/README/designs/battery_bus.py +26 -0
  13. bluer_sbc/{designs → README/designs}/bryce.py +1 -1
  14. bluer_sbc/{designs → README/designs}/cheshmak.py +1 -1
  15. bluer_sbc/{designs → README/designs}/nafha.py +1 -1
  16. bluer_sbc/{designs → README/designs}/shelter.py +3 -3
  17. bluer_sbc/{designs → README/designs}/swallow.py +1 -1
  18. bluer_sbc/{designs → README/designs}/swallow_head.py +2 -2
  19. bluer_sbc/{designs → README/designs}/ultrasonic_sensor_tester.py +1 -1
  20. bluer_sbc/README/designs/x.py +26 -0
  21. bluer_sbc/README/parts.py +15 -0
  22. bluer_sbc/README/root.py +30 -0
  23. bluer_sbc/README/shortcuts.py +17 -0
  24. bluer_sbc/__init__.py +2 -2
  25. bluer_sbc/__main__.py +3 -2
  26. bluer_sbc/designs/swallow/__init__.py +0 -0
  27. bluer_sbc/designs/swallow/parts.py +3 -0
  28. bluer_sbc/designs/swallow_head/__init__.py +0 -0
  29. bluer_sbc/designs/swallow_head/parts.py +15 -0
  30. bluer_sbc/help/functions.py +2 -0
  31. bluer_sbc/help/parts.py +49 -0
  32. bluer_sbc/parts/__init__.py +0 -0
  33. bluer_sbc/parts/__main__.py +41 -0
  34. bluer_sbc/parts/classes/db.py +208 -0
  35. bluer_sbc/parts/classes/part.py +96 -0
  36. bluer_sbc/parts/db.py +381 -0
  37. bluer_sbc-9.31.1.dist-info/METADATA +72 -0
  38. {bluer_sbc-8.233.1.dist-info → bluer_sbc-9.31.1.dist-info}/RECORD +43 -19
  39. bluer_sbc-8.233.1.dist-info/METADATA +0 -64
  40. /bluer_sbc/{designs → README/designs}/blue_bracket.py +0 -0
  41. /bluer_sbc/{designs → README/designs}/consts.py +0 -0
  42. {bluer_sbc-8.233.1.dist-info → bluer_sbc-9.31.1.dist-info}/WHEEL +0 -0
  43. {bluer_sbc-8.233.1.dist-info → bluer_sbc-9.31.1.dist-info}/licenses/LICENSE +0 -0
  44. {bluer_sbc-8.233.1.dist-info → bluer_sbc-9.31.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,72 @@
1
+ Metadata-Version: 2.4
2
+ Name: bluer_sbc
3
+ Version: 9.31.1
4
+ Summary: 🌀 AI for single board computers and related designs.
5
+ Home-page: https://github.com/kamangir/bluer-sbc
6
+ Author: Arash Abadpour (Kamangir)
7
+ Author-email: arash.abadpour@gmail.com
8
+ License: CC0-1.0
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Unix Shell
11
+ Classifier: Operating System :: OS Independent
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: bluer_ai
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: license
22
+ Dynamic: license-file
23
+ Dynamic: requires-dist
24
+ Dynamic: summary
25
+
26
+ # 🌀 bluer-sbc
27
+
28
+ 🌀 `bluer-sbc` is a [`bluer-ai`](https://github.com/kamangir/bluer-ai) plugin for edge computing on [single board computers](https://github.com/kamangir/blue-bracket).
29
+
30
+ ## installation
31
+
32
+ ```bash
33
+ pip install bluer_sbc
34
+
35
+ # @env dot list
36
+ @env dot cp <env-name> local
37
+ ```
38
+
39
+ ## aliases
40
+
41
+ [@camera](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/camera.md),
42
+ [@sbc rpi](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/sbc.md),
43
+ [@sbc <hardware>](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/hardware.md).
44
+
45
+ ## designs
46
+
47
+ | | | |
48
+ | --- | --- | --- |
49
+ | [`battery bus`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/battery-bus.md) [![image](https://github.com/kamangir/assets2/raw/main/battery-bus/concept.png)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/battery-bus.md) | [`swallow`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow.md) [![image](https://github.com/kamangir/assets2/blob/main/swallow/design/v5/01.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow.md) | [`swallow head`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow-head.md) [![image](https://github.com/kamangir/assets2/blob/main/swallow/design/head-v1/01.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow-head.md) |
50
+ | [`ultrasonic-sensor-tester`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/ultrasonic-sensor-tester.md) [![image](https://github.com/kamangir/assets2/blob/main/ultrasonic-sensor-tester/00.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/ultrasonic-sensor-tester.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) | [`cheshmak`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/cheshmak.md) [![image](https://github.com/kamangir/assets2/blob/main/cheshmak/01.png?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/cheshmak.md) |
51
+ | [`nafha`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/nafha.md) [![image](https://github.com/kamangir/assets2/blob/main/nafha/01.png?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/nafha.md) | [`shelter`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter.md) [![image](https://github.com/kamangir/assets2/raw/main/shelter/20251006_181554.jpg)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter.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) |
52
+ | [`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) |
53
+
54
+ ## shortcuts
55
+
56
+ | |
57
+ | --- |
58
+ | [`parts`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/parts) [![image](https://github.com/kamangir/assets2/raw/main/bluer-sbc/parts/XL4015.png)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/parts) |
59
+
60
+ ---
61
+
62
+ > 🌀 [`blue-sbc`](https://github.com/kamangir/blue-sbc) for the [Global South](https://github.com/kamangir/bluer-south).
63
+
64
+ ---
65
+
66
+
67
+ [![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)
68
+
69
+ built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-9.31.1`](https://github.com/kamangir/bluer-sbc).
70
+
71
+
72
+ built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
@@ -1,5 +1,5 @@
1
- bluer_sbc/__init__.py,sha256=VCaiSRdpeGNLS0bbi3ABERUnBEpqDOeJLZ9Tb-xQDz8,310
2
- bluer_sbc/__main__.py,sha256=JV8oYpZDQbvcDpKJtbjU0hDeMJkzsDLGlhIWLmRpDQ4,348
1
+ bluer_sbc/__init__.py,sha256=Z83TQHVp7FJXJfPJ-747rYqPL5o2Tg3xgttA76bRISM,311
2
+ bluer_sbc/__main__.py,sha256=mdHwITYb7ypMkevZnEBqFO-S4MYkdrTfbS8ZYTd5MBM,374
3
3
  bluer_sbc/config.env,sha256=Lp91dQZrPDtMO-87-pAw1wOqLMIYEI1MlNrXhvKMaoE,706
4
4
  bluer_sbc/env.py,sha256=saEjdk3FHmuK-WQUUpKfOatwmE93Y2Ula3rtGhRm0Zw,1745
5
5
  bluer_sbc/host.py,sha256=RacmqxPRBQrL--JHx_Q-KyuEjEZ1kSFu4fa5pCA0CHQ,209
@@ -10,7 +10,7 @@ bluer_sbc/.abcli/abcli.sh,sha256=Q_YRZUeFjN4UT9zT8lzrNIQSuORPie4Cp5CW5O2pX5w,290
10
10
  bluer_sbc/.abcli/actions.sh,sha256=P4d9lOzxdvkISZ0M3lZKH9JlmrcWTJ_HeEQAhIRLvC8,224
11
11
  bluer_sbc/.abcli/adafruit_rgb_matrix.sh,sha256=DwPJeuDXYa_F0r4nIWNeBYVtodyHYT2tV9JxPbWxhAM,382
12
12
  bluer_sbc/.abcli/alias.sh,sha256=PsTwzDXyeSvXGY-0LRF3U8df3AQVvPU35MOKQ4lx7xo,104
13
- bluer_sbc/.abcli/blue_sbc.sh,sha256=4O_0C56Xj5P7FjSTet5k7hvaNa-SIKpBUsz4MkBUc84,198
13
+ bluer_sbc/.abcli/bluer_sbc.sh,sha256=3uHU90LAi4UyX3S02_6MNMJRK-1GcVMjLdl-EsyRrTA,239
14
14
  bluer_sbc/.abcli/camera.sh,sha256=cmDDqUoy-YaO-nwKoTcsgrX-KbZ1JtXiPA3RVBoUb3s,447
15
15
  bluer_sbc/.abcli/grove.sh,sha256=6Lf4TiQzZj9uStCY9ezd8djcqVthzbybkmgmZ8Kr9wE,1180
16
16
  bluer_sbc/.abcli/hat.sh,sha256=ggMb9XOFA3t3sBTGalQK4x7yNuAgK3jA6UkFDWAnndM,449
@@ -29,6 +29,9 @@ bluer_sbc/.abcli/install/sparkfun_top_phat.sh,sha256=3kOMZXBafLm2RqHXXgTx2Ez5WwY
29
29
  bluer_sbc/.abcli/install/template.sh,sha256=Qqj6JKZlaxAqUGbY88gkNn-v-_aTUtKzpyi-lw353aY,215
30
30
  bluer_sbc/.abcli/install/unicorn_16x16.sh,sha256=zt6VN6c6cLQ59m7GiUNdV7aPTfO8CRoYtSs4VIuEJFw,496
31
31
  bluer_sbc/.abcli/rpi/fake_display.sh,sha256=3GWrqk8Dqwtg_ufDBDQzBilk7bi_Y_4_aw7-v6IJGDI,420
32
+ bluer_sbc/.abcli/sbc/parts.sh,sha256=euN-L3Gp1m_RUA8X2hkdTKwvWHPVC2hTQejdLsEhaxg,311
33
+ bluer_sbc/.abcli/sbc/parts/adjust.sh,sha256=Rx9OCnTWr3rHobDiAzUK1cs-SwhEa07uT_-uLuxvKZ0,268
34
+ bluer_sbc/.abcli/sbc/parts/cd.sh,sha256=0XUPReFBcX7Xj-JUR_dmQMh4L4RkfSx8bDGBBHDS92Y,103
32
35
  bluer_sbc/.abcli/seed/headless_rpi.sh,sha256=Sen1-Spg6lvBAzAqacLw42iJgME-v3yVs5T1qMuSO6c,2298
33
36
  bluer_sbc/.abcli/seed/headless_rpi_64_bit.sh,sha256=1DzrVSSNIvKLW8J1fI7Iqepk1cB2fvHpvez3EW-Dscw,1363
34
37
  bluer_sbc/.abcli/seed/headless_ubuntu_rpi.sh,sha256=QQRkOLstdWequW4eutQPimhKwT1yHtHNRUJNhKN3FZ0,2512
@@ -37,22 +40,37 @@ bluer_sbc/.abcli/seed/rpi.sh,sha256=HzCcPnuC2DneMtiHawD6tjcgLuyCstljl-A90kmpDeg,
37
40
  bluer_sbc/.abcli/seed/swallow_raspbian.sh,sha256=QK9YSkLA0_j5D_r8cp5DENLKhnczUj4a40O4w68ER98,363
38
41
  bluer_sbc/.abcli/tests/README.sh,sha256=0hp3y_URdsFtnYw5Ujty6xy5SNhNHGEVPqpQoYxu0WA,142
39
42
  bluer_sbc/.abcli/tests/camera.sh,sha256=NRr-RbyNORMSHYxNu6VUpVzHIJ2Qy-5NQr2qh54kqUg,1013
40
- bluer_sbc/.abcli/tests/help.sh,sha256=2fzkUvk4jMS8a8SV-5_NY6WAuRGLoyCL_RxvIwbufMk,1424
43
+ bluer_sbc/.abcli/tests/help.sh,sha256=aPok1fm9G1kIfu9tWJLltqVukygMhj1PIvWCSx0P6lw,1513
44
+ bluer_sbc/.abcli/tests/parts_adjust.sh,sha256=VlmhDmqnPSM6ad6uZ1zp70CLNe-jRIxUngVov9MtPG4,249
41
45
  bluer_sbc/.abcli/tests/seed.sh,sha256=NQUQzgHQZITgaq2aFkiZkaLT0VKmIsrl3aTqSkr8670,392
42
46
  bluer_sbc/.abcli/tests/version.sh,sha256=odDOmAFlzH7KtsAYWOmyLsQ6GAws6XadNlZ6H-NZuzc,147
47
+ bluer_sbc/README/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ bluer_sbc/README/aliases.py,sha256=jv6YlFBk7Bn72MEutmZ6UpELpLQs_i3_3Rm8BlPMc5g,161
49
+ bluer_sbc/README/build.py,sha256=42pCUarnbdwxuWci1GnCSWMtkt5P-zbiyHRd6ItVMqc,862
50
+ bluer_sbc/README/design.py,sha256=8fXtkyNbIhiwn2DZcFhIpHjr_qkd2-HSUgPbm2jOG7U,717
51
+ bluer_sbc/README/parts.py,sha256=ZCpU1-zWwOmEJlg1kypXYSGt5rQpTkrasiFZTzaN0-Q,359
52
+ bluer_sbc/README/root.py,sha256=rCdMGJjOiCkTPcE7Uy01-Y-LaRfDoFJN1SeUPDXLOuE,1167
53
+ bluer_sbc/README/shortcuts.py,sha256=RsxRMOunuA5-mLrZ5-jYfchuaKWaI6Bu49lrc3vn7PE,377
54
+ bluer_sbc/README/designs/__init__.py,sha256=RLRPGezJkcO1fxlqYtaHB1ccO80bDKK3u2oCGSz7SIQ,1764
55
+ bluer_sbc/README/designs/battery_bus.py,sha256=zgLLMelgqemv6xMML_H3ihb9hNyMn79l8Fyhlkk4tjE,558
56
+ bluer_sbc/README/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
57
+ bluer_sbc/README/designs/bryce.py,sha256=9mfOoMy9Rk1AITj480CoLYdgzWNraAwwypc5kVpEB_Q,474
58
+ bluer_sbc/README/designs/cheshmak.py,sha256=fG0zRc6vVm5Nj07Juq13PPGp0ZUWyLqA9-nAUpnzr1Q,483
59
+ bluer_sbc/README/designs/consts.py,sha256=de1X1_0CESgSGYUI8dGh8RBoYtu_G3NrBsFvuSdHJWk,59
60
+ bluer_sbc/README/designs/nafha.py,sha256=7IOfF_bfWaPNeV-VEXjsXjkydxJKlRTQX6rEOAtmSSc,474
61
+ bluer_sbc/README/designs/shelter.py,sha256=uFmhEvXMRBmwE0zXdb37xWt8FnayXijZgfLX2_soxhc,853
62
+ bluer_sbc/README/designs/swallow.py,sha256=jyl_oJNsTcBGzDLDAYRt-Vi-YmuuEt3iSCNTxaUKRXI,491
63
+ bluer_sbc/README/designs/swallow_head.py,sha256=dDGTjEbTiELTPQxGZ7fJeq2F9fJpGg-umP8fz7bZlBg,506
64
+ bluer_sbc/README/designs/ultrasonic_sensor_tester.py,sha256=fljUikScYa9Y2tcMs7QRwYbUd-NA59Pc7IQtyZyA2w0,524
65
+ bluer_sbc/README/designs/x.py,sha256=1AmuFV4WmVwE8lwZMn_juwFSlwC2VHVgcDbkCdAt_FM,474
43
66
  bluer_sbc/ROS/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
44
67
  bluer_sbc/algo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
68
  bluer_sbc/algo/diff.py,sha256=ZCUkRgip-Uss86r--RuEwyYtFjpukM3fbY_yovXwgNw,2190
46
69
  bluer_sbc/designs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- bluer_sbc/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
48
- bluer_sbc/designs/bryce.py,sha256=nkyQV3HTwHX2Typl2GXuxU2n9A5p-aukhSAsERUa71A,467
49
- bluer_sbc/designs/cheshmak.py,sha256=bGclGc0KR0TUlk0KBrTCYK7IWmdGoQNCF-bRH8HlJ4o,476
50
- bluer_sbc/designs/consts.py,sha256=de1X1_0CESgSGYUI8dGh8RBoYtu_G3NrBsFvuSdHJWk,59
51
- bluer_sbc/designs/nafha.py,sha256=Rrhip8ruIPGgo3J3DfL_f8u7cH6YtFumuW-zVinv1DA,467
52
- bluer_sbc/designs/shelter.py,sha256=ZAo392XPZzZyIITStzTIUNMGJX_5n90ejucqNeuM8CY,848
53
- bluer_sbc/designs/swallow.py,sha256=gEcy9l1EgIuoMrWjJLnJid9DiWcSmPjNU7YPIVudsSE,484
54
- bluer_sbc/designs/swallow_head.py,sha256=J11-Qh-tgJRLxn_pcAzTVkJkO0ssyOL9tgQXXynoyWw,506
55
- bluer_sbc/designs/ultrasonic_sensor_tester.py,sha256=d0_v9VteTGZszELA9aUq1YlMpEvDQoABuYu0F9lRcSI,517
70
+ bluer_sbc/designs/swallow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ bluer_sbc/designs/swallow/parts.py,sha256=CwSCtcDv6-FkdKmWB0ohlkKXyWU00-0BV1iZz_KjFog,42
72
+ bluer_sbc/designs/swallow_head/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ bluer_sbc/designs/swallow_head/parts.py,sha256=o_zEF-XPaJBTi4iuxzHIKBqDBeIAtntcDXLbHkZQdKA,396
56
74
  bluer_sbc/hardware/__init__.py,sha256=EW_u4fRXPVpAO47EaLZn0Vxo_rfE9a1O4cPdl_w6vOI,1421
57
75
  bluer_sbc/hardware/adafruit_rgb_matrix.py,sha256=4xFRghBXJWkDDOhPvO-Yt6xY61D451KKxjrUL8ZxXQ8,803
58
76
  bluer_sbc/hardware/display.py,sha256=bRjemItjmF3tJcWxP3e2lVB5Ul8br3_3PcJhfrBT7mY,3057
@@ -72,10 +90,11 @@ bluer_sbc/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
90
  bluer_sbc/help/__main__.py,sha256=Aj_lNOTJiCYZK3MrOlETIiFWiFPjZ2vaGzDk0Q3uTYA,229
73
91
  bluer_sbc/help/adafruit_rgb_matrix.py,sha256=VPQkAPb17K9AP2rMpH8yDPIXVG_dXiPZ0C8qtjZKTB8,384
74
92
  bluer_sbc/help/camera.py,sha256=uWMbQJuxPIz5KafNL6uSJqcRs6tH91pawui7TP7wd-4,1067
75
- bluer_sbc/help/functions.py,sha256=WhqDhBHMDAm4suAJ10rx-6Tr-yhx3JdjtyR9NOxk080,1266
93
+ bluer_sbc/help/functions.py,sha256=NxyBTbAHvx8-HM8B5JdYAjKfRinB7U1TDrmim5ZDctA,1357
76
94
  bluer_sbc/help/grove.py,sha256=4CM3_RUeu6hMr1zmkz4f-V7Mzb75vcYv0dfoQKw2KJI,1026
77
95
  bluer_sbc/help/hat.py,sha256=fhiEFoWYolmh-loZ87fYghEJK-XLUpkUc4pDj2WWdAE,885
78
96
  bluer_sbc/help/lepton.py,sha256=NNJY9f1gkZCD7fGf0chFjncbLOSpb79VLyZ2jxj4rG4,618
97
+ bluer_sbc/help/parts.py,sha256=zhkp2_33nTTAAnTbhka5eMIcKxSBumDdQS1I5d2_tE0,734
79
98
  bluer_sbc/help/rpi.py,sha256=ZD1iOaG0af01wHVFuPBFo0HsDqC7lzNGgxCyxsyUKBs,457
80
99
  bluer_sbc/help/scroll_phat_hd.py,sha256=pLMIGMKIzRgN2LcNjIPNQiJ0mIowKjxkBhS40PIst1c,374
81
100
  bluer_sbc/help/sparkfun_top_phat.py,sha256=4JQMqzapnx5PBtzfw8RqpqgXtnF0HqDWxuTssK0OHUo,445
@@ -92,12 +111,17 @@ bluer_sbc/imager/lepton/__init__.py,sha256=qHzzDoYLe-RxMjIul-HTxT7sRt3O-sVC44vZJ
92
111
  bluer_sbc/imager/lepton/__main__.py,sha256=AUurRrU64bqLDKoiMeMPbHyIu53Rz4426ihzsPX6Juk,1081
93
112
  bluer_sbc/imager/lepton/classes.py,sha256=CnWEwaBZC2hAFuYkv32SAu7GaIK1A-PiLEppAgL7z4M,963
94
113
  bluer_sbc/imager/lepton/python2.py,sha256=1jAHHzmda_bmqKj0b0X-2KONW5s9umxKaTY4ZieoaCI,1600
114
+ bluer_sbc/parts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ bluer_sbc/parts/__main__.py,sha256=BvSd7uLq-zq1Sjw_I6tvOk2Gcb67mOBRf3lZxMHmuQo,763
116
+ bluer_sbc/parts/db.py,sha256=FZcNtlJM3nKI0tDZlc6PSXXHsu6tROargI3taKG_l5g,8798
117
+ bluer_sbc/parts/classes/db.py,sha256=YuGuIWGkSNMUcsd8KSCq5hGrXS_uPtZuzAUtp65QgNU,5679
118
+ bluer_sbc/parts/classes/part.py,sha256=tKXjipFRwu0-Gc53VXivwaeqhyYr9uunG6EUzcdr_x8,2181
95
119
  bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
120
  bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
97
121
  bluer_sbc/session/classes.py,sha256=6pEh-TBjekUZBbWj_zKh3LAntAoGfcMHtS2SJ77nyC8,9355
98
122
  bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
99
- bluer_sbc-8.233.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
100
- bluer_sbc-8.233.1.dist-info/METADATA,sha256=xlCrEpnPzxZbbfs2oKIf2xdY4x6LRNh6yFUamK72YVU,5205
101
- bluer_sbc-8.233.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
102
- bluer_sbc-8.233.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
103
- bluer_sbc-8.233.1.dist-info/RECORD,,
123
+ bluer_sbc-9.31.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
124
+ bluer_sbc-9.31.1.dist-info/METADATA,sha256=RwTVzNgF_qMoM6x2BDLwqkGotKMBkkLRzHWyiAdZVco,5740
125
+ bluer_sbc-9.31.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
126
+ bluer_sbc-9.31.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
127
+ bluer_sbc-9.31.1.dist-info/RECORD,,
@@ -1,64 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: bluer_sbc
3
- Version: 8.233.1
4
- Summary: 🌀 AI for single board computers and other designs.
5
- Home-page: https://github.com/kamangir/bluer-sbc
6
- Author: Arash Abadpour (Kamangir)
7
- Author-email: arash.abadpour@gmail.com
8
- License: CC0-1.0
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Unix Shell
11
- Classifier: Operating System :: OS Independent
12
- Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
- Requires-Dist: bluer_ai
15
- Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: classifier
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
21
- Dynamic: license
22
- Dynamic: license-file
23
- Dynamic: requires-dist
24
- Dynamic: summary
25
-
26
- # 🌀 bluer-sbc
27
-
28
- 🌀 `bluer-sbc` is a [`bluer-ai`](https://github.com/kamangir/bluer-ai) plugin for edge computing on [single board computers](https://github.com/kamangir/blue-bracket).
29
-
30
- ## installation
31
-
32
- ```bash
33
- pip install bluer_sbc
34
-
35
- # @env dot list
36
- @env dot cp <env-name> local
37
- ```
38
-
39
- ## aliases
40
-
41
- [@camera](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/camera.md),
42
- [@sbc rpi](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/sbc.md),
43
- [@sbc <hardware>](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/hardware.md).
44
-
45
- | | | |
46
- | --- | --- | --- |
47
- | [`swallow`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow.md) [![image](https://github.com/kamangir/assets2/blob/main/swallow/design/v5/01.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow.md) | [`swallow head`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow-head.md) [![image](https://github.com/kamangir/assets2/blob/main/swallow/design/head-v1/01.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow-head.md) | [`ultrasonic-sensor-tester`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/ultrasonic-sensor-tester.md) [![image](https://github.com/kamangir/assets2/blob/main/ultrasonic-sensor-tester/00.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/ultrasonic-sensor-tester.md) |
48
- | [`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) | [`cheshmak`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/cheshmak.md) [![image](https://github.com/kamangir/assets2/blob/main/cheshmak/01.png?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/cheshmak.md) | [`nafha`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/nafha.md) [![image](https://github.com/kamangir/assets2/blob/main/nafha/01.png?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/nafha.md) |
49
- | [`shelter`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter.md) [![image](https://github.com/kamangir/assets2/raw/main/shelter/20251006_181554.jpg)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter.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) | [`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) |
50
- | [`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) | |
51
-
52
- ---
53
-
54
- > 🌀 [`blue-sbc`](https://github.com/kamangir/blue-sbc) for the [Global South](https://github.com/kamangir/bluer-south).
55
-
56
- ---
57
-
58
-
59
- [![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)
60
-
61
- built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.233.1`](https://github.com/kamangir/bluer-sbc).
62
-
63
-
64
- built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
File without changes
File without changes