Code Overview

Here you will find an overview of ezurl’s objects and methods.

ezurl Package

class ezurl.Url(hostname, scheme='https', querydelimiter='&')

This class allows more flexible generation of URLS. This prevents the mindless manipulation string that occur in projects that require generation of a wide range of urls

fragment(text)

Allows for fragments at the end of the url

page(*args)

Pages takes *args and adds pages in order

pages

Returns a list of pages

path

Returns str of the Path

query(listdelimiter='+', **kwargs)

Url queries

Parameters:listdelimiter – Specifies what list delimiter should be

Kwargs (Since its a dictionary) are not ordered. You must call the method again if you absolutely need one query after another or vice versa.