Skip to main content

Sort lists naturally

Project description

https://travis-ci.org/SethMMorton/natsort.svg?branch=develop https://coveralls.io/repos/SethMMorton/natsort/badge.png?branch=develop

Natural sorting for python.

Please see Moving from older Natsort versions to see if this update requires you to modify your natsort calls in your code (99% of users will not).

Quick Description

When 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 real numbers anywhere in a string and sorts them naturally.

Sorting versions is handled properly by default (as of natsort version >= 4.0.0):

>>> a = ['version-1.9', 'version-2.0', 'version-1.11', 'version-1.10']
>>> natsorted(a)
['version-1.9', 'version-1.10', 'version-1.11', 'version-2.0']

If you need to sort release candidates, please see this useful hack .

You can also perform locale-aware sorting (or “human sorting”), where the non-numeric characters are ordered based on their meaning, not on their ordinal value; this can be achieved with the humansorted function:

>>> a = ['Apple', 'Banana', 'apple', 'banana']
>>> natsorted(a)
['Apple', 'Banana', 'apple', 'banana']
>>> import locale
>>> locale.setlocale(locale.LC_ALL, 'en_US.UTF-8')
'en_US.UTF-8'
>>> from natsort import humansorted
>>> humansorted(a)
['apple', 'Apple', 'banana', 'Banana']

You may find you need to explicitly set the locale to get this to work (as shown in the example). Please see the following caveat and the Optional Dependencies section below before using the humansorted function, especially if you are on a BSD-based system (like Mac OS X).

You can sort signed floats (i.e. real numbers) using the realsorted; this is useful in scientific data analysis. This was the default behavior of natsorted for natsort version < 4.0.0:

>>> from natsort import realsorted
>>> a = ['num5.10', 'num-3', 'num5.3', 'num2']
>>> natsorted(a)
['num2', 'num5.3', 'num5.10', 'num-3']
>>> realsorted(a)
['num-3', 'num2', 'num5.10', 'num5.3']

You can mix and match int, float, and str (or unicode) types when you sort:

>>> a = ['4.5', 6, 2.0, '5', 'a']
>>> natsorted(a)
[2.0, '4.5', '5', 6, 'a']
>>> # On Python 2, sorted(a) would return [2.0, 6, '4.5', '5', 'a']
>>> # On Python 3, sorted(a) would raise an "unorderable types" TypeError

natsort does not officially support the bytes type on Python 3, but convenience functions are provided that help you decode to str first:

>>> from natsort import as_utf8
>>> a = [b'a', 14.0, 'b']
>>> # On Python 2, natsorted(a) would would work as expected.
>>> # On Python 3, natsorted(a) would raise a TypeError (bytes() < str())
>>> natsorted(a, key=as_utf8) == [14.0, b'a', 'b']
True
>>> a = [b'a56', b'a5', b'a6', b'a40']
>>> # On Python 2, natsorted(a) would would work as expected.
>>> # On Python 3, natsorted(a) would return the same results as sorted(a)
>>> natsorted(a, key=as_utf8) == [b'a5', b'a6', b'a40', b'a56']
True

The natsort algorithm does other fancy things like

  • recursively descend into lists of lists

  • control the case-sensitivity

  • sort file paths correctly

  • allow custom sorting keys

  • exposes a natsort_key generator to pass to list.sort

Please see the package documentation for more details, including examples and recipes.

Shell script

natsort comes with a shell script called natsort, or can also be called from the command line with python -m natsort.

Requirements

natsort requires Python version 2.7 or greater or Python 3.3 or greater. Python 2.6 and 3.2 are no longer officially supported (no unit tests are performed) but it should work.

Optional Dependencies

fastnumbers

The most efficient sorting can occur if you install the fastnumbers package (it helps with the string to number conversions.) natsort will still run (efficiently) without the package, but if you need to squeeze out that extra juice it is recommended you include this as a dependency. natsort will not require (or check) that fastnumbers is installed at installation.

PyICU

On BSD-based systems (this includes Mac OS X), the underlying locale library can be buggy (please see http://bugs.python.org/issue23195); locale is used for the ns.LOCALE option and humansorted function.. To remedy this, one can

  1. Use “*.ISO8859-1” locale (i.e. ‘en_US.ISO8859-1’) rather than “*.UTF-8” locale. These locales do not suffer from as many problems as “UTF-8” and thus should give expected results.

  2. Use PyICU. If PyICU is installed, natsort will use it under the hood; this will give more reliable cross-platform results in the long run. natsort will not require (or check) that PyICU is installed at installation. Please visit https://github.com/SethMMorton/natsort/issues/21 for more details and how to install on Mac OS X. Please note that using PyICU is the only way to guarantee correct results for all input on BSD-based systems, since every other suggestion is a workaround.

  3. Do nothing. As of natsort version 4.0.0, natsort is configured to compensate for a broken locale library in terms of case-handling; if you do not need to be able to properly handle non-ASCII characters then this may be the best option for you.

Note that the above solutions should not be required for Windows or Linux since in Linux-based systems and Windows systems locale should work just fine.

Moving from older Natsort versions

  • The default sorting algorithm for natsort has changed in version 4.0.0 from signed floats (with exponents) to unsigned integers. The motivation for this change is that it will cause natsort to return results that pass the “least astonishment” test for the most common use case, which is sorting version numbers. If you relied on the default behavior to be signed floats, add alg=ns.F | ns.S to your natsort calls or switch to the new realsorted function which behaves identically to the older natsorted with default values. For 99% of users this change will not effect their code… it is only expected that this will effect users using natsort for science and engineering. This will also affect the default behavior of the natsort shell script.

  • In natsort version 4.0.0, the number_type, signed, exp, as_path, and py3_safe options have be removed from the (documented) API in favor of the alg option and ns enum.

  • In natsort version 4.0.0, the natsort_key function has been removed from the public API.

Author

Seth M. Morton

History

These are the last three entries of the changelog. See the package documentation for the complete changelog.

05-17-2015 v. 4.0.0

  • Made default behavior of ‘natsort’ search for unsigned ints, rather than signed floats. This is a backwards-incompatible change but in 99% of use cases it should not require any end-user changes.

  • Improved handling of locale-aware sorting on systems where the underlying locale library is broken.

  • Greatly improved all unit tests by adding the hypothesis library.

04-06-2015 v. 3.5.6

  • Added ‘UNGROUPLETTERS’ algorithm to get the case-grouping behavior of an ordinal sort when using ‘LOCALE’.

  • Added convenience functions ‘decoder’, ‘as_ascii’, and ‘as_utf8’ for dealing with bytes types.

04-04-2015 v. 3.5.5

  • Added ‘realsorted’ and ‘index_realsorted’ functions for forward-compatibility with >= 4.0.0.

  • Made explanation of when to use “TYPESAFE” more clear in the docs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

natsort-4.0.0.zip (80.2 kB view details)

Uploaded Source

natsort-4.0.0.tar.gz (58.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

natsort-4.0.0-py2.py3-none-any.whl (32.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file natsort-4.0.0.zip.

File metadata

  • Download URL: natsort-4.0.0.zip
  • Upload date:
  • Size: 80.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for natsort-4.0.0.zip
Algorithm Hash digest
SHA256 4956a518b0444fd2e23c0e14cdcac80c372912b49ff7f374a33e6232147edf50
MD5 d7e15c8e908a834fb81a481285561f4f
BLAKE2b-256 2d911f9015e1829eb2b3ddc5b3dfc76e988665fda0d176d337ec137178196874

See more details on using hashes here.

File details

Details for the file natsort-4.0.0.tar.gz.

File metadata

  • Download URL: natsort-4.0.0.tar.gz
  • Upload date:
  • Size: 58.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for natsort-4.0.0.tar.gz
Algorithm Hash digest
SHA256 a0d4239bd609eae5cd5163db6f9794378ce0e3f43ae16c10c35472d866ae20cd
MD5 38cc0bb27c95bf549fe737d9f267f453
BLAKE2b-256 523599fa80e7b79dfc7b6d19155d08238c427b5c5daf35bb4b66c3d8e1614cb2

See more details on using hashes here.

File details

Details for the file natsort-4.0.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for natsort-4.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1142f65015241ec9642addfa052cf77ebce6d33f2709c989fcf9b4dbd09eac3b
MD5 208680b486c116f0ac738798197313cd
BLAKE2b-256 baf88d585efe11fd352a8e49efcf8166e8ab37fc2870e7f7250f33d8a27149b7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page