Skip to content

Instantly share code, notes, and snippets.

View dcondrey's full-sized avatar

David Condrey dcondrey

View GitHub Profile
@dcondrey
dcondrey / datpatterns.py
Created March 23, 2024 23:57
Identify repeating patterns in .dat file
import struct
import re
from collections import Counter
class DatPatterns:
def __init__(self, filepath):
self.filepath = filepath
self.content = None
def read_file(self):