A library to send message to all instances of the current running program on local LAN
- Python 100%
| .forgejo/workflows | add actions | |
| src | fix a typo | |
| .gitignore | Initial commit | |
| LICENSE | updates LICENSE | |
| pyproject.toml | fix deprecated license classifier | |
| README.md | updates README.md | |
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