diff options
author | Arun Isaac | 2025-01-04 01:34:35 +0000 |
---|---|---|
committer | Arun Isaac | 2025-01-04 01:39:23 +0000 |
commit | 1718ff1bf4611e05d2fb952240369e27fe1504bd (patch) | |
tree | e02862b8e3542547a022e7c6fe9c5f3f37010d46 /manifest.scm | |
parent | 22d1c69a4921d01e19c178cbfef8d361f5f731f6 (diff) | |
download | globus-weblinks-1718ff1bf4611e05d2fb952240369e27fe1504bd.tar.gz globus-weblinks-1718ff1bf4611e05d2fb952240369e27fe1504bd.tar.lz globus-weblinks-1718ff1bf4611e05d2fb952240369e27fe1504bd.zip |
Implement downloader in python too.
Passing cookies to wget on the command line is a security risk. On a
shared machine, other users can see your full command line. Passing it
in using the --load-cookies option is too tedious—the file format
required is archaic and hard to replicate by hand. So, we simply
implement the downloader in python too. In any case, this makes for a
more cohesive user experience.
Diffstat (limited to 'manifest.scm')
-rw-r--r-- | manifest.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest.scm b/manifest.scm index d07898a..87ee2ec 100644 --- a/manifest.scm +++ b/manifest.scm @@ -1,2 +1,2 @@ (specifications->manifest - (list "python" "python-globus-sdk")) + (list "python" "python-globus-sdk" "python-requests")) |