module documentation

Undocumented

Function remove_query_param Given a URL and a key/val pair, remove an item in the query parameters of the URL, and return the new URL.
Function replace_query_param Given a URL and a key/val pair, set or replace an item in the query parameters of the URL, and return the new URL.
def remove_query_param(url, key): (source)

Given a URL and a key/val pair, remove an item in the query parameters of the URL, and return the new URL.

def replace_query_param(url, key, val): (source)

Given a URL and a key/val pair, set or replace an item in the query parameters of the URL, and return the new URL.