This is python port of urlon javascript package. It is compatible with urlon version 3.1.0.
Table of Contents
pip install pyurlon>>> import pyurlon
>>> pyurlon.stringify({"table":{"achievement":{"column":"instance","ascending":True}}})
'$table$achievement$column=instance&ascending:true'
>>> pyurlon.parse("$table$achievement$column=instance&ascending:true")
{'table': {'achievement': {'column': 'instance', 'ascending': True}}}pyurlon is distributed under the terms of the MIT license.