Skip to content

Instantly share code, notes, and snippets.

View frbry's full-sized avatar
🎯
Focusing

Barış Yeşilçiçek frbry

🎯
Focusing
View GitHub Profile
@frbry
frbry / random_sleep.py
Created June 30, 2014 17:18
A Simple Decorator for Simulating Delays in Method Calls
from functools import wraps
from random import randint
# Example Usage:
#
# @random_sleep
# def get_users(request):
# return database.users()
#