announce-server/README.md
Michael Pilosov c4cf873c48 checkpoint
2023-03-19 14:30:05 -06:00

552 B

Announce Server

A Python library that announces a server to a host.

Installation

pip install announce-server

Build

To build the package, run:

pip install -e .[dev]
pip install -m build

Test

To run the tests, install the package with the [dev] option:

pip install -e .[dev]
pytest

Usage

from announce_server.announce import announce_server

@announce_server(name="server_name", ip="server_ip", port=8000, host_ip="host_server_ip", host_port=5000)
def your_function():
    pass