I am working with python and solr and load the data from solr to python through url as:
connection = urlopen('http://localhost:8983/solr/data/select?indent=on&q=sender_name:*AX*%20AND%20message:*Avail%20Lmt&rows=211&start=0&wt=json')
if i have to pass different parameters in query parameter of different form using function.How can we pass as this query is of solr
sender_name:*SDI* - message:*Take this* (rows = 213 start=0)
sender_name:*TRY* - message:*Look Up* (rows =300 start=0)