Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

61
votes
7answers
30k views

Proper way to use **kwargs in Python

What is the proper way to use **kwargs in Python when it comes to default values? kwargs returns a dictionary, but what is the best way to set default values, or is there one? Should I just access ...
36
votes
11answers
5k views

*args and **kwargs?

So I have difficulty with the concept of *args and **kwargs. So far I have learned that: *args = list of arguments -as positional arguments **kwargs = dictionary - whose keys become separate ...
11
votes
4answers
8k views

Understanding kwargs in Python

What are the uses for **kwargs in Python? I know you can do an objects.filter on a table and pass in a **kargs argument. Can I also do this for specifying time deltas i.e. timedelta(hours = time1)? ...
10
votes
8answers
3k views

Why use **kwargs in python? What are some real world advantages over using named arguments?

I come from a background in static languages. Can someone explain (hopefully through example) the real world advantages of using **kwargs over named arguments? To me it they seem to only make the ...
8
votes
0answers
237 views

Do Python's `*` and `**` specifiers have a name? [closed]

Possible Duplicate: proper name for python * operator? * is clearly used when unpacking an arbitrary number of arguments and ** is used when unpacking keyword arguments as a dictionary. ...
6
votes
5answers
535 views

Get kwargs Inside Function

If I have a python function like so: def some_func(arg1, arg2, arg3=1, arg4=2): Is there a way to determine which arguments were passed by keyword from inside the function? EDIT For those asking ...
5
votes
3answers
1k views

Passing a list of kwargs?

Can I pass a list of kwargs to a method for brevity? This is what i'm attempting to do: def method(**kwargs): #do something keywords = (keyword1 = 'foo', keyword2 = 'bar') method(keywords)
4
votes
1answer
93 views

Nested function decorators that operate on arguments in python

I am writing a function decorator that will apply a conversion to the first argument of the function. It works fine if I only decorate my functions once but if I decorate them twice I get an error. ...
4
votes
2answers
254 views

How can I set arbitrary attributes on Django Model Fields, then access them in a ModelForm?

What Django Does Django's Model Field "blank" attribute, and the way it gets negated and turned into the Form Field "required" attribute when you create a ModelForm, is pretty cool. It allows me to ...
3
votes
3answers
267 views

What is the Python convention **kwargs vs **kwds vs **kw?

Is there a python naming convention for key word arguments?
3
votes
6answers
442 views

kwargs parsing best practice

Is there a more compact/efficient way of doing this? for key in kwargs: if key == 'log': self.log = kwargs[key] elif key == 'bin': self.bin = kwargs[key] ...
2
votes
1answer
68 views

How to generate a `kwargs` list?

From an external file I generate the following dictionary: mydict = { 'foo' : 123, 'bar' : 456 } Given a function that takes a **kwargs argument, how can generate the keyword-args from that ...
2
votes
1answer
160 views

How do you pass kwargs to a boost-python wrapped function?

I have a python function with this signature: def post_message(self, message, *args, **kwargs): I would like to call the function from c++ and pass to it some kwargs. Calling the function is not ...
2
votes
1answer
113 views

Are **kwargs a good choice for non-configuration data in __init__?

I'm thinking of using **kwargs in an unusual way: as data provider and not as overloading substituting tool. In this way all keyword arguments should be of one type, for example specifically formed ...
2
votes
1answer
515 views

Django pre_save signal: check if instance is created not updated, does kwargs['created'] (still) exist?

I am using Django's pre_save signal to implement auto_now_add. There is a lot of discussion on the internet on why you should or shouldn't implement it yourself. I do not appreciate comments on this. ...
1
vote
2answers
71 views

Using current scope as kwargs in python

I basically want to expand the current scope as you would a dictionary when calling a function. I remember seeing something about this somewhere but I cannot remember where or how to do it. Here is ...
1
vote
5answers
108 views

Python function “remembering” earlier argument (**kwargs)

I have some objects that have a dictionary of attributes, obj.attrs. The constructor for these objects accepts a dict and/or **kwargs, for convenience. It looks a little like this: class Thing: ...
1
vote
1answer
99 views

decorator python library hide the kwargs inside args

I got a pretty weird behaviour with the decorator library which is explained in the next code: from decorator import decorator @decorator def wrap(f, a, *args, **kwargs): print 'Decorator:', ...
1
vote
1answer
399 views

python dict to kwargs is possible?

I want to build a query for sunburnt(solr interface) using class inheritance and therefore adding key - value pairs together. The sunburnt interface takes keyword arguments. How can I transform a dict ...
1
vote
3answers
294 views

Python keyword args vs kwargs

This might be a simple question: Is there any difference between the two folowing: def myfunc(a_list = [], **kwargs): my_arg = kwargs.get('my_arg', None) pass and def myfucn(a_list = [], ...
1
vote
1answer
135 views

Form doesn't accept additional parameters

I was trying to pass an additional parameter to my form, which is anObject to ForeignKey relation. But dunno why form returns __init__() got an unexpected keyword argument 'parent' when I'm pretty ...
1
vote
1answer
223 views

Update App Engine model with dictionary

You can create a new model in App Engine using a dictionary: my_model = MyModel.get_or_insert(keyname, **kwargs) Is there a way to update a model using a dictionary instead of doing the following? ...
1
vote
2answers
353 views

Django: How to write the reverse function for the following

The urlconf and view is as follows: url(r'^register/$', register, { 'backend': 'registration.backends.default.DefaultBackend' }, ...
1
vote
1answer
158 views

Merge decorator function as class

Need to create a class that will do all things as the "merge" function. In class i will change, process and add new arguments. def merge(*arg, **kwarg): # get decorator args & kwargs def ...
0
votes
1answer
104 views

Handling url reverse function for django view with multiple kwargs

I'm building a database application using django. Much of the data recorded requires supporting documentation (this documentation is scanned in and uploaded). Many of my django views include links to ...
0
votes
4answers
156 views

Is **kwargs in Python eager or lazy?

I'm trying to execute a Django query: #att.name is a string kwargs = {att.name : F('node__product__' + att.name) } temps = Temp.objects.exclude(**kwargs) I'm wondering if this is correct. All the ...
0
votes
1answer
400 views

Python: Using *args, **kwargs in wrapper functions

I'm writing a wrapper function for Django's render_to_response() to add a CSRF processing. The logic is: def some_view (request) dictionary = {'context_param': some_param} ...
0
votes
1answer
128 views

Why doesn't this django code work?

urls.py url(r'^some/page/$', views.some_page, {'template_name': 'some/page.html'}, name='some_page'), views.py url = request.build_absolute_uri(reverse('some_page')).lower() response = ...
0
votes
1answer
602 views

How to pass unicode keywords to **kwargs

I was exception the following to work. def foo(**kwargs): print kwargs foo(**{'a':'b'}) foo(**{u'a':'b'}) Traceback (most recent call last): File "", line 1, in TypeError: ...
0
votes
1answer
82 views

form.cleaned_data as a dictionary

Why when I call a function like this : function(request, **form.cleaned_data) I can send form's data as a dictionary, but when I try doing like this : data = **form.cleaned_data I'm getting ...
0
votes
1answer
77 views

Passing in **kwargs from Flex over PyAMF

Anyone know if it is easily possible to send **kwargs over PyAMF from NetConnection.call()? I would like it. I could write a wrapper around the actual function and expose that and perform some ...
0
votes
3answers
283 views

Interchange of Position of Two Keyword Arguments Throws Error

I have an odd problem. I know that in Python, kwargs follow args, so I checked for that and it's not the problem. What is the problem is this: Fine: def __init__(self, sample_rate, label=u"", ...
0
votes
4answers
239 views

How to replace Python function while supporting all passed in parameters

I'm looking for a way to decorate an arbitrary python function, so that an alternate function is called instead of the original, with all parameters passed as a list or dict. More precisely, ...