class query():def__init__(self) ->None:self.search_param =dict([x.split('=') for x in'searchType=SALE&locationIdentifier=REGION%5E93941&insId=1&radius=0.0&minPrice=&maxPrice=&minBedrooms=&maxBedrooms=&displayPropertyType=&maxDaysSinceAdded=&_includeSSTC=on&sortByPriceDescending=&primaryDisplayPropertyType=&secondaryDisplayPropertyType=&oldDisplayPropertyType=&oldPrimaryDisplayPropertyType=&newHome=&auction=false'.split('&')])self.__repr__=self.__str__def__str__(self) ->str:return"&".join(map(lambda x: x[0]+'='+x[1], self.search_param.items()))str(query())