/telnet-figlet

Figlet in Telnet!

Primary LanguagePythonMIT LicenseMIT

telnet-figlet

Figlet in Telnet!
To run it, install Python (3.9 is recommended) and Telnet and install the requirements with pip(pip install -r requirements.txt).
And then type:
python main.py # or python3 main.py
Now, you can do telnet localhost to connect to your server. Type /help for a list of commands you can run.

You can also run it with Docker:
docker build -t telnet-figlet . # to build the image
docker run -p 23:23 --rm telnet-figlet # to run the image. You can also add -d to run it in the background(it is recommended to remove --rm after that).