Skip to content

Instantly share code, notes, and snippets.

View grobmeier's full-sized avatar
🏠
Working from home

Christian Grobmeier grobmeier

🏠
Working from home
View GitHub Profile
from os.path import join, splitext, basename
import os
import sys
import hashlib
def file_get_contents(path):
with open(path, 'rb') as file:
return file.read()
for root, dirs, files in os.walk('.'):