Skip to main content

Tokenize code snippets.

Project description

Tokenize-All

Tokenize blocks of code in Python. Used by manim-code-blocks to syntax highlight blocks of code.

Example Usage

from tokenize_all import Java

tokens = Java.tokenize(
    """
    public class Main {
        public static void main(String[] args) {
            System.out.println("Hello world!");
        }
    }
    """
)

for token in tokens: print(token)

Output:

>> Token[ type = keyword, value = public, start = 4, end = 10 ]
>> Token[ type = keyword, value = class, start = 11, end = 16 ]
>> Token[ type = class name, value = Main, start = 17, end = 21 ]
>> Token[ type = left brace, value = {, start = 22, end = 23 ]
>> Token[ type = keyword, value = public, start = 31, end = 37 ]
>> Token[ type = keyword, value = static, start = 38, end = 44 ]
>> Token[ type = keyword, value = void, start = 45, end = 49 ]
>> Token[ type = function, value = main, start = 50, end = 54 ]
>> Token[ type = left parentheses, value = (, start = 54, end = >> 55 ]
>> Token[ type = class name, value = String, start = 55, end = >> 61 ]
>> Token[ type = left bracket, value = [, start = 61, end = 62 ]
>> Token[ type = right bracket, value = ], start = 62, end = 63 ]
>> Token[ type = identifier, value = args, start = 64, end = 68 ]
>> Token[ type = right parentheses, value = ), start = 68, end = >> 69 ]
>> Token[ type = left brace, value = {, start = 70, end = 71 ]
>> Token[ type = class name, value = System, start = 83, end = >> 89 ]
>> Token[ type = dot, value = ., start = 89, end = 90 ]
>> Token[ type = identifier, value = out, start = 90, end = 93 ]
>> Token[ type = dot, value = ., start = 93, end = 94 ]
>> Token[ type = function, value = println, start = 94, end = >> 101 ]
>> Token[ type = left parentheses, value = (, start = 101, end = >> 102 ]
>> Token[ type = string, value = "Hello world!", start = 102, >> end = 116 ]
>> Token[ type = right parentheses, value = ), start = 116, end >> = 117 ]
>> Token[ type = semicolon, value = ;, start = 117, end = 118 ]
>> Token[ type = right brace, value = }, start = 126, end = 127 ]
>> Token[ type = right brace, value = }, start = 131, end = 132 ]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tokenize_all-1.0.12.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

tokenize_all-1.0.12-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file tokenize_all-1.0.12.tar.gz.

File metadata

  • Download URL: tokenize_all-1.0.12.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.4

File hashes

Hashes for tokenize_all-1.0.12.tar.gz
Algorithm Hash digest
SHA256 a4178b18d9b67ae0dfd3f085b9649d3eae5421b7d20e5355c889a2aa1de0c155
MD5 0857998ccfd50d85c6e5adc5ed15432b
BLAKE2b-256 275acb35e2ea68f47cc6161565621f57b7e0bb6ac50ecedd46f16be341d0476e

See more details on using hashes here.

File details

Details for the file tokenize_all-1.0.12-py3-none-any.whl.

File metadata

File hashes

Hashes for tokenize_all-1.0.12-py3-none-any.whl
Algorithm Hash digest
SHA256 4250d3c0f28346d1c22d0368726acf2cb4704f4d7cd1e538e3075837574e53c0
MD5 8d28813bc5de01888fb6192c89b9ee21
BLAKE2b-256 b5616b07ee68890127d0576c8a88d8ce3e73ea1deea65d25d9cc7a7bf3381f09

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page