bluer-sbc 8.233.1__py3-none-any.whl → 8.248.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.
- bluer_sbc/README/__init__.py +28 -0
- bluer_sbc/README/aliases.py +10 -0
- bluer_sbc/README/designs/__init__.py +30 -0
- bluer_sbc/README/designs/battery_bus.py +26 -0
- bluer_sbc/{designs → README/designs}/bryce.py +1 -1
- bluer_sbc/{designs → README/designs}/cheshmak.py +1 -1
- bluer_sbc/{designs → README/designs}/nafha.py +1 -1
- bluer_sbc/{designs → README/designs}/shelter.py +1 -1
- bluer_sbc/{designs → README/designs}/swallow.py +1 -1
- bluer_sbc/{designs → README/designs}/swallow_head.py +1 -1
- bluer_sbc/{designs → README/designs}/ultrasonic_sensor_tester.py +1 -1
- bluer_sbc/README/designs/x.py +29 -0
- bluer_sbc/README/root.py +26 -0
- bluer_sbc/__init__.py +1 -1
- bluer_sbc-8.248.1.dist-info/METADATA +64 -0
- {bluer_sbc-8.233.1.dist-info → bluer_sbc-8.248.1.dist-info}/RECORD +21 -16
- bluer_sbc/designs/__init__.py +0 -0
- bluer_sbc-8.233.1.dist-info/METADATA +0 -64
- /bluer_sbc/{designs → README/designs}/blue_bracket.py +0 -0
- /bluer_sbc/{designs → README/designs}/consts.py +0 -0
- {bluer_sbc-8.233.1.dist-info → bluer_sbc-8.248.1.dist-info}/WHEEL +0 -0
- {bluer_sbc-8.233.1.dist-info → bluer_sbc-8.248.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_sbc-8.233.1.dist-info → bluer_sbc-8.248.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
from bluer_options.help.functions import get_help
|
|
4
|
+
from bluer_objects import file, README
|
|
5
|
+
|
|
6
|
+
from bluer_sbc import NAME, VERSION, ICON, REPO_NAME
|
|
7
|
+
from bluer_sbc.help.functions import help_functions
|
|
8
|
+
from bluer_sbc.README import aliases, designs, root
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def build():
|
|
12
|
+
return all(
|
|
13
|
+
README.build(
|
|
14
|
+
items=readme.get("items", []),
|
|
15
|
+
cols=readme.get("cols", 3),
|
|
16
|
+
path=os.path.join(file.path(__file__), readme["path"]),
|
|
17
|
+
ICON=ICON,
|
|
18
|
+
NAME=NAME,
|
|
19
|
+
VERSION=VERSION,
|
|
20
|
+
REPO_NAME=REPO_NAME,
|
|
21
|
+
help_function=lambda tokens: get_help(
|
|
22
|
+
tokens,
|
|
23
|
+
help_functions,
|
|
24
|
+
mono=True,
|
|
25
|
+
),
|
|
26
|
+
)
|
|
27
|
+
for readme in root.docs + designs.docs + aliases.docs
|
|
28
|
+
)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from bluer_sbc.README.designs.cheshmak import items as cheshmak_items
|
|
2
|
+
from bluer_sbc.README.designs.battery_bus import items as battery_bus_items
|
|
3
|
+
from bluer_sbc.README.designs.swallow import items as swallow_items
|
|
4
|
+
from bluer_sbc.README.designs.swallow_head import items as swallow_head_items
|
|
5
|
+
from bluer_sbc.README.designs.bryce import items as bryce_items
|
|
6
|
+
from bluer_sbc.README.designs.nafha import items as nafha_items
|
|
7
|
+
from bluer_sbc.README.designs.shelter import items as shelter_items
|
|
8
|
+
from bluer_sbc.README.designs.x import items as x_items
|
|
9
|
+
from bluer_sbc.README.designs.ultrasonic_sensor_tester import (
|
|
10
|
+
items as ultrasonic_sensor_tester_items,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
docs = [
|
|
14
|
+
{
|
|
15
|
+
"cols": 4,
|
|
16
|
+
"items": design_items,
|
|
17
|
+
"path": f"../docs/{design_name}.md",
|
|
18
|
+
}
|
|
19
|
+
for design_name, design_items in {
|
|
20
|
+
"battery-bus": battery_bus_items,
|
|
21
|
+
"bryce": bryce_items,
|
|
22
|
+
"cheshmak": cheshmak_items,
|
|
23
|
+
"nafha": nafha_items,
|
|
24
|
+
"shelter": shelter_items,
|
|
25
|
+
"swallow-head": swallow_head_items,
|
|
26
|
+
"swallow": swallow_items,
|
|
27
|
+
"ultrasonic-sensor-tester": ultrasonic_sensor_tester_items,
|
|
28
|
+
"x": x_items,
|
|
29
|
+
}.items()
|
|
30
|
+
]
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from bluer_objects import README
|
|
2
|
+
from bluer_objects.README.items import ImageItems
|
|
3
|
+
from bluer_objects.README.consts import assets_path
|
|
4
|
+
|
|
5
|
+
from bluer_sbc.README.designs.consts import assets2
|
|
6
|
+
|
|
7
|
+
assets2_battery_bus = assets_path(
|
|
8
|
+
suffix="battery-bus",
|
|
9
|
+
volume=2,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
marquee = README.Items(
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"name": "battery bus",
|
|
16
|
+
"marquee": f"{assets2_battery_bus}/concept.png",
|
|
17
|
+
"url": "./bluer_sbc/docs/battery-bus.md",
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
items = ImageItems(
|
|
23
|
+
{
|
|
24
|
+
f"{assets2_battery_bus}/concept.png": "",
|
|
25
|
+
}
|
|
26
|
+
)
|
|
@@ -2,7 +2,7 @@ from bluer_objects import README
|
|
|
2
2
|
from bluer_objects.README.items import ImageItems
|
|
3
3
|
from bluer_objects.README.consts import assets_path
|
|
4
4
|
|
|
5
|
-
from bluer_sbc.designs.consts import assets2
|
|
5
|
+
from bluer_sbc.README.designs.consts import assets2
|
|
6
6
|
|
|
7
7
|
image_template = assets2 + "shelter/{}?raw=true"
|
|
8
8
|
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from bluer_objects import README
|
|
2
|
+
from bluer_objects.README.items import ImageItems
|
|
3
|
+
from bluer_objects.README.consts import assets_path
|
|
4
|
+
|
|
5
|
+
from bluer_sbc.README.designs.consts import assets2
|
|
6
|
+
|
|
7
|
+
image_template = assets2 + "x/{}?raw=true"
|
|
8
|
+
|
|
9
|
+
assets2_x = assets_path(
|
|
10
|
+
suffix="x",
|
|
11
|
+
volume=2,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
marquee = README.Items(
|
|
15
|
+
[
|
|
16
|
+
{
|
|
17
|
+
"name": "x",
|
|
18
|
+
"marquee": f"{assets2_x}/TBA.jpg",
|
|
19
|
+
"url": "./bluer_sbc/docs/x.md",
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
items = ImageItems(
|
|
25
|
+
{
|
|
26
|
+
f"{assets2_x}/TBA.jpg": "",
|
|
27
|
+
f"{assets2_x}/TBA.jpg": "",
|
|
28
|
+
}
|
|
29
|
+
)
|
bluer_sbc/README/root.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from bluer_sbc.README.designs.cheshmak import marquee as cheshmak_marquee
|
|
2
|
+
from bluer_sbc.README.designs.blue_bracket import items as blue_bracket_items
|
|
3
|
+
from bluer_sbc.README.designs.swallow import marquee as swallow_marquee
|
|
4
|
+
from bluer_sbc.README.designs.swallow_head import marquee as swallow_head_marquee
|
|
5
|
+
from bluer_sbc.README.designs.bryce import marquee as bryce_marquee
|
|
6
|
+
from bluer_sbc.README.designs.nafha import marquee as nafha_marquee
|
|
7
|
+
from bluer_sbc.README.designs.shelter import marquee as shelter_marquee
|
|
8
|
+
from bluer_sbc.README.designs.battery_bus import marquee as battery_bus_marquee
|
|
9
|
+
from bluer_sbc.README.designs.ultrasonic_sensor_tester import (
|
|
10
|
+
marquee as ultrasonic_sensor_tester_marquee,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
docs = [
|
|
14
|
+
{
|
|
15
|
+
"items": battery_bus_marquee
|
|
16
|
+
+ swallow_marquee
|
|
17
|
+
+ swallow_head_marquee
|
|
18
|
+
+ ultrasonic_sensor_tester_marquee
|
|
19
|
+
+ bryce_marquee
|
|
20
|
+
+ cheshmak_marquee
|
|
21
|
+
+ nafha_marquee
|
|
22
|
+
+ shelter_marquee
|
|
23
|
+
+ blue_bracket_items,
|
|
24
|
+
"path": "../..",
|
|
25
|
+
},
|
|
26
|
+
]
|
bluer_sbc/__init__.py
CHANGED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bluer_sbc
|
|
3
|
+
Version: 8.248.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
|
+
| [`battery bus`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/battery-bus.md) [](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) [](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) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow-head.md) |
|
|
48
|
+
| [`ultrasonic-sensor-tester`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/ultrasonic-sensor-tester.md) [](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) [](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) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/cheshmak.md) |
|
|
49
|
+
| [`nafha`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/nafha.md) [](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) [](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) [](https://github.com/kamangir/blue-bracket/blob/main/designs/blue3.md) |
|
|
50
|
+
| [`chenar-grove`](https://github.com/kamangir/blue-bracket/blob/main/designs/chenar-grove.md) [](https://github.com/kamangir/blue-bracket/blob/main/designs/chenar-grove.md) | [`cube`](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) [](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) [](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
|
+
[](https://github.com/kamangir/bluer-sbc/actions/workflows/pylint.yml) [](https://github.com/kamangir/bluer-sbc/actions/workflows/pytest.yml) [](https://github.com/kamangir/bluer-sbc/actions/workflows/bashtest.yml) [](https://pypi.org/project/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.248.1`](https://github.com/kamangir/bluer-sbc).
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bluer_sbc/__init__.py,sha256=
|
|
1
|
+
bluer_sbc/__init__.py,sha256=feF8EeTKZNi0FAEK0GGxCGmlAlQoJqxBGKU8aD6oIHw,310
|
|
2
2
|
bluer_sbc/__main__.py,sha256=JV8oYpZDQbvcDpKJtbjU0hDeMJkzsDLGlhIWLmRpDQ4,348
|
|
3
3
|
bluer_sbc/config.env,sha256=Lp91dQZrPDtMO-87-pAw1wOqLMIYEI1MlNrXhvKMaoE,706
|
|
4
4
|
bluer_sbc/env.py,sha256=saEjdk3FHmuK-WQUUpKfOatwmE93Y2Ula3rtGhRm0Zw,1745
|
|
@@ -40,19 +40,24 @@ bluer_sbc/.abcli/tests/camera.sh,sha256=NRr-RbyNORMSHYxNu6VUpVzHIJ2Qy-5NQr2qh54k
|
|
|
40
40
|
bluer_sbc/.abcli/tests/help.sh,sha256=2fzkUvk4jMS8a8SV-5_NY6WAuRGLoyCL_RxvIwbufMk,1424
|
|
41
41
|
bluer_sbc/.abcli/tests/seed.sh,sha256=NQUQzgHQZITgaq2aFkiZkaLT0VKmIsrl3aTqSkr8670,392
|
|
42
42
|
bluer_sbc/.abcli/tests/version.sh,sha256=odDOmAFlzH7KtsAYWOmyLsQ6GAws6XadNlZ6H-NZuzc,147
|
|
43
|
+
bluer_sbc/README/__init__.py,sha256=wxM6_Dx2u2Op-KdIeWHaVOhrJOv72jnswkuqSJe2qgc,797
|
|
44
|
+
bluer_sbc/README/aliases.py,sha256=xFA6LrWQzYXXeV-VXuB3mFUIxRSAzeHsbSJNipoeChk,146
|
|
45
|
+
bluer_sbc/README/root.py,sha256=ysEVB7e6RTc_RwyZDvJjFjSdwEjqkD7fPbURZlzFevA,1027
|
|
46
|
+
bluer_sbc/README/designs/__init__.py,sha256=O1sVUitOz4khHDMJ9EG5Ngz5nfvtsjRSacjh2oR5mkU,1167
|
|
47
|
+
bluer_sbc/README/designs/battery_bus.py,sha256=1oVb27ompgmf7n7p625GX8QOM98sg6JHTFF66evXaeo,560
|
|
48
|
+
bluer_sbc/README/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
|
|
49
|
+
bluer_sbc/README/designs/bryce.py,sha256=9mfOoMy9Rk1AITj480CoLYdgzWNraAwwypc5kVpEB_Q,474
|
|
50
|
+
bluer_sbc/README/designs/cheshmak.py,sha256=fG0zRc6vVm5Nj07Juq13PPGp0ZUWyLqA9-nAUpnzr1Q,483
|
|
51
|
+
bluer_sbc/README/designs/consts.py,sha256=de1X1_0CESgSGYUI8dGh8RBoYtu_G3NrBsFvuSdHJWk,59
|
|
52
|
+
bluer_sbc/README/designs/nafha.py,sha256=7IOfF_bfWaPNeV-VEXjsXjkydxJKlRTQX6rEOAtmSSc,474
|
|
53
|
+
bluer_sbc/README/designs/shelter.py,sha256=YE3zUZZLQL6fp3ZwEpo24-rPLHQN_z5eVM9yqclS33c,855
|
|
54
|
+
bluer_sbc/README/designs/swallow.py,sha256=jyl_oJNsTcBGzDLDAYRt-Vi-YmuuEt3iSCNTxaUKRXI,491
|
|
55
|
+
bluer_sbc/README/designs/swallow_head.py,sha256=i6tVDSWqUk99PT5RznN9l8TETwLgGdEKAI792szLyxg,513
|
|
56
|
+
bluer_sbc/README/designs/ultrasonic_sensor_tester.py,sha256=fljUikScYa9Y2tcMs7QRwYbUd-NA59Pc7IQtyZyA2w0,524
|
|
57
|
+
bluer_sbc/README/designs/x.py,sha256=whgug-f97t8XDPXXGJftE-wMrt63pg9R3VHzZgadXfg,572
|
|
43
58
|
bluer_sbc/ROS/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
44
59
|
bluer_sbc/algo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
60
|
bluer_sbc/algo/diff.py,sha256=ZCUkRgip-Uss86r--RuEwyYtFjpukM3fbY_yovXwgNw,2190
|
|
46
|
-
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
|
|
56
61
|
bluer_sbc/hardware/__init__.py,sha256=EW_u4fRXPVpAO47EaLZn0Vxo_rfE9a1O4cPdl_w6vOI,1421
|
|
57
62
|
bluer_sbc/hardware/adafruit_rgb_matrix.py,sha256=4xFRghBXJWkDDOhPvO-Yt6xY61D451KKxjrUL8ZxXQ8,803
|
|
58
63
|
bluer_sbc/hardware/display.py,sha256=bRjemItjmF3tJcWxP3e2lVB5Ul8br3_3PcJhfrBT7mY,3057
|
|
@@ -96,8 +101,8 @@ bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
96
101
|
bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
|
|
97
102
|
bluer_sbc/session/classes.py,sha256=6pEh-TBjekUZBbWj_zKh3LAntAoGfcMHtS2SJ77nyC8,9355
|
|
98
103
|
bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
|
|
99
|
-
bluer_sbc-8.
|
|
100
|
-
bluer_sbc-8.
|
|
101
|
-
bluer_sbc-8.
|
|
102
|
-
bluer_sbc-8.
|
|
103
|
-
bluer_sbc-8.
|
|
104
|
+
bluer_sbc-8.248.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
105
|
+
bluer_sbc-8.248.1.dist-info/METADATA,sha256=t5qoZ15x9n3IOrrF78W8An56YmCww_c5LBKVy7dhVvM,5460
|
|
106
|
+
bluer_sbc-8.248.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
107
|
+
bluer_sbc-8.248.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
|
|
108
|
+
bluer_sbc-8.248.1.dist-info/RECORD,,
|
bluer_sbc/designs/__init__.py
DELETED
|
File without changes
|
|
@@ -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) [](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) [](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) [](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) [](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) [](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) [](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) [](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) [](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) [](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) [](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) [](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
|
-
[](https://github.com/kamangir/bluer-sbc/actions/workflows/pylint.yml) [](https://github.com/kamangir/bluer-sbc/actions/workflows/pytest.yml) [](https://github.com/kamangir/bluer-sbc/actions/workflows/bashtest.yml) [](https://pypi.org/project/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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|