def url()

in tsqa/endpoint.py [0:0]


    def url(self, path=''):
        '''
        Get the url for the given path in this endpoint
        '''
        if path and not path.startswith('/'):
            path = '/' + path
        return 'http://127.0.0.1:{0}{1}'.format(self.address[1], path)