Skip to content

Instantly share code, notes, and snippets.

View dirkf's full-sized avatar

dirkf

View GitHub Profile
@dirkf
dirkf / defstring.py
Last active February 20, 2023 15:06
Downgrade f-strings (thanks https://github.com/JohannesBuchner/fstring-downgrade for inspiration and original code)
#!/usr/bin/env python
import sys
import re
inp = sys.stdin
out = sys.stdout
linestart = 0
while True: