Open
Description
This is sort of an edge case as very few websites use path parameters anymore, however some do.
For those unfamiliar, they're contained in urlparse()[3]
or urlparse().params
. The RFCs basically describe them as parameters specific to the last path segment and can be kwargs or raw values.
Very few systems still use it, but some do. For example, Amazon used them from launch until the early 2000s to handle cookieless-sessions and much of what is now in query-strings. A handful of java servers use them for sessions too (e.g JSESSIONID
).