mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
eb0fc00cc8
PR: 36994 Submitted by: me
9 lines
417 B
Plaintext
9 lines
417 B
Plaintext
Plex is a Python module for constructing lexical analysers,
|
|
or scanners. Plex scanners have almost all the capabilities of
|
|
the scanners generated by GNU Flex, and are specified in a very
|
|
similar way. Tokens are defined by regular expressions, and each
|
|
token has an associated action, which may be to return a literal
|
|
value, or to call an arbitrary function.
|
|
|
|
WWW: http://www.cosc.canterbury.ac.nz/~greg/python/Plex/
|