importurllibclassHTTPUtils:"""HTTPUtils is common resource for simple http helper keywords."""defurl_encode_string(self,barestring):"""URL Encode String takes in a string and converts into 'percent-encoded' string"""returnurllib.quote_plus(barestring)