Genshi
1 program
Added 2026-02-12T13:29:27Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 509ee415a7 · authored 2026-02-12T14:30:03+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/genshiExtensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.kid | linguist | primary | 27.9K files |
.kid | pygments | primary | 27.9K files |
Related languages
LLM-contributed programs
Text Template Example
Provenance: commit 509ee415a7 · authored 2026-02-12T14:30:03+01:00 · agent claude-code · model sonnet · WebSearch disabled
from genshi.template import TextTemplate
# Define a simple Genshi text template
tmpl = TextTemplate('''
Hello, $name!
#for item in items:
* ${item}
#end
Your total is: $total
''')
# Render the template with data
stream = tmpl.generate(
name='World',
items=['apples', 'bananas', 'oranges'],
total=42
)
print(stream.render())
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)