├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── VERSION ├── irctokens ├── __init__.py ├── const.py ├── formatting.py ├── hostmask.py ├── line.py ├── py.typed └── stateful.py ├── setup.py └── test ├── __init__.py ├── _data ├── msg-join.yaml └── msg-split.yaml ├── format.py ├── hostmask.py ├── parser_tests.py ├── stateful_decode.py ├── stateful_encode.py └── tokenise.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.0.2 2 | -------------------------------------------------------------------------------- /irctokens/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/irctokens/__init__.py -------------------------------------------------------------------------------- /irctokens/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/irctokens/const.py -------------------------------------------------------------------------------- /irctokens/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/irctokens/formatting.py -------------------------------------------------------------------------------- /irctokens/hostmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/irctokens/hostmask.py -------------------------------------------------------------------------------- /irctokens/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/irctokens/line.py -------------------------------------------------------------------------------- /irctokens/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /irctokens/stateful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/irctokens/stateful.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/_data/msg-join.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/_data/msg-join.yaml -------------------------------------------------------------------------------- /test/_data/msg-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/_data/msg-split.yaml -------------------------------------------------------------------------------- /test/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/format.py -------------------------------------------------------------------------------- /test/hostmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/hostmask.py -------------------------------------------------------------------------------- /test/parser_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/parser_tests.py -------------------------------------------------------------------------------- /test/stateful_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/stateful_decode.py -------------------------------------------------------------------------------- /test/stateful_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/stateful_encode.py -------------------------------------------------------------------------------- /test/tokenise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesopo/irctokens/HEAD/test/tokenise.py --------------------------------------------------------------------------------