natsort 4.0.1-1 source package in Ubuntu

Changelog

natsort (4.0.1-1) unstable; urgency=medium

  * Imported Upstream version 3.5.1
  * Added myself into Uploaders field.

 -- Ulises Vitulli <email address hidden>  Sat, 20 Jun 2015 11:48:18 -0300

Upload details

Uploaded by:
Agustin Henze
Uploaded to:
Sid
Original maintainer:
Agustin Henze
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
natsort_4.0.1-1.dsc 2.1 KiB 5df39e2a12524109140f6d561a8ac63e012652220eaa134038c26ba643314b77
natsort_4.0.1.orig.tar.gz 56.3 KiB 8580abb9d837b13ebe1b26ebcd95d28f7e4cdfab0a671290f82db889168c24a6
natsort_4.0.1-1.debian.tar.xz 3.3 KiB 0bc5dad52d022badb80d76ce531887cfa4467059afcec529d26a61dba968e9d8

Available diffs

No changes file available.

Binary packages built by this source

python-natsort: Natural sorting for python

 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.

python-natsort-doc: No summary available for python-natsort-doc in ubuntu wily.

No description available for python-natsort-doc in ubuntu wily.

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.