Giter Site home page Giter Site logo

Comments (3)

sharkdp avatar sharkdp commented on July 23, 2024

Was thinking about this, but this would probably involve writing a parser of some sorts? What kind of use cases and what kind of syntax do you have in mind?

from shell-functools.

leeexyz avatar leeexyz commented on July 23, 2024

Here is what i am thinking about, we can keep it as simple as possible just using eval function in python. We always assume that the input is a string of lambda expression.

>>> plus3 = "lambda x: x + 3"
>>> eval(plus3)
<function <lambda> at 0x1013a52f0>
>>> a = list(range(5))
>>> list(map(eval(plus3), a))
[3, 4, 5, 6, 7]

from shell-functools.

sharkdp avatar sharkdp commented on July 23, 2024

Thank you for your feedback!

To be honest, I would like to avoid using python-code-as-string arguments (and the usage of eval in particular).

I'm closing this in favor of #5 as I don't really see any concrete plan to implement this.

from shell-functools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.