natsort 6.0.0-1.1ubuntu1 source package in Ubuntu

Changelog

natsort (6.0.0-1.1ubuntu1) focal; urgency=medium

  * Call tox --sitepackages in the autopkg test.

 -- Matthias Klose <email address hidden>  Mon, 04 Nov 2019 14:04:17 +0100

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Focal
Original maintainer:
Agustin Henze
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
natsort_6.0.0.orig.tar.gz 133.3 KiB 8bfbfdca5be164078d0147229afbfcea2a09030dbbcc51eacc1b09d3ad4ae6d0
natsort_6.0.0-1.1ubuntu1.debian.tar.xz 3.9 KiB e454d16cc523f0329a0b39cf1f81d16d4fc5ae2b3ff1d29478650ba6648fd1ab
natsort_6.0.0-1.1ubuntu1.dsc 2.1 KiB 0b53c335ad06e9be46dc462d5f2bcba1bb023d1454e39a3839100dfc8e2c0e7c

View changes file

Binary packages built by this source

python-natsort-doc: Natural sorting for Python (doc)

 natsort lets you apply natural sorting to your sequences easily, for example:
 .
  >>> from natsort import natsorted
  >>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
  >>> data = [['a1', 'a5'], ['a1', 'a40'], ['a10', 'a1'], ['a2', 'a5']]
  >>> natsorted(a)
  ['a1', 'a2', 'a4', 'a9', 'a10'
  >>> natsorted(data)
  [['a1', 'a5'], ['a1', 'a40'], ['a2', 'a5'], ['a10', 'a1']]
 .
 natsort identifies the numbers and sorts them separately from strings.
 .
 natsort comes with a shell script to use natural sorting in shell scripts. You
 can also execute natsort from the command line with Python -m natsort.
 .
 There exists another natural sorting package for Python called
 python-naturalsort. You may prefer that package if you wish to only sort
 version numbers.
 .
 This package contains API documentation and examples.

python3-natsort: Natural sorting for Python (Python3)

 natsort lets you apply natural sorting to your sequences easily, for example:
 .
  >>> from natsort import natsorted
  >>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
  >>> data = [['a1', 'a5'], ['a1', 'a40'], ['a10', 'a1'], ['a2', 'a5']]
  >>> natsorted(a)
  ['a1', 'a2', 'a4', 'a9', 'a10'
  >>> natsorted(data)
  [['a1', 'a5'], ['a1', 'a40'], ['a2', 'a5'], ['a10', 'a1']]
 .
 natsort identifies the numbers and sorts them separately from strings.
 .
 natsort comes with a shell script to use natural sorting in shell scripts. You
 can also execute natsort from the command line with Python -m natsort.
 .
 There exists another natural sorting package for Python called
 python-naturalsort. You may prefer that package if you wish to only sort
 version numbers.
 .
 This is the Python 3 version of the package.