tokenize — Tokenization help for Python programs.
| Use Case | Command | Description |
|---|---|---|
| 🔍 Tokenize a Python file | tokenize(open('file.py', 'rb').readline) | Generate 5-tuples of tokens from a file opened in binary mode |
| 🔍 Tokenize a string | tokenize(io.BytesIO(code.encode()).readline) | Tokenize Python source code from a string |
| 🔤 Tokenize unicode string | generate_tokens(readline) | Same as tokenize() but expects str objects instead of bytes |
| 🔄 Untokenize back to source | untokenize(iterable) | Transform tokens back into Python source code (bytes) |
| 🌐 Detect file encoding | detect_encoding(readline) | Detect encoding from BOM or PEP-263 cookie (returns (encoding, lines)) |
| 📦 Access token type constants | tokenize.NAME, tokenize.NUMBER, etc. | Integer constants for token types (e.g., NAME = 1, NUMBER = 2) |
| 📋 Look up token name | tokenize.tok_name[type] | Map from integer token type to string name (e.g., 1 → 'NAME') |
https://docs.python.org/3.10/library/tokenize.html
The following documentation is automatically generated from the Python source files. It may be incomplete, incorrect or include features that are considered implementation detail and may vary between Python implementations. When in doubt, consult the module reference at the location listed above.
tokenize(readline) is a generator that breaks a stream of bytes into Python tokens. It decodes the bytes according to PEP-0263 for determining source file encoding.
It accepts a readline-like method which is called repeatedly to get the next line of input (or b"" for EOF). It generates 5-tuples with these members:
token.py)It is designed to match the working of the Python tokenizer exactly, except that it produces COMMENT tokens for comments and gives type OP for all operators. Additionally, all token lists start with an ENCODING token which tells you which encoding was used to decode the bytes stream.
TokenInfo (inherits from builtins.tuple)
TokenInfo(type, string, start, end, line)
Method resolution order: TokenInfo → builtins.tuple → builtins.object
__repr__(self) — Return a nicely formatted representation stringexact_type__dict__ — dictionary for instance variables (if defined)TokenInfo (generated by namedtuple):__getnewargs__(self) — Return self as a plain tuple. Used by copy and pickle._asdict(self) — Return a new dict which maps field names to their values._replace(self, /, **kwds) — Return a new TokenInfo object replacing specified fields with new valuesTokenInfo:_make(iterable) — Make a new TokenInfo object from a sequence or iterableTokenInfo:__new__(_cls, type, string, start, end, line) — Create new instance of TokenInfo(type, string, start, end, line)TokenInfo (field aliases):type — Alias for field number 0string — Alias for field number 1start — Alias for field number 2end — Alias for field number 3line — Alias for field number 4__match_args__ = ('type', 'string', 'start', 'end', 'line')
_field_defaults = {}
_fields = ('type', 'string', 'start', 'end', 'line')
builtins.tuple:__add__(self, value, /) — Return self+value.__contains__(self, key, /) — Return key in self.__eq__(self, value, /) — Return self==value.__ge__(self, value, /) — Return self>=value.__getattribute__(self, name, /) — Return getattr(self, name).__getitem__(self, key, /) — Return self[key].__gt__(self, value, /) — Return self>value.__hash__(self, /) — Return hash(self).__iter__(self, /) — Implement iter(self).__le__(self, value, /) — Return self<=value.__len__(self, /) — Return len(self).__lt__(self, value, /) — Return self<value.__mul__(self, value, /) — Return self*value.__ne__(self, value, /) — Return self!=value.__rmul__(self, value, /) — Return value*self.count(self, value, /) — Return number of occurrences of value.index(self, value, start=0, stop=9223372036854775807, /) — Return first index of value. Raises ValueError if the value is not present.builtins.tuple:__class_getitem__(...) — See PEP 585ISEOF(x)ISNONTERMINAL(x)ISTERMINAL(x)The detect_encoding() function is used to detect the encoding that should be used to decode a Python source file. It requires one argument, readline, in the same way as the tokenize() generator.
It will call readline a maximum of twice, and return the encoding used (as a string) and a list of any lines (left as bytes) it has read in.
It detects the encoding from the presence of a utf-8 bom or an encoding cookie as specified in PEP-0263. If both a bom and a cookie are present, but disagree, a SyntaxError will be raised. If the encoding cookie is an invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, 'utf-8-sig' is returned.
If no encoding is specified, then the default of 'utf-8' will be returned.
Tokenize a source reading Python code as unicode strings.
This has the same API as tokenize(), except that it expects the readline callable to return str objects instead of bytes.
The tokenize() generator requires one argument, readline, which must be a callable object which provides the same interface as the readline() method of built-in file objects. Each call to the function should return one line of input as bytes. Alternatively, readline can be a callable function terminating with StopIteration:
readline = open(myfile, 'rb').__next__ # Example of alternate readline
The generator produces 5-tuples with these members: the token type; the token string; a 2-tuple (srow, scol) of ints specifying the row and column where the token begins in the source; a 2-tuple (erow, ecol) of ints specifying the row and column where the token ends in the source; and the line on which the token was found. The line passed is the physical line.
The first token sequence will always be an ENCODING token which tells you which encoding was used to decode the bytes stream.
Transform tokens back into Python source code. It returns a bytes object, encoded using the ENCODING token, which is the first token sequence output by tokenize.
Each element returned by the iterable must be a token sequence with at least two elements, a token number and token value. If only two tokens are passed, the resulting output is poor.
Round-trip invariant for full input: Untokenized source will match input source exactly
Round-trip invariant for limited input:
# Output bytes will tokenize back to the input
t1 = [tok[:2] for tok in tokenize(f.readline)]
newcode = untokenize(t1)
readline = BytesIO(newcode).readline
t2 = [tok[:2] for tok in tokenize(readline)]
assert t1 == t2
Token type constants (integers):
AMPER = 19AMPEREQUAL = 41ASYNC = 56AT = 49ATEQUAL = 50AWAIT = 55CIRCUMFLEX = 32CIRCUMFLEXEQUAL = 43COLON = 11COLONEQUAL = 53COMMA = 12COMMENT = 61DEDENT = 6DOT = 23DOUBLESLASH = 47DOUBLESLASHEQUAL = 48DOUBLESTAR = 35DOUBLESTAREQUAL = 46ELLIPSIS = 52ENCODING = 63ENDMARKER = 0EQEQUAL = 27EQUAL = 22ERRORTOKEN = 60GREATER = 21GREATEREQUAL = 30INDENT = 5LBRACE = 25LEFTSHIFT = 33LEFTSHIFTEQUAL = 44LESS = 20LESSEQUAL = 29LPAR = 7LSQB = 9MINEQUAL = 37MINUS = 15NAME = 1NEWLINE = 4NL = 62NOTEQUAL = 28NT_OFFSET = 256NUMBER = 2N_TOKENS = 64OP = 54PERCENT = 24PERCENTEQUAL = 40PLUS = 14PLUSEQUAL = 36RARROW = 51RBRACE = 26RIGHTSHIFT = 34RIGHTSHIFTEQUAL = 45RPAR = 8RSQB = 10SEMI = 13SLASH = 17SLASHEQUAL = 39SOFT_KEYWORD = 59STAR = 16STAREQUAL = 38STRING = 3TILDE = 31TYPE_COMMENT = 58TYPE_IGNORE = 57VBAR = 18VBAREQUAL = 42__all__ = ['tok_name', 'ISTERMINAL', 'ISNONTERMINAL', 'ISEOF', 'ENDMARKER', ...]
tok_name = {0: 'ENDMARKER', 1: 'NAME', 2: 'NUMBER', 3: 'STRING', 4: 'NEWLINE', ...}
Ka-Ping Yee <ping@lfw.org>
GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro, Raymond Hettinger, Trent Nelson, Michael Foord
/usr/lib/python3.10/tokenize.py
Generated by phpman v4.10.0-7-g98e9fd5 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-09-02 22:08 @216.73.216.239
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)