The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
20 views

URL Regx mapping in tornado web server

I am using tornado web server for my application. following is one of the url mapped to a handler. from publish.handler import PublishHandler, PublishedHandler URLS = ...
0
votes
1answer
30 views

metaclassing, defining __init__ to pass attributes for the instances (not for the class) using a dictionary

Similarly to this question I would like to pass the attributes from a dictionary to an instance of a class, but creating the class using type, like this: attrs = { 'name': 'Oscar', 'lastName': ...
1
vote
1answer
28 views

calling Python kwargs functions with special keys

I want to use kwargs in Python like this: def myfunc(**kwargs): ... do something ... x = myfunc(a=1, b=2, #value=4) But I can't, because #value is not a valid Python keyword Alternatively, I ...
0
votes
2answers
44 views

django - how to do this with kwargs

I am wondering when I touch db when doing queries. more precisely, when is the query performed: i have this kwargs dic: kwargs = {'name__startswith':'somename','color__iexact':'somecolor'} but ...
0
votes
1answer
50 views

Extracting arguments from kwargs in boost::python

I have a C++ class that I'm building into a python module using boost::python. I have a few functions that I want to take keyword arguments. I've set up wrapper functions to pass to raw_arguments and ...
1
vote
1answer
20 views

kwargs in django - how to put distinct() into kwargs

i have this query Location.objects.filter(locations_rate__rate=search_rate).distinct('id') how can i set distinct() into **kwargs? i tried: s_kwargs = {} s_kwargs['locations_rate__rate'] = ...
1
vote
1answer
41 views

Jinja2 extension multiple keyword arguments

I can not find how to pass multiple named arguments to jinja2 Extension. I want something like that: {% some_extension foo='foo' bar='bar' %} data {% end_someextension %}
0
votes
1answer
91 views

Django: dynamic success_url results in “'NoneType' object has no attribute 'find'”

I would like to redirect the success_url to the same form after the form was submitted and valid. Online I found a description of a solution, however this solution and my other code option generate ...
2
votes
2answers
49 views

Trying to understand optional, list and named arguments in Python

I'm a beginner at Python, trying to understand function arguments and their types and orders. I tried to experiment a little with the different kinds of argument and here's my experiment def main(): ...
1
vote
2answers
45 views

Django: Limit QuerySet to user input (checkboxes)

My question is similar to Django Advanced Filtering but I need another approach: Abstract: Tables: manufacturer, supplies Manufacturers have multiple supplies (1 or 0 in "supply" table) I have a ...
0
votes
1answer
86 views

multiprocess.apply_async How do I wrap *args and **kwargs?

I'm trying to get multiprocess.apply_async to take in both *args and **kwargs. The docs indicate that this might be possible with the calling sequence: apply_async(func[, args[, kwds[, callback]]]) ...
0
votes
1answer
81 views

Use string variable **kwargs as named argument

I am trying to figure out a way to loop through a json config file and use a key name as the argument name to a method that uses **kwargs. I have created a json config file and used key names as ...
3
votes
3answers
66 views

Special use of args / kwargs

I need to do something like this: def func1(a, *args, b="BBB", **kwargs): print "a=%s b=%s args=%s kwargs=%s" % (a, b, args, kwargs) So that calling like this: func1("AAAA", h="HHH", j="JJJ") ...
1
vote
1answer
78 views

Is it possible for a python function to ignore unused kwargs

If I have a simple function: def add(a, b, c): return a + b + c Is it possible for me to make it so that if I supply an unused kwarg, it is simply ignored? kwargs = dict(a=1, b=2, c=3, d=4) ...
1
vote
2answers
71 views

Superclass __init__ not recognizing its kwargs

I'm trying to use the StoppableThread class presented as an answer to another question: import threading # Technique for creating a thread that can be stopped safely # Posted by Bluebird75 on ...
3
votes
1answer
157 views

Python: Passing parameters by name along with kwargs

In python we can do this: def myFun1(one = '1', two = '2'): ... Then we can call the function and pass the arguments by their name: myFun1(two = 'two', one = 'one') Also we can do this: def ...
2
votes
2answers
153 views

Threading and passing values with **kwargs errors to TypeError

I'm pretty new to Python and was looking into using threading for some code via this post: Python - Using threads or a queue to iterate over a for loop that calls a function I was wondering why this ...
0
votes
2answers
122 views

Celery Task Chain and Accessing **kwargs

I have a situation similar to the one outlined here, except that instead of chaining tasks with multiple arguments, I want to chain tasks that return a dictionary with multiple entries. This is -- ...
0
votes
2answers
99 views

generate a list of arguments i correct order from args and kwargs?

following this topic: allow users to "extend" API functions class Inspector: def __init__(self, passedFunc): self.passedFunc = passedFunc def __call__(self, *args, ...
0
votes
2answers
68 views

Is there a more elegant way to add conditional dict elements

Take the following code for instance: def facebook_sync_album(album_id, thumbnails_only=False): args = {'fields':'id,images,source'} if thumbnails_only: args['limit'] = ...
1
vote
1answer
52 views

How do I properly pass a dict of key/value args to kwargs in Python?

I have the following: class Foo: def __init__(self, **kwargs): print kwargs settings = {foo:"bar"} f = Foo(settings) This generates an error: Traceback (most recent call ...
0
votes
1answer
89 views

Python **kwargs and self as an argument

I don't have much experience in python but I am studying **kwargs. Afer reading a lot I understood somethings about **kwargs but I have a small problem or I am not understanding something correct. ...
1
vote
2answers
67 views

Can I pass python **kwargs to parent class from sub?

I'd like to do something like this: class A(object): def __init__(self, **kwargs): """ return exception if certain arguments not set """ class B(A): def __init__(self, ...
0
votes
3answers
93 views

How to pass a parameter list to another function in Python?

Using optparse, I want to separate the list of option list parameters from the place where I call add_option(). How do I package the stuff up in File A (and then unpack in file B) so that this will ...
0
votes
2answers
334 views

python function *args and **kwargs with other specified keyword arguments

I have a Python class with a method which should accept arguments and keyword arguments this way class plot: def __init__(self, x, y): self.x = x self.y = y def ...
3
votes
2answers
386 views

args and kwargs in django views

Okay, I've tried searching for this for quite some time. Can I not pass args and kwargs to a view in a django app? Do I necessarily have to define each keyword argument independently? For example, ...
4
votes
5answers
433 views

how to pass arguments efficiently (**kwargs in python)

I have a class that inherits from 2 other classes. These are the base classes: class FirstBase(object): def __init__(self, detail_text=desc, backed_object=backed_object, ...
1
vote
3answers
318 views

kwargs in python executables

I'm trying to create a program that can be called from the command line and use keyword arguments in python 2.6. So far I've tried: #!/usr/bin/python def read(foo = 5): print foo return 0 if ...
3
votes
5answers
1k views

How To Check If A Key in **kwargs Exists?

Python 3.2.3. Sorry if this is a dumb question, I can't seem to figure it out or find an answer for it. There were some ideas listed here, which work on regular var's, but it seems **kwargs play by ...
1
vote
2answers
133 views

Passing more kwargs into a function than initially set

Is there a way to send more kwargs into a function than is called for in the function call? Example: def mydef(a, b): print a print b mydict = {'a' : 'foo', 'b' : 'bar'} mydef(**mydict) ...
7
votes
2answers
175 views

Why doesn't **kwargs interpolate with python ConfigObj?

I'm using ConfigObj in python with Template-style interpolation. Unwrapping my config dictionary via ** doesn't seem to do interpolation. Is this a feature or a bug? Any nice workarounds? $ cat ...
0
votes
3answers
223 views

func(*tuple) 'scatters' tuples, but how does func(**dictionary) work?

Let's create a simple tuple, dictionary and function. >>> tup = (7, 3) >>> dic = {"kw1":7, "kw2":3} >>> def pr(a, b): ... print a, b The following shows what * does ...
4
votes
1answer
178 views

Why accept kwargs but not use them?

I was looking at the Django source code today and I noticed this: class DjangoTestSuiteRunner(object): def __init__(self, verbosity=1, interactive=True, failfast=True, **kwargs): ...
0
votes
2answers
248 views

why doesn't ** unpack kwargs in function calls?

This is something that's bugged me for awhile now: def test (*args, **kwargs): print target test(foo='bar', target='baz') I would presume that target='test' in the aFunc call at the bottom ...
0
votes
1answer
258 views

Python/Cherrypy processing file upload from Kwargs. Instance type not indexable. Trying to dump FieldStorage data

I am running cherrypy and a module that receives a file and I want to dump the data to disk. Instead of using the cherrypy expose and getting the file from my main cherrypy application I wanted to ...
1
vote
1answer
443 views

WTForms error: “object.__new__() takes no parameters”, when setting additional kwargs

Gathering from what I've seen, I'm guessing you're supposed to pass kwargs to WTForms widget and it will add them as attributes to the tag, right? Like so? from wtforms import Form, TextAreaField, ...
0
votes
3answers
127 views

Can method 1 pass kwargs to method 2?

I want kwargs to have the same exact contents in method2 as whatever gets passed into method1. In this case "foo" is passed into method1 but I want to pass in any arbitrary values and see them in ...
2
votes
2answers
219 views

Send dictionary to function that does not accept **kwargs?

I just recently have started learning about the wonders of **kwargs but I've hit a stumbling block. Is there a way of sending keywords of a dictionary to a function that does not accept keyword ...
5
votes
1answer
606 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. ...
3
votes
1answer
388 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 ...
0
votes
1answer
327 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 ...
1
vote
2answers
239 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 ...
0
votes
4answers
324 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 ...
1
vote
5answers
376 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
202 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:', ...
8
votes
0answers
278 views

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

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. ...
4
votes
1answer
552 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 ...
5
votes
3answers
1k views

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

Is there a python naming convention for key word arguments?
4
votes
1answer
1k 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} ...
17
votes
1answer
5k views

Converting Python dict to kwargs?

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 2