GithubHelp home page GithubHelp logo

Comments (6)

caffeinatedMike avatar caffeinatedMike commented on June 19, 2024 14

Can this be considered for any upcoming improvements?

from jmespath.py.

xeor avatar xeor commented on June 19, 2024 12

Did anything happen to this? We are needing to look into using a jq binding instead entirely because this is missing :(

from jmespath.py.

kvancamp avatar kvancamp commented on June 19, 2024 3

I was also looking for this ability, but it may not fit well with jmespath. I'm thinking glom might be a better alternative: https://glom.readthedocs.io/en/latest/

from jmespath.py.

jiasli avatar jiasli commented on June 19, 2024 1

This is a feature great to have. Currently have to pipe to jq as a workaround.

Given the input

{
    "foo": {
        "bar": [
            {
                "name": "one"
            },
            {
                "name": "two"
            }
        ]
    }
}

To set: .foo.bar[1].name="three"

{
  "foo": {
    "bar": [
      {
        "name": "one"
      },
      {
        "name": "three"
      }
    ]
  }
}

To delete: del(.foo.bar[1])

{
  "foo": {
    "bar": [
      {
        "name": "one"
      }
    ]
  }
}

from jmespath.py.

bitdivine avatar bitdivine commented on June 19, 2024

I too would be interested in deletion but rather as part of the language. Something like this:

jmespath.search('foo.bar | delete(name)', data)

The above would (rather unexcitingly) produce two empty dictionaries. However the potential is exciting - if those dictionaries had started out with all manner of other keys those other keys would be preserved!

from jmespath.py.

bitdivine avatar bitdivine commented on June 19, 2024

I note that there is some discussion about having a to_items() function that converts a dictionary into a list of key,value pairs. If that happens, and there is presumably also a matching from_items(), then what you are asking could be done with to_items(@) | [?[0]!='bar'] | from_items(@). However we are talking about a hypothetical future.

from jmespath.py.

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.