Metadata-Version: 2.1
Name: spkb
Version: 0.1.1
Summary: A SolidPython-based library for building custom keyboards with Python and OpenSCAD.
Home-page: https://github.com/whitelynx/spkb
License: BSD-3-Clause
Keywords: keyboard,OpenSCAD
Author: David H. Bronke
Author-email: whitelynx@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: solidpython2 (>=2.1.0,<3.0.0)
Requires-Dist: typing-extensions (>=4.12.2,<5.0.0)
Project-URL: Bug Tracker, https://github.com/whitelynx/spkb/issues
Project-URL: Documentation, https://spkb.readthedocs.io
Project-URL: Repository, https://github.com/whitelynx/spkb
Description-Content-Type: text/markdown

# SPKB

*SolidPython-based Keyboard Builder*

[![API Documentation on ReadTheDocs](https://readthedocs.org/projects/spkb/badge/?version=latest)][API docs]
[![Python package](https://github.com/whitelynx/spkb/actions/workflows/python-package.yml/badge.svg)](https://github.com/whitelynx/spkb/actions/workflows/python-package.yml)

![Action Shot](images/action-shot.jpg)

A [SolidPython][]-based library for building custom keyboards with [Python][] and [OpenSCAD][].

Some portions ported from Clojure, originally from [the Dactyl Keyboard][] and my fork thereof,
[the Dactyl Lynx Keyboard][].

[SolidPython]: https://github.com/jeff-dh/SolidPython
[Python]: https://www.python.org/
[OpenSCAD]: https://openscad.org/
[the Dactyl Keyboard]: https://github.com/adereth/dactyl-keyboard
[the Dactyl Lynx Keyboard]: https://github.com/whitelynx/dactyl-lynx-keyboard


## Using SPKB

### Installing

Simply install the library in your project, using your preferred package manager.

[Poetry][]:
```bash
poetry add spkb
```

[PDM](https://pdm-project.org/):
```bash
pdm add
```

[pipenv](https://pipenv.pypa.io/):
```bash
pipenv install spkb
```

[Poetry]: https://python-poetry.org/


### Usage

In your project, you can simply import what you need from the submodules of `spkb`:
```python
from spkb.switch_plate import plate_thickness, mx_plate
from spkb.board_mount import stm32_blackpill
from spkb.keycaps import sa_double_length, sa_cap
```

See the sidebar of [the documentation][API docs] for a reference of what's available.


#### Examples

See the example scripts in the `examples/` directory. You can run them by setting `PYTHONPATH` to include the current
directory:
```bash
env PYTHONPATH=$PWD poetry run python examples/stm32_blackpill_mount.py
```


---


## Developing SPKB

### Prerequisites

* [Python][] version 3.11 or newer
* [Poetry][]

### Installing dependencies

```bash
poetry install
```


### Usage

For simply generating interesting key testers, see the example scripts in the `examples/`
directory.


### Running tests

You can run simple tests from some of the submodules:
```bash
poetry run python -m spkb.keycaps         # Renders the built-in keycap approximations
poetry run python -m spkb.single_key_pcb  # Renders a simple approximation of a single-key PCB
poetry run python -m spkb.single_tester   # Renders a single-key tester
poetry run python -m spkb.keyswitch.base  # Renders a switch socket negative, plate with board mount, and dummy switch shape
poetry run python -m spkb.keyswitch.choc  # Renders a switch socket with backplate for a Kailh Choc switch
poetry run python -m spkb.keyswitch.mx    # Renders a switch socket with backplate for an MX-style switch

# Deprecated modules
poetry run python -m spkb.switch_plate    # Renders a variety of keyswitch plates (sockets)
poetry run python -m spkb.keyswitch       # Renders a basic approximation of an MX-style switch body
```

You can also run all module tests and check for appropriate outputs with this script:
```bash
scripts/run-module-tests.sh
```


---


## Documentation

You can view the documentation online [on ReadTheDocs][API docs].

You can also view the generated API documentation locally by running [pdoc][]:
```bash
poetry run pdoc -n -t templates spkb
```

[API docs]: https://spkb.readthedocs.io/
[pdoc]: https://pdoc.dev/


## Links

* [parametric-key-tester](https://github.com/whitelynx/parametric-key-tester) - the original project this library was forked from
* [the Dactyl Keyboard][] and my fork, [the Dactyl Lynx Keyboard][] - original switch sockets, keycap approximations, etc.


## License

This project is released under [the BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause).

