99 <a href =" https://pypi.python.org/pypi/furl " ><img src =" https://img.shields.io/pypi/pyversions/furl.svg " ></a >
1010</p >
1111
12- ## furl is a small Python library that makes parsing and<br >manipulating URLs easy.
12+ ## furl is a small Python library that makes parsing and<br >modifying URLs easy.
1313
1414Python's standard
1515[ urllib] ( https://docs.python.org/3/library/urllib.html ) and
1616[ urlparse] ( https://docs.python.org/3/library/urllib.parse.html ) modules
1717provide a number of URL related functions, but using these functions to
1818perform common URL operations proves tedious. Furl makes parsing and
19- manipulating URLs easy.
19+ modifying URLs easy.
2020
2121Furl is well tested, [ Unlicensed] ( http://unlicense.org/ ) in the public
2222domain, and supports Python 3 and PyPy3.
@@ -87,13 +87,13 @@ $ pip install furl
8787 * [ Basics] ( #basics )
8888 * [ Scheme, Username, Password, Host, Port, Network Location, and Origin] ( #scheme-username-password-host-port-network-location-and-origin )
8989 * [ Path] ( #path )
90- * [ Manipulation ] ( #manipulation )
90+ * [ Modification ] ( #modification )
9191 * [ Query] ( #query )
92- * [ Manipulation ] ( #manipulation -1 )
92+ * [ Modification ] ( #modification -1 )
9393 * [ Parameters] ( #parameters )
9494 * [ Fragment] ( #fragment )
9595 * [ Encoding] ( #encoding )
96- * [ Inline manipulation ] ( #inline-manipulation )
96+ * [ Inline modification ] ( #inline-modification )
9797 * [ Miscellaneous] ( #miscellaneous )
9898
9999
@@ -175,10 +175,10 @@ including __port__ if it's None or the default port for the provided __scheme__.
175175
176176### Path
177177
178- URL paths in furl are Path objects that have __ segments__ , a list of zero or
179- more path segments that can be manipulated directly. Path segments in
180- __ segments__ are percent-decoded and all interaction with __ segments __ should
181- take place with percent-decoded strings.
178+ URL paths in furl are Path objects that have __ segments__ , a list of
179+ zero or more path segments that can be modified directly. Path segments
180+ in __ segments__ are percent-decoded and all interaction with
181+ __ segments __ should take place with percent-decoded strings.
182182
183183``` python
184184>> > f = furl(' http://www.google.com/a/large%20i sh/path' )
@@ -190,7 +190,7 @@ Path('/a/large ish/path')
190190' /a/large%20ish/path'
191191```
192192
193- #### Manipulation
193+ #### Modification
194194
195195``` python
196196>> > f.path.segments = [' a' , ' new' , ' path' , ' ' ]
@@ -345,7 +345,7 @@ omdict1D([('one', '1'), ('two', '2')])
345345True
346346```
347347
348- # ### Manipulation
348+ # ### Modification
349349
350350__params__ is a one dimensional
351351[ordered multivalue dictionary](https:// github.com/ gruns/ orderedmultidict) that
@@ -480,7 +480,7 @@ Query('with=params')
480480True
481481```
482482
483- Manipulation of Fragments is done via the Fragment' s Path and Query instances,
483+ Modification of Fragments is done via the Fragment' s Path and Query instances,
484484__path__ and __query__.
485485
486486```python
@@ -598,10 +598,10 @@ can be used to percent-encode and percent-decode query strings.
598598
599599
600600
601- # ## Inline manipulation
601+ # ## Inline modification
602602
603- For quick, single- line URL manipulation , the __add()__, __set()__, and
604- __remove()__ methods of furl objects manipulate various URL components and
603+ For quick, single- line URL modifications , the __add()__, __set()__, and
604+ __remove()__ methods of furl objects modify various URL components and
605605return the furl object for method chaining.
606606
607607```python
0 commit comments