traversalkit.ids

The module provides most common ID patterns.

traversalkit.ids.ANY_ID

Wildcard matching. Matches everything: .*

traversalkit.ids.DEC_ID

Matches decimal numbers only: ^[\d]+$

traversalkit.ids.HEX_ID

Matches hexadecimal numbers only: ^[a-f\d]+$

traversalkit.ids.TEXT_ID

Matches single word: ^[\w\-]+$