URLSaveAsynchronous
URLSaveAsynchronous["url","file",func]
performs a download to "file" in the background, calling func when an event is raised.
Details and Options




- Types of events that may be raised:
-
"data" returns an empty list; can be used to indicate the connection has completed "progress" returns information about the current connection of the form {dlnow,dltotal,ulnow,ultotal} "error" indicates that an error occurred while attempting to connect to the URL "headers" headers received from the web server "cookies" a list of all known cookies "statuscode" the status code returned by the server - The following options can be given:
-
Method "GET" method to use for request "Parameters" {} parameters to be sent for the request "Body" "" contents of message body to be sent "MultipartElements" {} list of multipart data elements to send "Username" "" username to use for the request "Password" "" password to use for the request "Headers" {} headers to be manually sent to the HTTP server "Cookies" True cookies to pass to the server "StoreCookies" Automatic whether to store received cookies "VerifyPeer" True verify authenticity using SSL certificates "UserAgent" Automatic user agent string to send "ReadTimeout" 0 time to allow for uploading or downloading data "ConnectTimeout" 0 time to allow for connecting to the server "Progress" False whether to raise a "progress" event "Transfer" Automatic if Automatic, the "data" event returns once and returns all the data downloaded; if "Chunks", the "data" event is raised multiple times with the data downloaded since the last event was raised "UserData" None any expression passed to this option will be stored for use of the AsynchronousTaskObject inside the event function; the data can be found by checking the options of AsynchronousTaskObject passed to the event function BinaryFormat True whether to avoid textual interpretation of newlines or other data "FollowRedirects" True whether to follow redirects - When an event is raised, the event function passed to URLSaveAsynchronous will be executed. The event functions will be passed three arguments, the AsynchronousTaskObject, the event name, and the data received from the event. Event functions are the only method for handling data received from URLSaveAsynchronous.
Monitor progress while downloading the contents of a URL to a file:
"Method" can be used to specify the HTTP method used by the connection:
Specify the parameters that should be sent to the server:
Verify that the SSL certificate used by the server is valid:
Specify the username that should be sent to the server:
Specify the password that should be sent to the server:
Specify the user agent that should be sent to the server:
Manually control the cookies used by URLSaveAsynchronous:
If False, "StoreCookies" will not place any new cookies found while connecting to the site in the global cookie share:
Specify headers to be sent to the server:
Specify the message body that should be sent when connecting to the server:
Specify the contents of a multipart message body:
Specify the maximum allotted time in seconds to finish downloading data from the server:
Specify the maximum allotted time in seconds to establish a connection to the server:
If True, the "progress" event will be raised, returning information downloaded and uploaded about in-progress downloads:
"UserData" is any expression containing information to be made available when an event is called:
Use URLFetchAsynchronous to load the content directly into the Wolfram Language:
Text
Wolfram Research (2012), URLSaveAsynchronous, Wolfram Language function, https://reference.wolfram.com/language/ref/URLSaveAsynchronous.html.
BibTeX
BibLaTeX
CMS
Wolfram Language. 2012. "URLSaveAsynchronous." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/URLSaveAsynchronous.html.
APA
Wolfram Language. (2012). URLSaveAsynchronous. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/URLSaveAsynchronous.html