diff options
author | Anthony Wang | 2024-07-27 16:09:57 -0500 |
---|---|---|
committer | Anthony Wang | 2024-07-27 16:09:57 -0500 |
commit | 6cfff24189ffce3b239c1af2cb744a26a07b9177 (patch) | |
tree | bbcc91dbe3d2391d50a56bc011b4ee790ae871fc /client.py | |
parent | ebef0bf87a22630ea2d5160aaf51051767e92fa6 (diff) |
Add symlinks in cwd to results
Diffstat (limited to 'client.py')
-rw-r--r-- | client.py | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -3,4 +3,12 @@ import sys import xmlrpc.client proxy = xmlrpc.client.ServerProxy(f"http://localhost:{os.environ.get("PORT", 8000)}") -print("\n".join(proxy.search(sys.argv[1], sys.argv[2]))) +res = proxy.search(sys.argv[1], sys.argv[2]) +print("\n".join(res)) + +if len(sys.argv) > 3: + for path in os.listdir(): + if path.startswith("res"): + os.unlink(path) + for i, path in enumerate(res): + os.symlink(path, f"res{i}") |