These pages are auto-generated from self-documenting comments embedded in class files.
For more information on breve and steve, refer to the breve homepage.

Abstract : URL

Class description:

URL is a class used for sending and receiving data with URLs. To fetch data from an http:// of ftp:// URL, use get. To put data to a web server via the HTTP PUT protocol, use put.

Methods:

  • get
  • put
    get( self, urlString )

    Fetches a URL using the HTTP GET protocol. Returns any data sent from the server, or an empty string if there was no data or an error occurred.


    put( self, dataString, urlString )

    Puts data to a URL using the HTTP PUT protocol. Returns any data sent from the server, or an empty string if there was no data or an error occurred.