import typecheck as tc tc.checktype('hello', int | str) |> print tc.checktype(0xdeadbeef, int | str) |> print tc.checktype(['hello', 0xdeadbeef], int | str) |> print