| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Furl v2.0.0 source code.tar.gz | 2018-10-16 | 51.8 kB | |
| Furl v2.0.0 source code.zip | 2018-10-16 | 57.1 kB | |
| README.md | 2018-10-16 | 640 Bytes | |
| Totals: 3 Items | 109.5 kB | 0 | |
-
Added: All URL components (
scheme,host,path, etc) tofurl()'s constructor as keyword arguments. E.g.f = furl(scheme='http', host='host', path='/lolsup'). -
Changed: furl.truediv() and Path.truediv() now mirror Pathlib.truediv()'s behavior and return a new instance. The original instance is no longer modified. Old behavior:
f = furl('1'); f / '2' -> str(f) == '1'. New behavior:f = furl('1'); f /= '2' -> str(f) == '1/2'. -
Fixed: Path.load() now accepts Path instances, e.g.
f.path.load(Path('hi')). -
Removed: Support for Python 2.6, which reached EOL on 2013-10-29.