Skip to content

Instantly share code, notes, and snippets.

View tpillow's full-sized avatar
😄

Tony tpillow

😄
View GitHub Profile
@tpillow
tpillow / to_snake_case.py
Created June 24, 2025 20:49
Generic project snake_case renamer/formatter
#!/usr/bin/env python3
# Utility to re-name symbols in any code file to snake_case.
# Originally made for Godot (gdscript) files to rename camelCase to snake_case
# across a project.
import re
import os
##### CONFIGURATION