bluer-sbc 9.168.1__py3-none-any.whl → 9.319.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.
- bluer_sbc/.abcli/sbc/parts/edit.sh +5 -0
- bluer_sbc/.abcli/sbc/parts/open.sh +5 -0
- bluer_sbc/.abcli/sbc/parts.sh +1 -1
- bluer_sbc/.abcli/seed/rpi_64_bit.sh +1 -1
- bluer_sbc/.abcli/tests/help.sh +2 -0
- bluer_sbc/README/design.py +31 -19
- bluer_sbc/README/designs/__init__.py +12 -8
- bluer_sbc/README/designs/adapter_bus.py +2 -2
- bluer_sbc/README/designs/anchor/__init__.py +15 -0
- bluer_sbc/README/designs/anchor/body/__init__.py +0 -0
- bluer_sbc/README/designs/anchor/body/docs.py +20 -0
- bluer_sbc/README/designs/anchor/docs.py +16 -0
- bluer_sbc/README/designs/anchor/items.py +10 -0
- bluer_sbc/README/designs/anchor/parts.py +54 -0
- bluer_sbc/README/designs/battery_bus/__init__.py +15 -0
- bluer_sbc/README/designs/battery_bus/body/__init__.py +0 -0
- bluer_sbc/README/designs/battery_bus/body/docs.py +20 -0
- bluer_sbc/README/designs/battery_bus/body/li_ion.py +20 -0
- bluer_sbc/README/designs/battery_bus/body/sla.py +17 -0
- bluer_sbc/README/designs/battery_bus/docs.py +17 -0
- bluer_sbc/README/designs/battery_bus/items.py +17 -0
- bluer_sbc/README/designs/battery_bus/parts.py +19 -0
- bluer_sbc/README/designs/cheshmak/__init__.py +14 -0
- bluer_sbc/README/designs/cheshmak/body/__init__.py +0 -0
- bluer_sbc/README/designs/cheshmak/body/docs.py +23 -0
- bluer_sbc/README/designs/cheshmak/body/v1.py +18 -0
- bluer_sbc/README/designs/cheshmak/docs.py +19 -0
- bluer_sbc/README/designs/cheshmak/items.py +10 -0
- bluer_sbc/README/designs/cheshmak/operation.py +5 -0
- bluer_sbc/README/designs/cheshmak/parts.py +28 -0
- bluer_sbc/README/designs/cheshmak/validations.py +14 -0
- bluer_sbc/README/designs/nafha.py +11 -5
- bluer_sbc/README/designs/pwm_generator.py +71 -0
- bluer_sbc/README/designs/regulated_bus.py +79 -0
- bluer_sbc/README/designs/shelter.py +3 -0
- bluer_sbc/README/designs/swallow/__init__.py +20 -0
- bluer_sbc/README/designs/swallow/consts.py +7 -0
- bluer_sbc/README/designs/swallow/docs.py +24 -0
- bluer_sbc/README/designs/swallow/history.py +34 -0
- bluer_sbc/README/designs/swallow/parts.py +16 -0
- bluer_sbc/README/designs/swallow_head/__init__.py +22 -0
- bluer_sbc/README/designs/swallow_head/docs.py +24 -0
- bluer_sbc/README/designs/swallow_head/history.py +21 -0
- bluer_sbc/README/designs/{swallow_head.py → swallow_head/parts.py} +9 -43
- bluer_sbc/README/root.py +11 -7
- bluer_sbc/__init__.py +1 -1
- bluer_sbc/help/parts.py +33 -1
- bluer_sbc/parts/db.py +136 -16
- bluer_sbc-9.319.1.dist-info/METADATA +73 -0
- {bluer_sbc-9.168.1.dist-info → bluer_sbc-9.319.1.dist-info}/RECORD +53 -22
- bluer_sbc/README/designs/battery_bus.py +0 -52
- bluer_sbc/README/designs/bryce.py +0 -28
- bluer_sbc/README/designs/cheshmak.py +0 -29
- bluer_sbc/README/designs/swallow.py +0 -46
- bluer_sbc-9.168.1.dist-info/METADATA +0 -73
- {bluer_sbc-9.168.1.dist-info → bluer_sbc-9.319.1.dist-info}/WHEEL +0 -0
- {bluer_sbc-9.168.1.dist-info → bluer_sbc-9.319.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_sbc-9.168.1.dist-info → bluer_sbc-9.319.1.dist-info}/top_level.txt +0 -0
|
@@ -1,73 +0,0 @@
|
|
|
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) [](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) [](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) [](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) [](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) [](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) |
|
|
51
|
-
| [`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) [](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) [](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) [](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) | [`cube`](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) [](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) [](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) [](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
|
-
[](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)
|
|
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).
|
|
File without changes
|
|
File without changes
|
|
File without changes
|