A Python decorator is a specific change to the Python syntax that allows developers to more conveniently alter functions and methods
1
vote
1answer
34 views
Python: Can a Decorator access argument from foo1() and supply it to foo2()?
More precisely
@string_supply #This should supply **string** from foo1 into foo2
def foo2(x):
#Cannot use global string. string changes
return list(itertools.compress(string, x)) # **string** ...
2
votes
3answers
36 views
How to apply a decorator to all views (of a module) in django
It happens a lot, when all the views in a specific module are supposed to be available only when the user is authorized, or they should all do the same checks.
How could I avoid repeating the ...
2
votes
1answer
55 views
How does Flask knows which decorated function to call?
So I'm going through the basic Flask tutorial, and looking at their code there's this snippet:
@app.teardown_appcontext
def close_db_connection(exception):
"""Closes the database again at the ...
1
vote
1answer
37 views
Show error message when decorator fails
The decorator is working fine but I would like to display an error message (I'd like to use messages framework) if the user doesn't belong to any of the required groups. Here's the decorator:
def ...
0
votes
2answers
43 views
Decorating methods with custom attributes that have properties
I've got some methods which have attributes (to use .Net terminology). Something like.
#Example Usage
@RequireLoggedIn
def SomeAuthorisedFunction():
# ...
The attribute is defined as
def ...
2
votes
3answers
59 views
Dependency decorator with no duplictates
In a code below i have written depends decorator which just takes as a parametr some functions and call them before calling decorated function. So when when i use this script i get on output:
using f
...
2
votes
2answers
52 views
Modules that rely on each other
I have a bind_form custom decorator that assigns a specified django form to a function. This decorator will allow validation to be 'automatically' performed on function arguments - e.g., check if age ...
0
votes
1answer
61 views
How do I use django @lazy decorator?
First try with the django.utils.functional.lazy decorator. My function returns two lists, so I'm decorating it with @lazy(list, list). It's a plain jane function, not a method/property on a class.
...
0
votes
2answers
53 views
Can I refactor this simple callback pattern that uses the property decorator?
I'm just getting to grips with decorators in Python and using them to add callbacks to some instance variables using the following simple pattern:
class A(object):
def __init__(self):
...
3
votes
2answers
79 views
Nesting descriptors/decorators in python
I'm having a hard time understanding what happens when I try to nest descriptors/decorators. I'm using python 2.7.
For example, let's take the following simplified versions of property and ...
0
votes
1answer
83 views
Python: Generators and decorators with for a dictionary
I created a problem that exercises a one's ability to use generators, decorators, and dictionaries in Python.
However, I cannot solve this exercise myself, and was wondering if it is at all possible ...
1
vote
1answer
50 views
Why does property decorator show “object has no attribute”?
I have the following code:
import sys
import platform
from PyQt4.QtGui import QApplication
from PyQt4.QtWebKit import QWebPage
class Render(QWebPage):
def __init__(self):
self.app = ...
0
votes
1answer
42 views
@login_required() without redirecting logged-out users
Users that are not logged in are redirected by the @login_required()decorator to the LOGIN_URL specified in settings.py. So far so good. But I don't want that. Instead of redirecting them, I want to ...
3
votes
4answers
154 views
How to use Python decorators to check function arguments?
I would like to define some generic decorators to check arguments before calling some functions.
Something like:
@checkArguments(types = ['int', 'float'])
def function myFunction(thisVarIsAnInt, ...
0
votes
1answer
134 views
python decorator arguments [duplicate]
Do python decorator function support arguments a how is the implementation
def decorator(fn, decorArg):
print "I'm decorating!"
print decorArg
return fn
class MyClass(object):
def ...
0
votes
1answer
77 views
Django custom decorator for custom permission
There is a Project model with a ManyToMany relation to User model, using a join table.
If a user is not member of a project (not in the join table), I want to prevent the user from accessing a view ...
1
vote
1answer
165 views
Numpy vectorize as a decorator with arguments
I tried to vectorize (agreed, not the most efficient way to do it, but my question is rather on the decorator use) the following function
@np.vectorize
def diff_if_bigger(x, y):
return y - x ...
4
votes
3answers
115 views
Most Pythonic way to provide function metadata at compile time?
I am building a very basic platform in the form of a Python 2.7 module. This module has a read-eval-print loop where entered user commands are mapped to function calls. Since I am trying to make it ...
0
votes
1answer
64 views
Decorating a function with a method (with arbitrary arguments)
References
Before writing this question, I have referred some of the following interesting questions and feel that this scenario is not explained/covered:
Understanding Python decorators ...
3
votes
1answer
39 views
Using a decorator to add return the inner function with a property added
I have a great number of functions that runs as tests when trying to save the object, so I create a way to make it more convenient to register this methods as constraints (tests) to the object.
I'm ...
0
votes
0answers
96 views
CherryPy: Access postional arguments from URIs in tool (request.params does not work)
I have written a form validation tool (hooked to the 'before_handler'-hook) for an app I am working on. I can access parameters via cherrypy.request.params, no problem here. But I can't access ...
0
votes
1answer
76 views
Python Decorators on Class Level Variables as Metadata for Reflection?
I have a python class (actually its a Google App Engine model) which looks like this:
class MyClass(ParentClass):
variable_one = PropertyClass(...)
variable_two = PropertyClass(...)
I ...

