diff --git a/client.py b/client.py index 0381ca3..ac9ff92 100644 --- a/client.py +++ b/client.py @@ -7,7 +7,7 @@ def main(): for changes in watch('./images'): print(changes) for change in changes: - url = 'http://127.0.0.1:8000/upload' + url = 'http://10.1.1.100:8000/upload' file = {'file': open(change[1], 'rb')} resp = requests.post(url=url, files=file)