Skip to content

Instantly share code, notes, and snippets.

@Redeem-Grimm-Satoshi
Last active January 14, 2020 20:35
Show Gist options
  • Save Redeem-Grimm-Satoshi/8ae6dd952ca57c70e298824a09c943f1 to your computer and use it in GitHub Desktop.
Save Redeem-Grimm-Satoshi/8ae6dd952ca57c70e298824a09c943f1 to your computer and use it in GitHub Desktop.
Download Files On The Internet Using HTTP In Julia
# Author: Redeem Grimm
# Name : Download
# Purpose: Download Files On The Internet Using HTTP
using HTTP
function download(url,fileName)
HTTP.download(url,fileName)
end
# Example Run:
# download("www.miglayout.com/QuickStart.pdf","QuickTutorial.pdf");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment