Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #18883 > unrolled thread

ANN: pysendfile 0.2.0 released

Started byGiampaolo Rodolà <g.rodola@gmail.com>
First post2012-01-12 22:04 +0100
Last post2012-01-12 22:04 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  ANN: pysendfile 0.2.0 released Giampaolo Rodolà <g.rodola@gmail.com> - 2012-01-12 22:04 +0100

#18883 — ANN: pysendfile 0.2.0 released

FromGiampaolo Rodolà <g.rodola@gmail.com>
Date2012-01-12 22:04 +0100
SubjectANN: pysendfile 0.2.0 released
Message-ID<mailman.4693.1326402285.27778.python-list@python.org>
Hi folks,
I'm pleased to announce the 0.2.0 release of pysendfile:
http://code.google.com/p/pysendfile

=== About ===

This is a python interface to sendfile(2) system call available on
most UNIX systems.
sendfile(2) provides a "zero-copy" way of copying data from one file
descriptor to another (a socket). The phrase "zero-copy" refers to the
fact that all of the copying of data between the two descriptors is
done entirely by the kernel, with no copying of data into userspace
buffers, resuting in file transfers being from 2x to 3x faster.
Basically, any application sending files over the network can take
advantage of it. HTTP and FTP servers are a typical example.

=== Supported platforms ===

* Linux
* Mac OSX
* FreeBSD
* Dragon Fly BSD
* Sun OS
* AIX (not properly tested)

=== Supported python versions ===

>From 2.5 to 3.3.

=== Links ===

* Home page: http://code.google.com/p/pysendfile
* Source tarball: http://pysendfile.googlecode.com/files/pysendfile-0.2.0.tar.gz



--- Giampaolo Rodola'
http://code.google.com/p/pyftpdlib/
http://code.google.com/p/psutil/
http://code.google.com/p/pysendfile/

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web