1
1
Fork
You've already forked local-broadcast
0
A library to send message to all instances of the current running program on local LAN
  • Python 100%
2026年05月30日 18:23:49 +01:00
.forgejo/workflows add actions 2026年05月30日 18:23:49 +01:00
src fix a typo 2026年05月30日 12:54:41 +01:00
.gitignore Initial commit 2024年05月15日 16:11:46 +01:00
LICENSE updates LICENSE 2026年05月30日 16:32:55 +01:00
pyproject.toml fix deprecated license classifier 2026年05月30日 17:37:55 +01:00
README.md updates README.md 2026年05月30日 15:58:22 +01:00

local-broadcast

A python library to send message to all instances of the current running program on local LAN

https://pypi.org/project/local-broadcast/

WIP

Work in progress, not ready for use yet.

install

uv pip install local_broadcast@git+https://codeberg.org/gambuzzi/local-broadcast

dev mode install

uv sync

example

uv run src/example/chat_async.py

build package

uv build

publish

store pypi api token

uvx keyring set https://upload.pypi.org/legacy/ __token__

upload

uvx twine upload dist/*

to create a new release

  • update version in pyproject.toml
  • run the build commands above
  • tagging (changing the version number):
git tag -a "0.0.7" -m "0.0.7"
git push --tags