bluer-sbc 8.188.1__py3-none-any.whl → 9.168.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.
Files changed (53) hide show
  1. bluer_sbc/.abcli/actions.sh +3 -0
  2. bluer_sbc/.abcli/alias.sh +2 -2
  3. bluer_sbc/.abcli/{blue_sbc.sh → bluer_sbc.sh} +2 -0
  4. bluer_sbc/.abcli/rpi.sh +1 -1
  5. bluer_sbc/.abcli/sbc/parts/adjust.sh +14 -0
  6. bluer_sbc/.abcli/sbc/parts/cd.sh +5 -0
  7. bluer_sbc/.abcli/sbc/parts.sh +15 -0
  8. bluer_sbc/.abcli/seed/rpi_64_bit.sh +36 -0
  9. bluer_sbc/.abcli/tests/help.sh +7 -3
  10. bluer_sbc/.abcli/tests/parts_adjust.sh +13 -0
  11. bluer_sbc/README/aliases.py +11 -0
  12. bluer_sbc/README/build.py +29 -0
  13. bluer_sbc/README/design.py +40 -0
  14. bluer_sbc/README/designs/__init__.py +26 -0
  15. bluer_sbc/README/designs/adapter_bus.py +59 -0
  16. bluer_sbc/README/designs/battery_bus.py +52 -0
  17. bluer_sbc/README/designs/bryce.py +28 -0
  18. bluer_sbc/README/designs/cheshmak.py +29 -0
  19. bluer_sbc/README/designs/nafha.py +57 -0
  20. bluer_sbc/README/designs/shelter.py +63 -0
  21. bluer_sbc/README/designs/swallow.py +46 -0
  22. bluer_sbc/README/designs/swallow_head.py +89 -0
  23. bluer_sbc/README/designs/template.py +38 -0
  24. bluer_sbc/{designs → README/designs}/ultrasonic_sensor_tester.py +11 -10
  25. bluer_sbc/README/parts.py +29 -0
  26. bluer_sbc/README/root.py +33 -0
  27. bluer_sbc/README/shortcuts.py +18 -0
  28. bluer_sbc/__init__.py +2 -2
  29. bluer_sbc/__main__.py +3 -2
  30. bluer_sbc/config.env +1 -1
  31. bluer_sbc/env.py +4 -0
  32. bluer_sbc/help/functions.py +2 -0
  33. bluer_sbc/help/parts.py +49 -0
  34. bluer_sbc/help/rpi.py +2 -1
  35. bluer_sbc/parts/__init__.py +0 -0
  36. bluer_sbc/parts/__main__.py +48 -0
  37. bluer_sbc/parts/classes/db.py +233 -0
  38. bluer_sbc/parts/classes/part.py +96 -0
  39. bluer_sbc/parts/consts.py +3 -0
  40. bluer_sbc/parts/db.py +619 -0
  41. bluer_sbc-9.168.1.dist-info/METADATA +73 -0
  42. {bluer_sbc-8.188.1.dist-info → bluer_sbc-9.168.1.dist-info}/RECORD +48 -24
  43. bluer_sbc/README.py +0 -75
  44. bluer_sbc/designs/bluer_swallow.py +0 -26
  45. bluer_sbc/designs/bryce.py +0 -25
  46. bluer_sbc/designs/cheshmak.py +0 -25
  47. bluer_sbc-8.188.1.dist-info/METADATA +0 -63
  48. /bluer_sbc/{designs → README}/__init__.py +0 -0
  49. /bluer_sbc/{designs → README/designs}/blue_bracket.py +0 -0
  50. /bluer_sbc/{designs → README/designs}/consts.py +0 -0
  51. {bluer_sbc-8.188.1.dist-info → bluer_sbc-9.168.1.dist-info}/WHEEL +0 -0
  52. {bluer_sbc-8.188.1.dist-info → bluer_sbc-9.168.1.dist-info}/licenses/LICENSE +0 -0
  53. {bluer_sbc-8.188.1.dist-info → bluer_sbc-9.168.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,73 @@
1
+ Metadata-Version: 2.4
2
+ Name: bluer_sbc
3
+ Version: 9.168.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
+ | [`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) | [`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) | [`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/20251007_221902.jpg)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/battery-bus.md) |
50
+ | [`adapter bus`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/adapter-bus.md) [![image](https://github.com/kamangir/assets2/raw/main/adapter-bus/20251017_222911.jpg)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/adapter-bus.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) | [`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) |
51
+ | [`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) [![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) | [`shelter`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter) [![image](https://github.com/kamangir/assets2/raw/main/shelter/20251104_000755.jpg)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter) |
52
+ | [`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) | [`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) |
53
+ | [`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) | | |
54
+
55
+ ## shortcuts
56
+
57
+ | |
58
+ | --- |
59
+ | [`parts`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/parts) [![image](https://github.com/kamangir/assets2/raw/main/bluer-sbc/parts/grid.png)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/parts) |
60
+
61
+ ---
62
+
63
+ > 🌀 [`blue-sbc`](https://github.com/kamangir/blue-sbc) for the [Global South](https://github.com/kamangir/bluer-south).
64
+
65
+ ---
66
+
67
+
68
+ [![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)
69
+
70
+ built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-9.168.1`](https://github.com/kamangir/bluer-sbc).
71
+
72
+
73
+ built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
@@ -1,22 +1,21 @@
1
- bluer_sbc/README.py,sha256=KtBr9qrvk9UOl-BgZ6T_bHkEfkVu91Ib0CyE2vMo0XE,2374
2
- bluer_sbc/__init__.py,sha256=7qIC3omTzN6OF15H4p54iBqdHkRqQnUPjQ30o7jlzWA,292
3
- bluer_sbc/__main__.py,sha256=JV8oYpZDQbvcDpKJtbjU0hDeMJkzsDLGlhIWLmRpDQ4,348
4
- bluer_sbc/config.env,sha256=Lp91dQZrPDtMO-87-pAw1wOqLMIYEI1MlNrXhvKMaoE,706
5
- bluer_sbc/env.py,sha256=saEjdk3FHmuK-WQUUpKfOatwmE93Y2Ula3rtGhRm0Zw,1745
1
+ bluer_sbc/__init__.py,sha256=lVd6__xpp_wNUzQu08Bmgf1HelmNZi4p1QRyEHDXJtA,312
2
+ bluer_sbc/__main__.py,sha256=mdHwITYb7ypMkevZnEBqFO-S4MYkdrTfbS8ZYTd5MBM,374
3
+ bluer_sbc/config.env,sha256=kPRvRowaTxEusZE66ME0asy4_cngYh2xcQlFvixvS5I,705
4
+ bluer_sbc/env.py,sha256=Bc8Wjz9e2E2Zv6-POjqil4dgjXAKkeMZh3DoKRw2HlE,1971
6
5
  bluer_sbc/host.py,sha256=RacmqxPRBQrL--JHx_Q-KyuEjEZ1kSFu4fa5pCA0CHQ,209
7
6
  bluer_sbc/logger.py,sha256=4euXgNprDpQSuR45RXy0kWQ1LvCL_dwOi2v37hVBWvk,99
8
7
  bluer_sbc/sample.env,sha256=mX86TGaZvbbGKbiXQdInSBu7sVvLs2IzqYaHNVl0g5M,50
9
8
  bluer_sbc/urls.py,sha256=Bjdewssljt0LIefjixBem9JN0kkghPvmrIETj3GdXbY,17
10
9
  bluer_sbc/.abcli/abcli.sh,sha256=Q_YRZUeFjN4UT9zT8lzrNIQSuORPie4Cp5CW5O2pX5w,290
11
- bluer_sbc/.abcli/actions.sh,sha256=P4d9lOzxdvkISZ0M3lZKH9JlmrcWTJ_HeEQAhIRLvC8,224
10
+ bluer_sbc/.abcli/actions.sh,sha256=NgbVdC5Xr_eddPeloaXF4IeRMslBo0LglhhCHtO4yKI,289
12
11
  bluer_sbc/.abcli/adafruit_rgb_matrix.sh,sha256=DwPJeuDXYa_F0r4nIWNeBYVtodyHYT2tV9JxPbWxhAM,382
13
- bluer_sbc/.abcli/alias.sh,sha256=d_oC5BldNKkhtXLurWwJg_3GoTJuYuy3TtgGNx49RNA,130
14
- bluer_sbc/.abcli/blue_sbc.sh,sha256=4O_0C56Xj5P7FjSTet5k7hvaNa-SIKpBUsz4MkBUc84,198
12
+ bluer_sbc/.abcli/alias.sh,sha256=C4bUOJV-4aj_xsymXLkzY8_K0gw3nRsGAKjBR6RPQCA,134
13
+ bluer_sbc/.abcli/bluer_sbc.sh,sha256=3uHU90LAi4UyX3S02_6MNMJRK-1GcVMjLdl-EsyRrTA,239
15
14
  bluer_sbc/.abcli/camera.sh,sha256=cmDDqUoy-YaO-nwKoTcsgrX-KbZ1JtXiPA3RVBoUb3s,447
16
15
  bluer_sbc/.abcli/grove.sh,sha256=6Lf4TiQzZj9uStCY9ezd8djcqVthzbybkmgmZ8Kr9wE,1180
17
16
  bluer_sbc/.abcli/hat.sh,sha256=ggMb9XOFA3t3sBTGalQK4x7yNuAgK3jA6UkFDWAnndM,449
18
17
  bluer_sbc/.abcli/lepton.sh,sha256=e7bzeYC8JpZMTTWkIfIscPfsoGYPb1ONWaTdDrglfRc,327
19
- bluer_sbc/.abcli/rpi.sh,sha256=6OOHHUPQBQXmTD3TUrq4jeMisUnH-aqlRudkILlXJ8s,339
18
+ bluer_sbc/.abcli/rpi.sh,sha256=Lfs60Xm_fyv6IY4vnwngVoNPFVDhIbYGPzd_fOsZ-mo,343
20
19
  bluer_sbc/.abcli/scroll_phat_hd.sh,sha256=AUD38PfNMCA-88GjHa-xV4OM7IS8mg5ECNFjAzLJ8AQ,331
21
20
  bluer_sbc/.abcli/seed.sh,sha256=9azGhOe8g9FEAsI87AkJfKpLp-tF4Ej1x2dgcJ0sa5I,63
22
21
  bluer_sbc/.abcli/session.sh,sha256=90Y-2pzZnM3YZO9sYeshS83oiLUE38WqCl-gA_RfWT0,1003
@@ -30,27 +29,45 @@ bluer_sbc/.abcli/install/sparkfun_top_phat.sh,sha256=3kOMZXBafLm2RqHXXgTx2Ez5WwY
30
29
  bluer_sbc/.abcli/install/template.sh,sha256=Qqj6JKZlaxAqUGbY88gkNn-v-_aTUtKzpyi-lw353aY,215
31
30
  bluer_sbc/.abcli/install/unicorn_16x16.sh,sha256=zt6VN6c6cLQ59m7GiUNdV7aPTfO8CRoYtSs4VIuEJFw,496
32
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=2vDjnPUZxwHMjc4drtdJjXM3yABMUM054LPjEXCPeHE,374
34
+ bluer_sbc/.abcli/sbc/parts/cd.sh,sha256=0XUPReFBcX7Xj-JUR_dmQMh4L4RkfSx8bDGBBHDS92Y,103
33
35
  bluer_sbc/.abcli/seed/headless_rpi.sh,sha256=Sen1-Spg6lvBAzAqacLw42iJgME-v3yVs5T1qMuSO6c,2298
34
36
  bluer_sbc/.abcli/seed/headless_rpi_64_bit.sh,sha256=1DzrVSSNIvKLW8J1fI7Iqepk1cB2fvHpvez3EW-Dscw,1363
35
37
  bluer_sbc/.abcli/seed/headless_ubuntu_rpi.sh,sha256=QQRkOLstdWequW4eutQPimhKwT1yHtHNRUJNhKN3FZ0,2512
36
38
  bluer_sbc/.abcli/seed/jetson.sh,sha256=QAvc-6aQwZ5oEhV5oruGfyFUwftsrPnO_d_7ryRQRkk,971
37
39
  bluer_sbc/.abcli/seed/rpi.sh,sha256=HzCcPnuC2DneMtiHawD6tjcgLuyCstljl-A90kmpDeg,968
40
+ bluer_sbc/.abcli/seed/rpi_64_bit.sh,sha256=eGdViHHnf9rDuBT8YOf-xVApKgkaA6K98wOppyjQymE,1219
38
41
  bluer_sbc/.abcli/seed/swallow_raspbian.sh,sha256=QK9YSkLA0_j5D_r8cp5DENLKhnczUj4a40O4w68ER98,363
39
42
  bluer_sbc/.abcli/tests/README.sh,sha256=0hp3y_URdsFtnYw5Ujty6xy5SNhNHGEVPqpQoYxu0WA,142
40
43
  bluer_sbc/.abcli/tests/camera.sh,sha256=NRr-RbyNORMSHYxNu6VUpVzHIJ2Qy-5NQr2qh54kqUg,1013
41
- bluer_sbc/.abcli/tests/help.sh,sha256=C0xlLMpYfSO2nZU-QD1OSHXmcgHuf36CRduAkANmOuE,1416
44
+ bluer_sbc/.abcli/tests/help.sh,sha256=aPok1fm9G1kIfu9tWJLltqVukygMhj1PIvWCSx0P6lw,1513
45
+ bluer_sbc/.abcli/tests/parts_adjust.sh,sha256=VlmhDmqnPSM6ad6uZ1zp70CLNe-jRIxUngVov9MtPG4,249
42
46
  bluer_sbc/.abcli/tests/seed.sh,sha256=NQUQzgHQZITgaq2aFkiZkaLT0VKmIsrl3aTqSkr8670,392
43
47
  bluer_sbc/.abcli/tests/version.sh,sha256=odDOmAFlzH7KtsAYWOmyLsQ6GAws6XadNlZ6H-NZuzc,147
48
+ bluer_sbc/README/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ bluer_sbc/README/aliases.py,sha256=jv6YlFBk7Bn72MEutmZ6UpELpLQs_i3_3Rm8BlPMc5g,161
50
+ bluer_sbc/README/build.py,sha256=42pCUarnbdwxuWci1GnCSWMtkt5P-zbiyHRd6ItVMqc,862
51
+ bluer_sbc/README/design.py,sha256=UpY8GiE5mNzZndasRCVYROl1OA_If2wqs2SR3HdC29E,987
52
+ bluer_sbc/README/parts.py,sha256=RexP6RRCt2w8Lg8e-_QwP70RzyPyc-AKAycpeK9m5r4,731
53
+ bluer_sbc/README/root.py,sha256=WYUpmpDrkGtwSDV9wiodn_bL1hbl56WlykjWXV7UQiI,1290
54
+ bluer_sbc/README/shortcuts.py,sha256=Pu7e83Vpz9mZv717jzOluJnGXwo22bUJPZ122NPjUpM,390
55
+ bluer_sbc/README/designs/__init__.py,sha256=-afJImcOdHrprhJseJfHsHEGiKMg20EeNlrlp_jE0CY,428
56
+ bluer_sbc/README/designs/adapter_bus.py,sha256=sO0oRklT60vXRlwdEXALxI0jOlI2p4XEMHqOIKF1LCo,1208
57
+ bluer_sbc/README/designs/battery_bus.py,sha256=9Q314G5OMIA2NYxgPTIM8ga7X-yAcxvk78T8r1KDGd4,1119
58
+ bluer_sbc/README/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
59
+ bluer_sbc/README/designs/bryce.py,sha256=u6C09hXunGUPpVZVPHKcSdUoDyg1slUzq0AHzCStjV8,587
60
+ bluer_sbc/README/designs/cheshmak.py,sha256=ymLxh4XPurzIoVuFh-ZxWJ54KUIcKScY3uPH6gnD29s,600
61
+ bluer_sbc/README/designs/consts.py,sha256=de1X1_0CESgSGYUI8dGh8RBoYtu_G3NrBsFvuSdHJWk,59
62
+ bluer_sbc/README/designs/nafha.py,sha256=xIVQB30mxtORNAsVTjgMvcAs4qzL92mlwO3IM8n6t5M,1279
63
+ bluer_sbc/README/designs/shelter.py,sha256=3V0VVZ_MqTv7OvwOFJLHJq93VsxCVHl0EwrTMTIMwLM,1470
64
+ bluer_sbc/README/designs/swallow.py,sha256=FosdJYthZOIrNRgiUJpwW_5ngJiORMYUyHi0LajJOFQ,978
65
+ bluer_sbc/README/designs/swallow_head.py,sha256=sKz0Tim3HcXQ27IELsoTUPeTNhxxKxh1KZ3IWezEfgQ,2346
66
+ bluer_sbc/README/designs/template.py,sha256=SY7PjPf219TDGyhwzHGtF67cylhNl4zJKqWqAfVu57U,618
67
+ bluer_sbc/README/designs/ultrasonic_sensor_tester.py,sha256=8LOGpQ61zbiO5a4kutY5uMfZHLRz9SBKUacyx2MdpjA,656
44
68
  bluer_sbc/ROS/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
45
69
  bluer_sbc/algo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
70
  bluer_sbc/algo/diff.py,sha256=ZCUkRgip-Uss86r--RuEwyYtFjpukM3fbY_yovXwgNw,2190
47
- bluer_sbc/designs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- bluer_sbc/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
49
- bluer_sbc/designs/bluer_swallow.py,sha256=WlVWDLmbYtYEbkBY_GXoRvILX5NCDs68FgJDb84q3F8,532
50
- bluer_sbc/designs/bryce.py,sha256=6Ark2nOxLUlnrx03S9gO12oGvM6iFYmdhRfs4JXGZU0,497
51
- bluer_sbc/designs/cheshmak.py,sha256=fWTqTJLYCNC0G8jqT-cJW2r8snWJrpRk5VCqjv24yKE,506
52
- bluer_sbc/designs/consts.py,sha256=de1X1_0CESgSGYUI8dGh8RBoYtu_G3NrBsFvuSdHJWk,59
53
- bluer_sbc/designs/ultrasonic_sensor_tester.py,sha256=sE2C6Hl9EDaNqMIQtbNU8amfevy0xZJCT8Gz2FoD9Cc,553
54
71
  bluer_sbc/hardware/__init__.py,sha256=EW_u4fRXPVpAO47EaLZn0Vxo_rfE9a1O4cPdl_w6vOI,1421
55
72
  bluer_sbc/hardware/adafruit_rgb_matrix.py,sha256=4xFRghBXJWkDDOhPvO-Yt6xY61D451KKxjrUL8ZxXQ8,803
56
73
  bluer_sbc/hardware/display.py,sha256=bRjemItjmF3tJcWxP3e2lVB5Ul8br3_3PcJhfrBT7mY,3057
@@ -70,11 +87,12 @@ bluer_sbc/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
87
  bluer_sbc/help/__main__.py,sha256=Aj_lNOTJiCYZK3MrOlETIiFWiFPjZ2vaGzDk0Q3uTYA,229
71
88
  bluer_sbc/help/adafruit_rgb_matrix.py,sha256=VPQkAPb17K9AP2rMpH8yDPIXVG_dXiPZ0C8qtjZKTB8,384
72
89
  bluer_sbc/help/camera.py,sha256=uWMbQJuxPIz5KafNL6uSJqcRs6tH91pawui7TP7wd-4,1067
73
- bluer_sbc/help/functions.py,sha256=WhqDhBHMDAm4suAJ10rx-6Tr-yhx3JdjtyR9NOxk080,1266
90
+ bluer_sbc/help/functions.py,sha256=NxyBTbAHvx8-HM8B5JdYAjKfRinB7U1TDrmim5ZDctA,1357
74
91
  bluer_sbc/help/grove.py,sha256=4CM3_RUeu6hMr1zmkz4f-V7Mzb75vcYv0dfoQKw2KJI,1026
75
92
  bluer_sbc/help/hat.py,sha256=fhiEFoWYolmh-loZ87fYghEJK-XLUpkUc4pDj2WWdAE,885
76
93
  bluer_sbc/help/lepton.py,sha256=NNJY9f1gkZCD7fGf0chFjncbLOSpb79VLyZ2jxj4rG4,618
77
- bluer_sbc/help/rpi.py,sha256=ZHxQQ0QSPYFOTk8ywWa5XLXRdh9wKZVXkVsj7RxApOE,438
94
+ bluer_sbc/help/parts.py,sha256=716RvodYiopbjxO1j2P613VklHL-r2z-YzJzx2C4C0k,763
95
+ bluer_sbc/help/rpi.py,sha256=ZD1iOaG0af01wHVFuPBFo0HsDqC7lzNGgxCyxsyUKBs,457
78
96
  bluer_sbc/help/scroll_phat_hd.py,sha256=pLMIGMKIzRgN2LcNjIPNQiJ0mIowKjxkBhS40PIst1c,374
79
97
  bluer_sbc/help/sparkfun_top_phat.py,sha256=4JQMqzapnx5PBtzfw8RqpqgXtnF0HqDWxuTssK0OHUo,445
80
98
  bluer_sbc/help/unicorn_16x16.py,sha256=0uKABkkY7VGfmUj2U8g0fA0AvXDBlloVzGQXbx_mPO8,378
@@ -90,12 +108,18 @@ bluer_sbc/imager/lepton/__init__.py,sha256=qHzzDoYLe-RxMjIul-HTxT7sRt3O-sVC44vZJ
90
108
  bluer_sbc/imager/lepton/__main__.py,sha256=AUurRrU64bqLDKoiMeMPbHyIu53Rz4426ihzsPX6Juk,1081
91
109
  bluer_sbc/imager/lepton/classes.py,sha256=CnWEwaBZC2hAFuYkv32SAu7GaIK1A-PiLEppAgL7z4M,963
92
110
  bluer_sbc/imager/lepton/python2.py,sha256=1jAHHzmda_bmqKj0b0X-2KONW5s9umxKaTY4ZieoaCI,1600
111
+ bluer_sbc/parts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ bluer_sbc/parts/__main__.py,sha256=8gIFylyfCv35e3VOlt0LY_K4oCMdmW9OFkj54bFab9k,903
113
+ bluer_sbc/parts/consts.py,sha256=UIld-5czxqoAtMTeTZM4LQZXC-CXU53LVmVzFekZLJQ,98
114
+ bluer_sbc/parts/db.py,sha256=IM5d1MgkS5iUIyx6a0_CfLxC-2t7skH12I4AjmBPL80,13626
115
+ bluer_sbc/parts/classes/db.py,sha256=Yij--zP566wBpXFoKWsGQddrM28otTVvoez-4Qj2Rtg,6551
116
+ bluer_sbc/parts/classes/part.py,sha256=tKXjipFRwu0-Gc53VXivwaeqhyYr9uunG6EUzcdr_x8,2181
93
117
  bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
118
  bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
95
119
  bluer_sbc/session/classes.py,sha256=6pEh-TBjekUZBbWj_zKh3LAntAoGfcMHtS2SJ77nyC8,9355
96
120
  bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
97
- bluer_sbc-8.188.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
98
- bluer_sbc-8.188.1.dist-info/METADATA,sha256=iKKSe4KepLV9fS0Zu0jlzQ6dOv2DhA49CheTOakkYtk,4439
99
- bluer_sbc-8.188.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
100
- bluer_sbc-8.188.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
101
- bluer_sbc-8.188.1.dist-info/RECORD,,
121
+ bluer_sbc-9.168.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
122
+ bluer_sbc-9.168.1.dist-info/METADATA,sha256=I26l_Q9fNJli4otxBb1iIslvhtSlteD1qfxDIxXFbHs,6010
123
+ bluer_sbc-9.168.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
124
+ bluer_sbc-9.168.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
125
+ bluer_sbc-9.168.1.dist-info/RECORD,,
bluer_sbc/README.py DELETED
@@ -1,75 +0,0 @@
1
- import os
2
- from typing import List
3
-
4
- from bluer_options.help.functions import get_help
5
- from bluer_objects import file, README
6
-
7
- from bluer_sbc import NAME, VERSION, ICON, REPO_NAME
8
- from bluer_sbc.designs.cheshmak import items as cheshmak_items
9
- from bluer_sbc.designs.cheshmak import marquee as cheshmak_marquee
10
- from bluer_sbc.designs.blue_bracket import items as blue_bracket_items
11
- from bluer_sbc.designs.bluer_swallow import items as bluer_swallow_items
12
- from bluer_sbc.designs.bluer_swallow import marquee as bluer_swallow_marquee
13
- from bluer_sbc.designs.bryce import items as bryce_items
14
- from bluer_sbc.designs.bryce import marquee as bryce_marquee
15
- from bluer_sbc.help.functions import help_functions
16
-
17
- from bluer_sbc.designs.ultrasonic_sensor_tester import (
18
- marquee as ultrasonic_sensor_tester_marquee,
19
- )
20
- from bluer_sbc.designs.ultrasonic_sensor_tester import (
21
- items as ultrasonic_sensor_tester_items,
22
- )
23
-
24
-
25
- def build():
26
- return all(
27
- README.build(
28
- items=readme.get("items", []),
29
- cols=readme.get("cols", 3),
30
- path=os.path.join(file.path(__file__), readme["path"]),
31
- ICON=ICON,
32
- NAME=NAME,
33
- VERSION=VERSION,
34
- REPO_NAME=REPO_NAME,
35
- help_function=lambda tokens: get_help(
36
- tokens,
37
- help_functions,
38
- mono=True,
39
- ),
40
- )
41
- for readme in [
42
- {
43
- "items": ultrasonic_sensor_tester_marquee
44
- + cheshmak_marquee
45
- + bluer_swallow_marquee
46
- + bryce_marquee
47
- + blue_bracket_items,
48
- "path": "..",
49
- },
50
- {
51
- "items": cheshmak_items,
52
- "path": "./docs/cheshmak.md",
53
- },
54
- {
55
- "items": bluer_swallow_items,
56
- "path": "./docs/bluer-swallow.md",
57
- },
58
- {
59
- "items": bryce_items,
60
- "path": "./docs/bryce.md",
61
- },
62
- {
63
- "items": ultrasonic_sensor_tester_items,
64
- "path": "./docs/ultrasonic-sensor-tester.md",
65
- },
66
- ]
67
- + [
68
- {"path": f"./docs/aliases/{item}.md"}
69
- for item in [
70
- "camera",
71
- "hardware",
72
- "rpi",
73
- ]
74
- ]
75
- )
@@ -1,26 +0,0 @@
1
- from bluer_objects import README
2
-
3
- from bluer_sbc.designs.consts import assets2
4
-
5
-
6
- image_template = assets2 + "bluer-swallow/design/v3/{}?raw=true"
7
-
8
- marquee = README.Items(
9
- [
10
- {
11
- "name": "bluer-swallow",
12
- "marquee": image_template.format("01.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
- )
@@ -1,25 +0,0 @@
1
- from bluer_objects import README
2
-
3
- from bluer_sbc.designs.consts import assets2
4
-
5
- image_template = assets2 + "bryce/{}?raw=true"
6
-
7
- marquee = README.Items(
8
- [
9
- {
10
- "name": "bryce",
11
- "marquee": image_template.format("08.jpg"),
12
- "url": "./bluer_sbc/docs/bryce.md",
13
- }
14
- ]
15
- )
16
-
17
- items = README.Items(
18
- [
19
- {
20
- "marquee": image_template.format(f"{index+1:02}.jpg"),
21
- "name": "",
22
- }
23
- for index in range(9)
24
- ]
25
- )
@@ -1,25 +0,0 @@
1
- from bluer_objects import README
2
-
3
- from bluer_sbc.designs.consts import assets2
4
-
5
- image_template = assets2 + "cheshmak/{}?raw=true"
6
-
7
- marquee = README.Items(
8
- [
9
- {
10
- "name": "cheshmak",
11
- "marquee": image_template.format("01.png"),
12
- "url": "./bluer_sbc/docs/cheshmak.md",
13
- }
14
- ]
15
- )
16
-
17
- items = README.Items(
18
- [
19
- {
20
- "marquee": image_template.format(f"{index+1:02}.png"),
21
- "name": "",
22
- }
23
- for index in range(1)
24
- ]
25
- )
@@ -1,63 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: bluer_sbc
3
- Version: 8.188.1
4
- Summary: 🌀 AI for single board computers.
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
- [@rpi](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/rpi.md),
43
- [@sbc <hardware>](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/aliases/hardware.md).
44
-
45
- | | | |
46
- | --- | --- | --- |
47
- | [`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) | [`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) | [`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/v3/01.jpg?raw=true)](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bluer-swallow.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) | [`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) |
49
- | [`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) | |
50
-
51
- ---
52
-
53
- > 🌀 [`blue-sbc`](https://github.com/kamangir/blue-sbc) for the [Global South](https://github.com/kamangir/bluer-south).
54
-
55
- ---
56
-
57
-
58
- [![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)
59
-
60
- built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.188.1`](https://github.com/kamangir/bluer-sbc).
61
-
62
-
63
- built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
File without changes
File without changes
File without changes