Skip to content

Instantly share code, notes, and snippets.

View abdullahkulcu's full-sized avatar
🎯
Focusing

Abdullah Külcü abdullahkulcu

🎯
Focusing
  • Turkey
View GitHub Profile
@abdullahkulcu
abdullahkulcu / memoize.py
Created December 26, 2022 12:38
Python Memoize Sample
import logging
from datetime import datetime
logger = logging.getLogger(__name__)
class Memoize:
def __init__(self, f):
self.func = f
self.mem_data = {}