pseudocode-i18n
| Resource | Link | Purpose |
|---|---|---|
| pseudocode-i18n — repository | gitlab.com/rod2ik/pseudocode-i18n | Multilingual parser, formatter, native type system, semantic linter, Python transpiler and execution core |
| pseudocode-i18n — documentation | rod2ik.gitlab.io/pseudocode-i18n | Complete user and developer documentation |
| pygments-lexer-pseudocode-i18n | gitlab.com/rod2ik/pygments-lexer-pseudocode-i18n | Pygments syntax highlighting based on the same multilingual vocabulary |
| mkdocs-pseudocode-i18n | gitlab.com/rod2ik/mkdocs-pseudocode-i18n | MkDocs integration for pseudocode blocks, rendering and teaching material |
| vscode-pseudocode-i18n | gitlab.com/rod2ik/vscode-pseudocode-i18n | VS Code editing experience for .pseudo and .algo files, published on Open VSX and Visual Studio Marketplace |
| pseudocode-i18n-languageserver | gitlab.com/rod2ik/pseudocode-i18n-languageserver | Shared LSP intelligence for Kate, Neovim, Spyder and other editor integrations |
| thonny-pseudocode-i18n | gitlab.com/rod2ik/thonny-pseudocode-i18n | Thonny 5 adapter using the same LSP intelligence, snippets, navigation and flowcharts |
Current version: 0.9.12. Release history: pseudocode-i18n changelog. License: GNU GPL-3.0-or-later.
pseudocode-i18n lets students, teachers and developers write the same pseudocode language in several natural languages, while keeping one common semantic model underneath.
Write a normal .pseudo or .algo file, in French, Spanish, Italian, Portuguese, German, Dutch, Danish, Swedish, Norwegian, Finnish, Greek, Ukrainian, Russian or English. The language can be detected automatically. The same source can then be checked, semantically linted, formatted, executed, transpiled bidirectionally with Python, or exported/rendered as a Mermaid flowchart/algorigram.
# language: fr
age est un entier
age = 17
Si age >= 18 Alors:
Afficher "Majeur"
Sinon:
Afficher "Mineur"
Fin
Transpiles to:
age: int
age = 17
if age >= 18:
print("Majeur")
else:
print("Mineur")
Why this project?
Pseudocode used in classrooms is rarely standardized. The same ideas are written as Afficher, Écrire, Mostrar, Escribir, Print, Display, Si ... Alors, If ... Then, FinSi, Fin, or with indentation only.
pseudocode-i18n deliberately accepts these common teaching variants, maps them to one AST, and provides one predictable canonical formatter.
Main goals:
- two equivalent source extensions for every language:
.pseudoand.algo; - automatic language detection with an explicit override when needed;
- tolerant input, but deterministic canonical formatting;
- indentation-based block semantics, like Python;
- optional
FinSi/FinPour/FinFonction-style terminators for constructs that need a separate closer; - a generic optional terminator (
Fin,Fim,Fine,Ende,End); - localized types, constants, operators, input/output verbs and control flow;
- bidirectional Python transpilation for the supported subset, without losing useful type information;
- a shared language definition for CLI, Pygments, MkDocs and VS Code integrations.
Current capabilities
The core keeps language semantics, editor help, execution tracing and flowchart metadata in one editor-neutral model instead of frontend-specific tables or runtimes.
- 14 data-driven languages with Unicode identifiers, automatic detection,
# language: xx/# lang: xx, localized infinitive/imperative synonyms and project configuration; - contextual editor help now covers not only major keywords but also grammar fragments/connectors generated from the language patterns: for example French
Alors,fois,Jusqu'à, and every word of multi-word import syntax such asen tant que; - the shared pedagogical catalogue now models complete constructions instead of ambiguous fragments: counted repeat, repeat-until, range loop, stepped range loop and collection loop have distinct localized entries in all 14 languages; every card carries concrete examples, and
Pour … Dans …demonstrates several iterable families rather than repeating its abstract syntax; - documentation search metadata is generated once in the core with title → aliases/syntax → description/examples priority, so editor frontends can filter instantly without reparsing source or maintaining their own help index;
- import documentation presents simple imports,
depuis/from, aliases, the localizedlocalmodifier, and both traditional and natural word orders; - import operands remain identifiers: a name such as
sqrtinimporte sqrt depuis mathis not mistaken for generic builtin documentation; - the semantic roles used by Pygments/IDE adapters mirror equivalent Python roles: function/class declarations are definitions, localized constructors behave like Python
__init__,Videbehaves likeNone, builtins likeAfficherbehave likeprint, and import operands are classified as module/name/alias rather than keywords; - strict explicit-type contracts, typed-operation checking, recovering multi-diagnostics, project-aware
math/random/ local modules, localized runtime errors and precise source maps remain part of the core; - universal English
public,privateandprotectedremain accepted in every language alongside localized spellings; - snippets, semantic index, definitions/references/signatures, bidirectional Pseudocode ↔ Python transpilation, canonical formatting and Mermaid/SVG/PNG flowcharts are shared core APIs;
- the editor-neutral
pseudocode-tutor/v2model exposes step-by-step execution with source lines, scopes/variables, changed values, call stack, incremental output deltas/reset markers, conditions and input state; human-facing event/scope labels and renderedtrue/false/ null values follow the detected Pseudocode language while protocol identifiers and native JSON values stay stable for clients; - Tutor sessions embed static flowchart snapshots with stable node/edge IDs. A rich frontend renders a graph once, then each execution step only activates the IDs supplied by the core instead of regenerating Mermaid/Chromium output;
- the tracing path caches immutable expression/statement transpilation, while parser structures and automatic-language evidence are precompiled/reused; a parsed AST can be shared by linting, semantic indexing, Tutor and flowchart generation instead of reparsing the same document.
The core still keeps normal execution efficient: richer editor intelligence is metadata/static-analysis work and does not add per-statement runtime tracing overhead. Editor/Tutor workloads also reuse parsed and precompiled structures so repeated stepping or live diagnostics do not redo unchanged language work.
Shared editor intelligence, runtime diagnostics and modules
The core exposes an editor-neutral semantic index with exact source ranges, definitions, references, signatures and symbol metadata. The shared pseudocode-i18n-languageserver consumes this API to provide diagnostics, snippets plus semantic completion, pedagogical hover help, signature help, document symbols, navigation, rename and formatting without duplicating the language grammar. VS Code and Thonny both consume this same intelligence.
The core also owns the editor-help catalogue and localized runtime-error catalogue so future IDEs receive the same explanations. Editor help is fully localized (for example Syntaxe in French and Sintaxis in Spanish) and deliberately lists every accepted spelling for a construct, including imperative/infinitive synonyms and automatically accepted accentless variants. Runtime error mapping is designed for execution performance: generated Python contains comment-only source markers, normal execution has no per-statement tracing overhead, and source-line localization is performed only when an exception occurs. Syntax and runtime failures are rendered in the Pseudocode language with the original Pseudocode line number and source line; Python backend exception class names are not exposed in the normal learner-facing message. Parser-recovery details are localized too: an internal English parser message is never appended to a French, Spanish or other localized diagnostic.
Object-oriented access modifiers are language-neutral concepts. Every one of the 14 languages accepts its localized spellings and the universal English spellings public, private and protected; accentless variants supplied by the language packs remain accepted as well.
The linter also recovers after independent malformed lines instead of stopping at the first one. Recovery covers both line-local faults and structural faults such as missing block bodies, unexpected indentation, orphan branches, misplaced constructors and incomplete repeat/until structures. The preflight is a single O(n) structural pass followed by one authoritative parse of the analysis-only repaired source, avoiding repeated reparses and O(n²) worst-case behavior. A counted loop missing its localized “times” word, an incomplete input statement and a bad module name can therefore all receive squiggles in the same document. The user's source is never rewritten and invalid code is never made executable.
Imports are now resolved through a deliberately small Pseudocode module model. math and random are standard modules; sibling/project .algo and .pseudo files are local Pseudocode modules. Arbitrary Python packages are not exposed implicitly. Standard module names keep priority, while the localized local keyword explicitly forces a same-named local module. For example in French:
importe sqrt depuis math en tant que rac
importer sqrt depuis math en tant que rac
importe geometrie
importe aire depuis geometrie
importe aire depuis local geometrie en tant que aire_locale
Unknown modules (PSE113) and unknown imported members (PSE114) are reported on the offending token. Local modules are transpiled only when imported and cached afterwards, so this support adds no per-statement execution overhead.
Two universal pedagogical random helpers are available in all 14 languages, alongside the existing localized aliases:
alea() -> real in [0, 1[
entalea(a, b) -> integer in [a, b] (both bounds included)
In French, the existing hasard(n) remains the integer helper for [0, n[, and aleatoire(a, b) remains an alias of the inclusive integer range helper.
Install
python -m pip install pseudocode-i18n
On a system-managed Python installation where you deliberately use system packages:
python -m pip install --break-system-packages pseudocode-i18n
The package installs two equivalent commands:
pseudo
pseudocode
Two equivalent source extensions, automatic language detection
Every pseudocode source file uses either of the two canonical extensions, regardless of language:
algo.pseudo
algo.algo
.pseudo and .algo are strictly equivalent; neither extension carries language information.
In the normal case, the language is detected from the source:
pseudo algo.pseudo
If detection needs to be overridden, put a universal metadata directive at the beginning of the file:
# language: es
or force it from the CLI:
pseudo --lang es algo.pseudo
Resolution order is:
CLI/API > # language: xx > project configuration > automatic detection > fallback
The canonical form is # language: fr. The aliases # language fr, # lang: fr and # lang fr are also accepted; language and lang are synonyms and the colon is optional. # is the only comment/directive marker; // is integer division.
Pseudocode in several languages
The bundled language order is French, Spanish, Italian, Portuguese, German, Dutch, Danish, Swedish, Norwegian, Finnish, Greek, Ukrainian, Russian, then English. Every Usage topic is generated separately for all 14 languages.
Français
Si note >= 10 Alors:
Afficher "Admis"
Sinon:
Afficher "Ajourné"
Fin
Español
Si nota >= 10 Entonces:
Mostrar "Aprobado"
Sino:
Mostrar "No aprobado"
Fin
Italiano
Se voto >= 10 Allora:
Mostra "Promosso"
Altrimenti:
Mostra "Non promosso"
Fine
Português
Se nota >= 10 Então:
Mostrar "Aprovado"
Senão:
Mostrar "Reprovado"
Fim
Deutsch
Wenn note >= 10 Dann:
Ausgeben "Bestanden"
Sonst:
Ausgeben "Nicht bestanden"
Ende
English
If grade >= 10 Then:
Display "Passed"
Else:
Display "Failed"
End
Flexible conditionals, canonical formatting
French conditionals accept, among others:
Si condition:
Si condition
Si condition Alors:
Si condition Alors
Sinon, Sinon Si, optional Alors, optional colons, specific terminators and generic Fin are also accepted.
For example, all these tolerant variants converge with pseudo format toward:
Si condition Alors:
Afficher "oui"
Sinon Si autre_condition Alors:
Afficher "peut-être"
Sinon:
Afficher "non"
Fin
Indentation determines the actual block structure. End markers are always optional.
Input and output synonyms
Vocabulary is language data rather than parser code.
French examples:
Afficher "Bonjour"
Écrire "Bonjour"
Ecrire "Bonjour"
Saisir n
Lire n
Lis "Ton nom", nom
A prompt-only input statement such as Lis "Allo" is incomplete because the entered value has nowhere to be stored. The linter reports this before execution and points to the original source line.
Spanish examples:
Mostrar "Hola"
Escribir "Hola"
Leer n
Introducir n
Lee "Tu nombre", nombre
Natural localized imports are accepted in the same data-driven way. For example:
Importe sqrt depuis math en tant que rac
Importa sqrt desde math como raiz
Both transpile to a Python from ... import ... as ... statement. Matching is case-insensitive, and accentless equivalents of declared accented spellings are generated automatically.
Variables and optional types
Type declarations are never mandatory. You can write ordinary Python-like assignments:
a = 2
a = a + 2
or add pedagogical type declarations. The compact name: type notation is accepted in every source language as well as the localized natural forms:
i: chaîne
a est un entier
a, b sont des flottants
nom est une chaîne
notes est un tableau
d est un dictionnaire
vus est un ensemble
coordonnees est un tuple
An explicit annotation is a contract: after i: chaîne, assigning i = 0 is a localized PSE105 type error. Binary operations are also checked when both operand types are known. Numeric arithmetic is allowed between numeric types, strings/lists/tuples concatenate only with compatible families, and string/list repetition by an integer remains valid (3 * "ha"), while combinations such as 3 + " pommes" or Vrai + 1 are rejected. Untyped variables remain gradual/dynamic; add an annotation when a stable pedagogical type is required.
They are preserved in Python as annotations:
a: int
a: float
b: float
nom: str
notes: list
d: dict
vus: set
coordonnees: tuple
Bundled semantic type families:
| Semantic type | Python | French examples | English examples |
|---|---|---|---|
| integer | int |
entier, int |
integer, int |
| float | float |
flottant, réel |
float, real |
| string | str |
chaîne, str |
string, str |
| boolean | bool |
booléen, bool |
boolean, bool |
| array/list | list |
tableau, liste |
array, list |
| dictionary | dict |
dictionnaire, dict |
dictionary, dict |
| set | set |
ensemble, set |
set |
| tuple | tuple |
tuple, n-uplet |
tuple |
The same model is localized in all 14 bundled languages.
Vide / null values are not empty collections
A localized null constant has the same semantic role as Python None:
x = Vide
becomes:
x = None
Spanish accepts Vacío and its automatically generated accentless form Vacio; the other languages provide their own localized vocabulary.
This is distinct from empty collections:
[] # empty list
{} # empty dictionary, exactly like Python
Ensemble() # empty set -> set()
Tuple() # empty tuple -> tuple()
Dictionnaire() # empty dictionary -> dict()
Assignment forms
All of these are accepted as assignments:
a = 2
a := 2
a <- 2
a ← 2
2 -> a
2 → a
The canonical formatter emits =.
Membership and mathematical notation
Localized word operators and mathematical symbols are equivalent.
French examples:
x Dans E
x Inclus Dans E
x ∈ E
x Pas Dans E
x Non Dans E
x Non Inclus Dans E
x ∉ E
They transpile to Python in / not in.
Optional Faire / Do loop suffixes and logical negation
All 14 languages accept an optional localized do suffix on while, range-for and collection-for headers. In French, for example, all of these forms are valid:
Tant Que x < 10 Faire:
x = x + 1
Fin
Pour valeur Dans valeurs Faire:
Afficher valeur
Fin
Pour i de 1 à n Faire:
Afficher i
Fin
The final colon remains optional, exactly as for the corresponding forms without Faire. Canonical snippets use the suffix with the colon. The equivalent suffix is localized in every bundled language (Hacer in Spanish, Do in English, and so on).
Range loops also expose a dedicated step snippet. French uses the concise canonical template Pour … de … à … pas … Faire: while accepting the usual teaching variants avec pas, avec un pas and avec un pas de, with or without the trailing colon. Other languages expose one natural step snippet derived from their own grammar. Hover help remains exhaustive: it lists every accepted spelling for the recognized range-loop structure, without duplicating colon/no-colon forms, and contextual connectors such as French de, à, pas and Faire resolve to the range loop rather than to unrelated constructs such as imports.
Logical negation is localized as well. French NON expression has the same truth-value semantics as Python not expression and always returns a boolean. This applies to booleans, numbers, strings, collections and Vide: zero, empty values and Vide are falsey before negation; non-empty/non-zero values are truthy.
Exclusive OR is also localized. French accepts OUEX and Ou Exclusif, Spanish accepts OEX and O Exclusivo, and every language keeps universal XOR as a compatibility alias. The shared snippet catalogue contains one localized XOR expression template in every language.
Repeat loops
Repeat a fixed number of times:
Répéter 5 fois:
Afficher "Bonjour"
Fin
All 14 bundled languages accept the infinitive and the natural second-person imperative for action verbs whenever those forms are distinct, not only for repeat. For example, French accepts Afficher / Affiche, Lire / Lis, Retourner / Retourne, Importer / Importe and Répéter / Répète; Spanish accepts Importar / Importa; German accepts Importieren / Importiere and natural multi-word imperatives such as Ausgeben / Gib aus. Languages where both grammatical forms have the same spelling naturally expose only that spelling. Localized collection methods follow the same principle where a verb has distinct forms.
becomes:
for _ in range(5):
print("Bonjour")
Post-test repeat-until loop:
n = 0
Répéter:
n = n + 1
Jusqu'à ce que n >= 5
Jusqu'à n >= 5 is equivalent. In French, the formatter (pseudo format, VS Code / Thonny format command) now chooses this shorter Jusqu'à ... spelling as the canonical output while continuing to accept Jusqu'à ce que .... The Jusqu'à ... line closes the post-test loop, so no Fin follows it.
becomes:
n = 0
while True:
n = n + 1
if n >= 5:
break
The body therefore executes at least once.
Fast direct execution
pseudo file.pseudo still transpiles to Python, but the CLI executes the generated Python inside its own short-lived process instead of starting a second Python interpreter. Language definitions and compiled grammar templates are cached per process, and the C-backed safe YAML loader is used when available. These changes reduce startup overhead substantially for the tiny programs used in introductory teaching while keeping Python strictly as the execution backend.
Run, check, transpile and format
Run directly:
pseudo programme.pseudo
Check syntax:
pseudo check programme.pseudo
Transpile pseudocode → Python:
pseudo transpile programme.pseudo -o programme.py
pseudo transpile -i programme.pseudo -o programme.py
pseudo transpile -input programme.pseudo -output programme.py
Transpile Python → pseudocode:
pseudo transpile programme.py -o programme.pseudo --lang fr
pseudo transpile -i programme.py -o programme.pseudo --lang fr
pseudo transpile -input programme.py -output programme.pseudo --lang fr
The direction is inferred from .pseudo/.algo versus .py. Unsupported Python statements fail explicitly rather than being approximated silently.
Inclusive bounded loops prefer ordinary Python range(...) whenever the direction is statically known. For example, French Pour i de 1 à 5 Faire: transpiles to for i in range(1, 6):; a small compatibility helper is retained only for genuinely dynamic ranges whose direction cannot be known statically without changing semantics.
Canonical formatting in place:
pseudo format programme.pseudo
pseudo format programme.pseudo --check
Flowchart / algorigram export and rendering
Export Mermaid source:
pseudo flowchart programme.pseudo -o programme.mmd
Render directly to SVG or PNG:
pseudo render programme.pseudo -o programme.svg
pseudo render programme.pseudo -o programme.png
pseudo render programme.mmd -o programme.svg
pseudo render programme.mmd -o programme.png
pseudo svg is an SVG-only alias. Rendering uses Mermaid CLI, auto-detects Chromium/Chrome when possible, and uses a transparent background by default. SVG export uses native SVG text labels (instead of HTML foreignObject labels) so node text remains visible in standalone SVG viewers. Pass --theme light or --theme dark to match the current editor theme.
Tutor executions can also be exported as an animated GIF. Frames are emitted only for meaningful node/edge activation changes, and Mermaid layout is rendered once per visited scope rather than once per frame. GIF SVG and PNG renders use the same fixed, non-responsive Mermaid flowchart geometry (useMaxWidth: false), so active-node/edge overlays stay aligned throughout tall diagrams without any viewport-dependent scale drift:
pseudo tutor-gif programme.pseudo -o programme-tutor.gif --theme light
Frontends that already own a pseudocode-tutor/v2 model can reuse it with --model-json so the program is not traced again.
Python API
Automatic language resolution is the default:
from pseudocode_i18n import (
SUPPORTED_EXTENSIONS, detect_language, format_pseudocode, parse,
render_mermaid, resolve_snippets, snippets_for_language,
to_mermaid, transpile, transpile_python,
)
source = '''
Si x > 0 Alors:
Afficher x
Fin
'''
detection = detect_language(source)
tree = parse(source)
python_source = transpile(source)
canonical_source = format_pseudocode(source)
mermaid = to_mermaid(source)
pseudo_again = transpile_python(python_source, language="fr")
render_mermaid(mermaid, "programme.svg")
assert SUPPORTED_EXTENSIONS == (".pseudo", ".algo")
french_snippets = snippets_for_language("fr")
resolved_snippets = resolve_snippets(source, fallback="fr")
Force a language when needed:
python_source = transpile(source, language="fr")
detect_language() returns the selected ISO 639-1 code together with confidence/scores through a LanguageDetection object. snippets_for_language() exposes the canonical localized editor/LSP snippets, while resolve_snippets() applies the same language precedence as normal source processing.
Project configuration and custom synonyms
Canonical project file:
pseudocode.config.yml
Example:
language: auto
fallback_language: fr
index_base: 0
format:
colons: true
indent: 4
end_markers: true
render:
browser: auto
background: transparent
mermaid_cli: auto
languages:
fr:
keywords:
display:
add:
- Montrer
lang: is a supported alias for the project-level language: key. The canonical spelling in documentation remains language::
lang: es
fallback_language: fr
This makes Montrer an additional French display synonym without modifying the parser.
Bundled language data live in:
pseudocode_i18n/languages/fr.yml
pseudocode_i18n/languages/es.yml
pseudocode_i18n/languages/it.yml
pseudocode_i18n/languages/pt.yml
pseudocode_i18n/languages/de.yml
pseudocode_i18n/languages/nl.yml
pseudocode_i18n/languages/da.yml
pseudocode_i18n/languages/sv.yml
pseudocode_i18n/languages/no.yml
pseudocode_i18n/languages/fi.yml
pseudocode_i18n/languages/el.yml
pseudocode_i18n/languages/uk.yml
pseudocode_i18n/languages/ru.yml
pseudocode_i18n/languages/en.yml
They define vocabulary, patterns, end forms, type names, method/function aliases and flowchart labels. This is the preferred place for language-specific evolution.
Human-facing IDE documentation is deliberately just as simple and lives one file per language in pseudocode_i18n/documentation/ (fr.yml, es.yml, …, en.yml). Each stable entry contains directly editable title, description and examples; accepted syntax and aliases stay generated from the language grammar so the documentation cannot drift from what the parser actually accepts. This directory is the single source used by Thonny at runtime and by the VS Code generator. See pseudocode_i18n/documentation/README.md for the tiny editing contract.
Add another language
Languages use ISO 639-1 two-letter codes.
For example:
yarn generate nl
creates a Dutch language scaffold containing the full vocabulary, diagnostics, editor text and Usage-documentation contract, then regenerates documentation. Fill the translations and choose language.order, then run the same command again to validate/regenerate it. No parser, linter, lexer, MkDocs or VS Code source registry needs to be edited.
Development
Bootstrap:
corepack enable
yarn setup
Run tests:
yarn test
Run the documentation locally:
yarn dev
LAN/mobile documentation server:
yarn dev:lan
Full validation before committing/releasing:
yarn bfc
yarn bfc synchronizes the project version from package.json, validates version consistency, lints, runs tests, regenerates/checks/builds the documentation, and builds the Python package.
Version source of truth
package.json is the single source of truth for the project version.
yarn version:sync
synchronizes derived Python metadata and the version displayed in this README. MkDocs narrative pages can use:
__PSEUDOCODE_I18N_VERSION__
and site/hooks/version.py replaces that placeholder from package.json during the documentation build.
Documentation policy
Documentation is part of every change. Grammar, CLI, configuration, formatting, transpilation, flowcharts, language data, highlighting vocabulary and development workflow changes must update their corresponding documentation in the same revision.
The MkDocs home page is generated from this README, so the repository landing page and documentation landing page cannot silently drift apart.
License
GNU General Public License version 3 or later (GPL-3.0-or-later). See LICENSE.
AUTRES PROJETS de ce développeur
The Pseudocode ecosystem is split into small reusable projects so that each integration can share the same grammar instead of reimplementing it:
- pygments-lexer-pseudocode-i18n — Pygments lexer using the common multilingual semantic vocabulary and Python-like token categories.
- mkdocs-pseudocode-i18n — MkDocs integration for pseudocode in teaching/documentation sites.
- vscode-pseudocode-i18n — editor integration for
.pseudo/.algofiles, formatting and language-aware authoring.
The core project is pseudocode-i18n and its documentation is published at rod2ik.gitlab.io/pseudocode-i18n.
Release files for pseudocode-i18n 0.9.12
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pseudocode_i18n-0.9.12.tar.gz | 344.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pseudocode_i18n-0.9.12-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 612.8 kB
Release files / pseudocode_i18n-0.9.12.tar.gz
| Download URL | pseudocode_i18n-0.9.12.tar.gz |
|---|---|
| Size | 344.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d25fb3503eae93b86aeb4fa7a7521bec8a85fc37ce3a2e696b0c6f35d584d37f
|
|
BLAKE2b-256 checksum How to use checksums |
5d7be90e27f3728919d594be81d5caee097b29ec8789b1350fee8f940eecfc09
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.15
|
Release files / pseudocode_i18n-0.9.12-py3-none-any.whl
| Download URL | pseudocode_i18n-0.9.12-py3-none-any.whl |
|---|---|
| Size | 268.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
29e955531783bcdaf6a0fda91cbdf690a5e95e772a47e6957c07bb3d46b3a714
|
|
BLAKE2b-256 checksum How to use checksums |
27177c593444614f9827d3fc927e9377e66871261bdae7f35b1d2c5410189ba8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.15
|