Skip to main content

Questions tagged [decorator-pattern]

2 votes
1 answer
146 views

I have some production code that contains a lot of repetition and mixes business logic with auditing and logging. I've made two attempts at refactoring it, primarily using decorators. I'd like to get ...
KJanek's user avatar
  • 143
4 votes
1 answer
91 views

Disclaimer: It's been quite a long time since I asked questions here, and also I am a complete novice in FastAPI. I am playing with FastAPI authorization and wondering how can I protect my routes from ...
John's user avatar
  • 217
6 votes
3 answers
707 views

I'm currently trying a Password checker for password in Decorator Pattern, which will point out what the current password missing to be a strong password (my example will check for 8 characters, at ...
DEF ABC's user avatar
  • 63
2 votes
0 answers
381 views

I want to write a decorator in Python 3.11 that adds some basic logging to functions. I want to use the decorator without any keyword arguments: @add_logging In ...
uli's user avatar
  • 21
1 vote
1 answer
420 views

Pandas likes to throw cryptic errors when you feed its functions with empty DataFrames saying nothing that would help you to identify the root cause. In order to ...
t3chb0t's user avatar
  • 44.7k
3 votes
1 answer
91 views

Although throwing excptions for control flow is a controversial topic there are some quite popular examples of using this anti-pattern like C#'s async routines throwing the ...
t3chb0t's user avatar
  • 44.7k
5 votes
1 answer
282 views

I'd like to wrap all my sqlite statement functions with a decorator which collects the statement and the lists of values I will inject in place of placeholders in my statement (to avoid sql injection)....
FTG's user avatar
  • 195
1 vote
0 answers
107 views

I have a method in a class that accepts either a datetime or string parameter. It is shown in the last code block (I didn't include the class). A little background is that I am defining a wrapper ...
Travis DePriest's user avatar
5 votes
0 answers
78 views

Today, I've got a small FlowLogger for you to review. The idea is not to log pure messages, but focus on the flow of the app that might contain such items as: <...
t3chb0t's user avatar
  • 44.7k
0 votes
1 answer
354 views

Motivation: without SaveDecorator, we would have to write: ...
prestokeys's user avatar
  • 1,401