Skip to content
Advertisement

How to use a lambda as parameter in python argparse?

JavaScript

I have something like this, the idea is that -f parameter to be a lambda. But i do not know how to do it when I called from a bash shell because if a try:

JavaScript

I get error: “error: argument -f: invalid function value: 'x : x-4'

Some help?

Advertisement

Answer

To be able to access imported functions/modules you need to pass globals to eval. For example:

JavaScript

To make this work as an argument, you would need to either accept a string and process it after, or wrap the creation of the lambda in another function. You can pass this as your type parameter to handle the conversion.

JavaScript

Running this from the command line:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement