Skip to content

Instantly share code, notes, and snippets.

@rmasters
rmasters / .gitignore
Last active May 19, 2021 14:40
Work around Pydrive's lack of support for service_account.json
# Dynamically generated files
.service_account_pkcs12.asc
@rmasters
rmasters / example.jinja2
Last active June 9, 2024 23:18
Abusing annotations to add secondary-values to Python StrEnums
{% for region in regions|sort %}
<label><input type="radio" name="region" value="{{ region.value }}" required> {{ region }}</label>
{% endfor %}