Index

joshstock.in / fe619bd

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
15814 Jan 2023 23:375aaa26aWebsite rewriteJosh Stockin140G

Blob @ joshstock.in / site / generators / _variables.py

application/x-python192 bytesdownload raw
1def verify(input_variables, requires):
2 for name in requires:
3 if not name in input_variables:
4 raise KeyError(f"Generator requires variable {name} in inputed variables")
5