Browse Source

Moved readline import and shell history handling to rconshell.py.

pull/2/head
Richard Neumann 4 years ago
parent
commit
ae37a862a0
  1. 3
      rcon/console.py
  2. 4
      rcon/rconshell.py

3
rcon/console.py

@ -3,9 +3,6 @@
from getpass import getpass
from typing import Union
# For CLI history, etc.
import readline # pylint: disable=W0611
from rcon.config import Config
from rcon.exceptions import RequestIdMismatch, WrongPassword
from rcon.proto import Client

4
rcon/rconshell.py

@ -3,6 +3,7 @@
from argparse import ArgumentParser, Namespace
from logging import INFO, basicConfig, getLogger
from pathlib import Path
from readline import read_history_file, write_history_file
from socket import timeout
from sys import exit # pylint: disable=W0622
@ -21,6 +22,7 @@ ERRORS = (
(RequestIdMismatch, 'Unexpected request ID mismatch.', 5)
)
LOGGER = getLogger('rconshell')
HIST_FILE = Path.home().joinpath('.rconshell_history')
def get_args() -> Namespace:
@ -40,6 +42,7 @@ def main():
args = get_args()
basicConfig(level=INFO, format=LOG_FORMAT)
read_history_file(HIST_FILE)
if args.server:
host, port, passwd = get_credentials(args)
@ -49,4 +52,5 @@ def main():
with ErrorHandler(ERRORS, LOGGER):
exit_code = rconcmd(host, port, passwd, prompt=args.prompt)
write_history_file(HIST_FILE)
exit(exit_code)

Loading…
Cancel
Save