def build_url(self):
"""Depending on the service name, and the options we built the good url to request"""
query_string = urllib.urlencode(self.options)
self.url = self.configuration.base_url + ('/' if self.domain_name.strip()=='' else '/' + self.domain_name + '/') + self.service_name + '?' + query_string
评论列表
文章目录