Path to this page:
./
textproc/py-natsort,
Natural sorting for python
Branch: pkgsrc-2018Q4,
Version: 5.5.0,
Package name: py27-natsort-5.5.0,
Maintainer: kamelderouicheWhen you try to sort a list of strings that contain numbers, the
normal python sort algorithm sorts lexicographically, so you might
not get the results that you expect:
>>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
>>> sorted(a)
['a1', 'a10', 'a2', 'a4', 'a9']
Notice that it has the order ('1', '10', '2') - this is because the
list is being sorted in lexicographical order, which sorts numbers
like you would letters (i.e. 'b', 'ba', 'c').
natsort provides a function natsorted that helps sort lists
"naturally", either as real numbers (i.e. signed/unsigned floats
or ints), or as versions. Using natsorted is simple:
>>> from natsort import natsorted
>>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
>>> natsorted(a)
['a1', 'a2', 'a4', 'a9', 'a10']
natsorted identifies numbers anywhere in a string and sorts them
naturally.
Required to run:[
devel/py-setuptools] [
lang/python27]
Required to build:[
pkgtools/cwrappers]
Master sites:
SHA1: 926bc9e57196f2d774b1bc37a41a66687b24309b
RMD160: 513476c5b6cca8e774b41f1643f48eb7fc0687a3
Filesize: 145.188 KB
Version history: (Expand)
- (2019-01-02) Package added to pkgsrc.se, version py27-natsort-5.5.0 (created)