Git Product home page Git Product logo

Comments (2)

gruns avatar gruns commented on July 26, 2024 1

copy() has been added to furl.

>>> f = furl('http://www.google.com/')
>>> f.copy().set(path='/pumps').url
http://www.google.com/pumps
>>> f.url
http://www.google.com/

The furl init() bug has also been fixed.

>>> f = furl('http://www.google.com/')
>>> copy = furl(f)

Thanks for bringing this issue to my attention martynsmith.

from furl.

gruns avatar gruns commented on July 26, 2024

A copy() method would be useful. I'll add it. copy() is Python's nomenclature for a shallow copy (dict, set, deque, etc), over clone().

In the mean time, you can create an inline copy with furl() and base_url's URL string

>>> copy = furl(base_url.url).set(path='/method/1')

In testing for the above I found a bug - the furl() constructor should accept another furl object, not just a URL string.

>>> f = furl('http://www.google.com/')
>>> copy = furl(f)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/furl/furl.py", line 659, in __init__
    self.load(url) # Raises ValueError on invalid url.
  File "/usr/local/lib/python2.7/dist-packages/furl/furl.py", line 668, in load
    tokens = urlsplit(url) # Raises ValueError on malformed IPv6 address.
  File "/usr/local/lib/python2.7/dist-packages/furl/furl.py", line 1022, in urlsplit
    toks = urlparse.urlsplit(url)
  File "/usr/lib/python2.7/urlparse.py", line 173, in urlsplit
    i = url.find(':')
AttributeError: 'furl' object has no attribute 'find'

I am consolidating both copy() and the furl() constructor bug in this issue, issue #11.

Thanks for your suggestion martynsmith.

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.