|
|
@ -8,11 +8,12 @@ SERVER = "y.yakamo.org" |
|
|
|
|
|
|
|
|
|
|
|
#gives the option to get data from an external server instead and send that |
|
|
|
#gives the option to get data from an external server instead and send that |
|
|
|
#if no options given it will default to localhost instead |
|
|
|
#if no options given it will default to localhost instead |
|
|
|
if len(sys.argv) == 3: |
|
|
|
#if len(sys.argv) == 3: |
|
|
|
host_port = (sys.argv[1], sys.argv[2]) |
|
|
|
# host_port = (sys.argv[1], sys.argv[2]) |
|
|
|
else: |
|
|
|
#else: |
|
|
|
host_port = ('localhost', 9001) |
|
|
|
# host_port = ('localhost', 9001) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
host_port = ('localhost', 9001) |
|
|
|
def send_view_to_server(tosend): |
|
|
|
def send_view_to_server(tosend): |
|
|
|
if tosend: |
|
|
|
if tosend: |
|
|
|
attempts = 3 |
|
|
|
attempts = 3 |
|
|
|