https://github.com/doomspork/printergeist
https://github.com/doomspork/printergeist
printer-management printers websockets
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/doomspork/printergeist
- Owner: doomspork
- Created: 2024-05-30T13:13:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-14T22:41:10.000Z (over 1 year ago)
- Last Synced: 2025-02-15T02:44:15.156Z (8 months ago)
- Topics: printer-management, printers, websockets
- Language: Rust
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Printergeist
Experimental: Provide browser access to local printers via websockets.
You don't want to use this, I promise.
## List Available Printers
### Request
```json
{
"type": "list_available_printers"
}
```### Response
```json
[
{
"name": "Brother HL L3210CW series",
"system_name": "Brother_HL_L3210CW_series"
},
{
"name": "Printer ThermalPrinter",
"system_name": "Printer_ThermalPrinter"
}
]
```### Request
```json
{
"data": "...",
"system_name": "Brother_HL_L3210CW_series",
"type": "create_print_job"
}
```