Git Product home page Git Product logo

Comments (3)

gruns avatar gruns commented on July 26, 2024

This would be useful, albeit infrequently used.

Removing multiple keys will also be supported when provided a dictionary with
list values or any 'dictionary-like' iterable.

>>> furl('/foo/?gender=M&gender=F&gender=robot')
      .remove([('gender','M'),('gender','F')]).url
'/foo/?gender=robot'

>>> furl('/foo/?gender=M&gender=F&gender=robot')
      .remove({'gender': 'M'}).url
'/foo/?gender=M&gender=robot'

I'll add such functionality shortly.

from furl.

gruns avatar gruns commented on July 26, 2024

furl v0.3.7's Query.remove() supports the removal of multiple values from the
same key through a list of items, a dictionary, or a multivalue dictionary.

>>> furl('/foo/?gender=M&gender=F&location=CA').remove({'gender': 'M'}).url
'/foo/?gender=F&location=CA'

>>> furl('/foo/?gender=M&gender=F&location=CA').remove([('gender', 'M')]).url
'/foo/?gender=F&location=CA'

>>> from orderedmultidict import omdict
>>> omd = omdict([('gender', 'M'), ('location', 'CA')])
>>> furl('/foo/?gender=M&gender=F&location=CA').remove(omd).url
'/foo/?gender=F'

Upgrade to furl v0.3.7 with

pip install furl --upgrade

Thank you for bringing this issue to my attention jstarcher.

from furl.

jstarcher avatar jstarcher commented on July 26, 2024

Great work, thanks @gruns!

from furl.

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.