Yeah, this rules for simple query strings, but if you want to introduce more complex query strings (with lists, dicts, dates, ...) you better use ZTUtils.make_query :
from ZTUtils import make_query
qs = make_query(param1=['a', 1], param2={'x': 1, y: 'okay'})
print qs |