initial creation

This commit is contained in:
2025-05-20 11:57:43 -04:00
commit c98b612926
8447 changed files with 1862526 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env python
def snake_to_camel(name):
words = name.split('_')
new_words = [w.capitalize() for w in words]
return ''.join(new_words)
if __name__ == '__main__':
test_strings = [
"test_case",
"wombat_nest",
"blue_meany",
"JunkFile",
"blorb",
]
for t in test_strings:
print("{:12s} {}".format(t, snake_to_camel(t)))