Provides decorator to announce the presence of a server to a host machine.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Michael Pilosov cb9b364918 cleanup of tests 1 year ago
src/announce_server cleanup of tests 1 year ago
tests cleanup of tests 1 year ago
.gitignore cleanup of tests 1 year ago
README.md checkpoint 1 year ago
setup.cfg more test coverage 1 year ago
setup.py adding (nonfunctional) tests 1 year ago

README.md

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