Added argv to python script

Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
Marcin Woźniak 2020-10-29 15:22:31 +01:00
parent d3a2256334
commit 953168a452
1 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,11 @@ from urllib.parse import parse_qs
import sys
import requests as r
API_ADDRESS = "http://localhost:1285"
if len(sys.argv) > 1 :
API_ADDRESS = "http://" + sys.argv[1] + ":1285"
else:
API_ADDRESS = "http://localhost:1285"
PORT = 3000
@ -24,7 +28,6 @@ class S(BaseHTTPRequestHandler):
self.wfile.write("Your token: {}".format(
response.text).encode('utf-8'))
def wait_for_request(server_class=HTTPServer,
handler_class=S):
server_address = ('localhost', PORT)