Merge pull request 'Added argv to python script' (#16) from python-change into master
Reviewed-on: http://git.plannaplan.pl/filipizydorczyk/backend/pulls/16
This commit is contained in:
commit
41f37ee9ad
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user