URL - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Overview of the URL Package

 

Calling Sequence

Description

Accessing URL Package Commands

List of URL Package Commands

Examples

Compatibility

Calling Sequence

URL:-command(arguments)

command(arguments)

Description

• 

The URL package is a collection of commands for getting and posting data via URLs. The URL package supports the http, https and ftp URL schemes.

• 

On Linux, https support requires an SSL-enabled libcurl package be installed. The default libcurl package for most distributions should suffice. Windows and macOS have SSL support available by default.

• 

The URL package is a generalization of the HTTP package. The HTTP package is implemented on top of the URL package.

• 

For more information on the URL format, see Construct.

Accessing URL Package Commands

• 

Each command in the URL package can be accessed by using either the long form or the short form of the command name in the command calling sequence.

  

The long form, URL:-command, is always available. The short form can be used after loading the package.

List of URL Package Commands

• 

The following is a list of commands available in the URL package.

Construct

Delete

Download

Escape

Get

Head

MultipartFormPost

Parse

Patch

Post

Put

Unescape

• 

To display the help page for a particular URL command, see Getting Help with a Command in a Package.

Examples

withURL:

Gethttp://www.maplesoft.com/:

Gethttps://www.dropbox.com/:

Getftp://ftp.cert.org/pub/README:

Compatibility

• 

The URL package was introduced in Maple 18.

• 

For more information on Maple 18 changes, see Updates in Maple 18.

See Also

HTTP