This file is indexed.

/usr/lib/python3/dist-packages/pyftpdlib-1.5.1.egg-info/PKG-INFO is in python3-pyftpdlib 1.5.1-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
Metadata-Version: 1.1
Name: pyftpdlib
Version: 1.5.1
Summary: Very fast asynchronous FTP server library
Home-page: https://github.com/giampaolo/pyftpdlib/
Author: Giampaolo Rodola'
Author-email: g.rodola@gmail.com
License: MIT
Description: .. image:: https://pypip.in/d/pyftpdlib/badge.png
            :target: https://crate.io/packages/pyftpdlib/
            :alt: Download this month
        
        .. image:: https://pypip.in/v/pyftpdlib/badge.png
            :target: https://pypi.python.org/pypi/pyftpdlib/
            :alt: Latest version
        
        .. image:: https://pypip.in/license/pyftpdlib/badge.png
            :target: https://pypi.python.org/pypi/pyftpdlib/
            :alt: License
        
        .. image:: https://api.travis-ci.org/giampaolo/pyftpdlib.png?branch=master
            :target: https://travis-ci.org/giampaolo/pyftpdlib
            :alt: Travis
        
        Quick links
        ===========
        
        - `Home <https://github.com/giampaolo/pyftpdlib>`__
        - `Documentation <http://pythonhosted.org/pyftpdlib/>`__
        - `Download <https://pypi.python.org/pypi/pyftpdlib/>`__
        - `Blog <http://grodola.blogspot.com/search/label/pyftpdlib>`__
        - `Mailing list <http://groups.google.com/group/pyftpdlib/topics>`__
        - `What's new <https://github.com/giampaolo/pyftpdlib/blob/master/HISTORY.rst>`__
        
        About
        =====
        
        Python FTP server library provides a high-level portable interface to easily
        write very efficient, scalable and asynchronous FTP servers with Python. It is
        the most complete `RFC-959 <http://www.faqs.org/rfcs/rfc959.html>`__ FTP server
        implementation available for `Python <http://www.python.org/>`__ programming
        language and it's used in projects like
        `Google Chromium <http://www.code.google.com/chromium/>`__ and
        `Bazaar <http://bazaar-vcs.org/>`__ and included in
        `Debian <http://packages.debian.org/sid/python-pyftpdlib>`__,
        `Fedora <https://admin.fedoraproject.org/pkgdb/packages/name/pyftpdlib>`__ and
        `FreeBSD <http://www.freshports.org/ftp/py-pyftpdlib/>`__ package repositories.
        
        Features
        ========
        
        - Extremely **lightweight**, **fast** and **scalable** (see
          `why <https://github.com/giampaolo/pyftpdlib/issues/203>`__ and
          `benchmarks <http://pythonhosted.org/pyftpdlib/benchmarks.html>`__).
        - Uses **sendfile(2)** (see `pysendfile <https://github.com/giampaolo/pysendfile>`__)
          system call for uploads.
        - Uses epoll() / kqueue() / select() to handle concurrency asynchronously.
        - ...But can optionally skip to a
          `multiple thread / process <http://pythonhosted.org/pyftpdlib/tutorial.html#changing-the-concurrency-model>`__
          model (as in: you'll be free to block or use slow filesystems).
        - Portable: entirely written in pure Python; works with Python from **2.6** to
          **3.5** by using a single code base.
        - Supports **FTPS** (`RFC-4217 <http://tools.ietf.org/html/rfc4217>`__),
          **IPv6** (`RFC-2428 <ftp://ftp.rfc-editor.org/in-notes/rfc2428.txt>`__),
          **Unicode** file names (`RFC-2640 <http://tools.ietf.org/html/rfc2640>`__),
          **MLSD/MLST** commands (`RFC-3659 <ftp://ftp.rfc-editor.org/in-notes/rfc3659.txt>`__).
        - Support for virtual users and virtual filesystem.
        - Extremely flexible system of "authorizers" able to manage both "virtual" and
          "real" users on on both
          `UNIX <http://pythonhosted.org/pyftpdlib/tutorial.html#unix-ftp-server>`__
          and
          `Windows <http://pythonhosted.org/pyftpdlib/tutorial.html#windows-ftp-server>`__.
        - `Test coverage <https://github.com/giampaolo/pyftpdlib/blob/master/pyftpdlib/test/>`__
          close to 100%.
        
        Performances
        ============
        
        Depite being written in an intepreted language, pyftpdlib has transfer rates
        superior to most common UNIX FTP servers. It also scales better since whereas
        vsftpd and proftpd use multiple processes to achieve concurrency, pyftpdlib
        will only use one process and handle concurrency asynchronously (see
        `the C10K problem <http://www.kegel.com/c10k.html>`__). Here are some
        `benchmarks <https://github.com/giampaolo/pyftpdlib/blob/master/test/bench.py>`__
        made against my Linux 3.0.0 box, Intel core-duo 3.1 Ghz:
        
        pyftpdlib vs. proftpd 1.3.4
        ---------------------------
        
        +-----------------------------------------+----------------+----------------+-------------+
        | **benchmark type**                      | **pyftpdlib**  | **proftpd**    | **speedup** |
        +-----------------------------------------+----------------+----------------+-------------+
        | STOR (client -> server)                 |  585.90 MB/sec | 600.49 MB/sec  | -0.02x      |
        +-----------------------------------------+----------------+----------------+-------------+
        | RETR (server -> client)                 | 1652.72 MB/sec | 1524.05 MB/sec | **+0.08**   |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (connect, login) |    0.19 secs   | 9.98 secs      | **+51x**    |
        +-----------------------------------------+----------------+----------------+-------------+
        | STOR (1 file with 300 idle clients)     |  585.59 MB/sec | 518.55 MB/sec  | **+0.1x**   |
        +-----------------------------------------+----------------+----------------+-------------+
        | RETR (1 file with 300 idle clients)     | 1497.58 MB/sec | 1478.19 MB/sec | 0x          |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (RETR 10M file)  |    3.41 secs   | 3.60 secs      | **+0.05x**  |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (STOR 10M file)  |    8.60 secs   | 11.56 secs     | **+0.3x**   |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (QUIT)           |    0.03 secs   | 0.39 secs      | **+12x**    |
        +-----------------------------------------+----------------+----------------+-------------+
        
        pyftpdlib vs. vsftpd 2.3.5
        --------------------------
        
        +-----------------------------------------+----------------+----------------+-------------+
        | **benchmark type**                      | **pyftpdlib**  | **proftpd**    | **speedup** |
        +-----------------------------------------+----------------+----------------+-------------+
        | STOR (client -> server)                 |  585.90 MB/sec | 611.73 MB/sec  | -0.04x      |
        +-----------------------------------------+----------------+----------------+-------------+
        | RETR (server -> client)                 | 1652.72 MB/sec | 1512.92 MB/sec | **+0.09**   |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (connect, login) |    0.19 secs   | 20.39 secs     | **+106x**   |
        +-----------------------------------------+----------------+----------------+-------------+
        | STOR (1 file with 300 idle clients)     |  585.59 MB/sec | 610.23 MB/sec  | -0.04x      |
        +-----------------------------------------+----------------+----------------+-------------+
        | RETR (1 file with 300 idle clients)     | 1497.58 MB/sec | 1493.01 MB/sec | 0x          |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (RETR 10M file)  |    3.41 secs   | 3.67 secs      | **+0.07x**  |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (STOR 10M file)  |    8.60 secs   | 9.82 secs      | **+0.07x**  |
        +-----------------------------------------+----------------+----------------+-------------+
        | 300 concurrent clients (QUIT)           |    0.03 secs   | 0.01 secs      | +0.14x      |
        +-----------------------------------------+----------------+----------------+-------------+
        
        For more benchmarks see `here <http://pythonhosted.org/pyftpdlib/benchmarks.html>`__.
        
        Quick start
        ===========
        
        .. code-block:: python
        
            >>> from pyftpdlib.authorizers import DummyAuthorizer
            >>> from pyftpdlib.handlers import FTPHandler
            >>> from pyftpdlib.servers import FTPServer
            >>>
            >>> authorizer = DummyAuthorizer()
            >>> authorizer.add_user("user", "12345", "/home/giampaolo", perm="elradfmw")
            >>> authorizer.add_anonymous("/home/nobody")
            >>>
            >>> handler = FTPHandler
            >>> handler.authorizer = authorizer
            >>>
            >>> server = FTPServer(("127.0.0.1", 21), handler)
            >>> server.serve_forever()
            [I 13-02-19 10:55:42] >>> starting FTP server on 127.0.0.1:21 <<<
            [I 13-02-19 10:55:42] poller: <class 'pyftpdlib.ioloop.Epoll'>
            [I 13-02-19 10:55:42] masquerade (NAT) address: None
            [I 13-02-19 10:55:42] passive ports: None
            [I 13-02-19 10:55:42] use sendfile(2): True
            [I 13-02-19 10:55:45] 127.0.0.1:34178-[] FTP session opened (connect)
            [I 13-02-19 10:55:48] 127.0.0.1:34178-[user] USER 'user' logged in.
            [I 13-02-19 10:56:27] 127.0.0.1:34179-[user] RETR /home/giampaolo/.vimrc completed=1 bytes=1700 seconds=0.001
            [I 13-02-19 10:56:39] 127.0.0.1:34179-[user] FTP session closed (disconnect).
        
        `other code samples <http://pythonhosted.org/pyftpdlib/tutorial.html>`__
        
        Donate
        ======
        
        A lot of time and effort went into making pyftpdlib as it is right now.
        If you feel pyftpdlib is useful to you or your business and want to support its
        future development please consider donating me
        (`Giampaolo Rodola' <http://grodola.blogspot.com/p/about.html>`_) some money.
        I only ask for a small donation, but of course I appreciate any amount.
        
        .. image:: https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif
          :target: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZSSF7G42VA2XE
          :alt: Donate via PayPal
        
        Don't want to donate money? Then maybe you could
        `write me a recommendation on Linkedin <http://www.linkedin.com/in/grodola>`_.
        In case you're using pyftpdlib into a software of yours
        `mail me <http://grodola.blogspot.com/p/about.html>`_ and I'll add your
        software to the
        `adoptions list <http://pythonhosted.org/pyftpdlib/adoptions.html>`__.
        
        Timeline
        ========
        
        - 2015-12-13: version `1.5.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.5.0.tar.gz>`__ released.
        - 2014-06-03: version `1.4.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.4.0.tar.gz>`__ released.
        - 2014-04-12: version `1.3.1 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.3.1.tar.gz>`__ released.
        - 2013-11-07: version `1.3.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.3.0.tar.gz>`__ released.
        - 2013-04-22: version `1.2.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.2.0.tar.gz>`__ released.
        - 2013-04-09: version `1.1.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.1.0.tar.gz>`__ released.
        - 2013-02-22: version `1.0.1 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.0.1.tar.gz>`__ released.
        - 2013-02-19: version `1.0.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-1.0.0.tar.gz>`__ released.
        - 2012-05-14: pyftpdlib included in `ftp-cloudfs <https://github.com/chmouel/ftp-cloudfs/>`__ project.
        - 2012-01-25: version `0.7.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.7.0.tar.gz>`__ released.
        - 2011-12-01: pyftpdlib included in `feitp-server <http://code.google.com/p/feitp-server/>`__ project.
        - 2011-09-26: pyftpdlib included in `ftpmaster <https://github.com/MarkLIC/ftpmaster>`__ project.
        - 2011-07-09: pyftpdlib included in `bftpd <http://bftpd.sourceforge.net/>`__ project.
        - 2011-07-09: pyftpdlib included in `fastersync <http://code.google.com/p/fastersync/>`__ project.
        - 2011-01-31: pyftpdlib included in `put.io FTP connector project <http://code.google.com/p/pyftpdlib/wiki/Adoptions?ts=1296442469&updated=Adoptions#put.io*FTP*connector>`__.
        - 2011-01-24: version `0.6.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.6.0.tar.gz>`__ released.
        - 2010-12-14: added `donations <http://code.google.com/p/pyftpdlib/wiki/Donate>`__.
        - 2010-08-24: pyftpdlib included in `peerscape <http://www.peerscape.org/>`__ project.
        - 2010-07-15: pyftpdlib included in `Faetus <http://tomatohater.com/faetus/>`__ project.
        - 2010-07-11: pyftpdlib included in `Pyfilesystem <http://code.google.com/p/pyfilesystem>`__ project.
        - 2010-06-28: pyftpdlib has been `packaged for Debian <http://packages.debian.org/sid/python-pyftpdlib>`__
        - 2010-04-28: pyftpdlib included in `sierramodulepos <http://forge.openbravo.com/plugins/mwiki/index.php/MobilePOS>`__ project.
        - 2010-03-20: `http://www.smartfile.com <http://www.smartfile.com>`__ uses pyftpdlib.
        - 2010-01-13: pyftpdlib included in `zenftp <http://code.irondojo.com/>`__ project.
        - 2009-12-26: pyftpdlib included in `Symbian Python FTP server <http://code.google.com/p/sypftp>`__ project.
        - 2009-11-04: `www.netplay.it <http://www.netplay.it>`__ uses pyftpdlib.
        - 2009-11-04: `www.adcast.tv <http://www.adcast.tv>`__ uses pyftpdlib.
        - 2009-11-04: `www.bitsontherun.com <http://www.bitsontherun.com>`__ uses pyftpdlib.
        - 2009-11-02: pyftpdlib included in `ftp-cloudfs <http://github.com/chmouel/ftp-cloudfs>`__ project.
        - 2009-09-14: version `0.5.2 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.5.2.tar.gz>`__ released.
        - 2009-08-10: pyftpdlib included in `Imgserve <http://github.com/wuzhe/imgserve/tree/master>`__ project.
        - 2009-07-22: pyftpdlib included in  `Plumi <http://plumi.org/wiki>`__ project.
        - 2009-04-02: pyftpdlib RPM-packaged and ported on `Fedora <https://admin.fedoraproject.org/pkgdb/packages/name/pyftpdlib>`__ to make users can easily install on it via *yum install pyftpdlib*.
        - 2009-03-28: pyftpdlib included in  `Bazaar <http://bazaar-vcs.org/>`__ project.
        - 2009-02-23: pyftpdlib included in `ShareFTP <http://git.logfish.net/shareftp.git/>`__ project.
        - 2009-01-21: version `0.5.1 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.5.1.tar.gz>`__ released.
        - 2008-12-27: pyftpdlib included in `Google Chromium <http://code.google.com/intl/it-IT/chromium/>`__, the open source project behind `Google Chrome <http://www.google.com/chrome>`__.
        - 2008-12-27: pyftpdlib ported on `GNU Darwin <http://www.gnu-darwin.org/>`__ systems to make users can easily install on it.
        - 2008-11-26: pyftpdlib included in `OpenERP <http://openerp.com>`__.
        - 2008-10-26: pyftpdlib included in `Python for OpenVMS <http://www.vmspython.org/>`__ as standard package.
        - 2008-10-09: pyftpdlib included in `Shareme <http://bbs.archlinux.org/viewtopic.php?pid=431474>`__ project.
        - 2008-09-20: version `0.5.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.5.0.tar.gz>`__ released.
        - 2008-08-10: pyftpdlib included in `Manent <http://trac.manent-backup.com/>`__ project.
        - 2008-05-16: version `0.4.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.4.0.tar.gz>`__ released.
        - 2008-04-09: pyftpdlib used as backend for `gpftpd <http://arkadiusz-wahlig.blogspot.com/2008/04/hosting-files-on-google.html>`__, an FTP server for managing files hosted on `Google Pages <http://-ages.google.com>`__.
        - 2008-01-17: version `0.3.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.3.0.tar.gz>`__ released.
        - 2007-10-14: pyftpdlib included in `Aksy <http://walco.n--tree.net/projects/aksy/wiki>`__ project.
        - 2007-09-17: version `0.2.0 <https://pypi.python.org/packages/source/p/pyftpdlib/pyftpdlib-0.2.0.tar.gz>`__ released.
        - 2007-09-08: pyftpdlib included as `FarManager <http://farmanager.com/>`__ `plug-in <http://www.farmanager.com/enforum/viewtopic.php?t=640&highlight=&sid=12d4d90f27f421243bcf7a0e3c516efb>`__.
        - 2007-03-06: pyftpdlib `ported on FreeBSD <http://www.freshports.org/ftp/py-pyftpdlib/>`__ systems to make users can easily install on it.
        - 2007-03-07: version `0.1.1 <http://pyftpdlib.googlecode.com/files/pyftpdlib*0.1.1.tar.gz>`__ released.
        - 2007-02-26: version `0.1.0 <http://pyftpdlib.googlecode.com/files/pyftpdlib*0.1.tar.gz>`__ released.
        - 2006-09-26: initial clunky thread-based progenitor `link <http://billiejoex.altervista.org/Prj*pftpd.htm>`__.
        
        Trademarks
        ==========
        
        Some famous trademarks which adopted pyftpdlib (`complete list <http://pythonhosted.org/pyftpdlib/adoptions.html>`__).
        
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/chrome.jpg
          :target: http://www.google.com/chrome
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/debian.png
          :target: http://www.debian.org
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/fedora.png
          :target: http://fedoraproject.org/
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/freebsd.gif
          :target: http://www.freebsd.org
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/openerp.jpg
          :target: http://openerp.com
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/bazaar.jpg
          :target: http://bazaar-vcs.org
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/bitsontherun.png
          :target: http://www.bitsontherun.com
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/openvms.png
          :target: http://www.openvms.org/
        .. image:: http://pyftpdlib.googlecode.com/svn-history/wiki/images/smartfile.jpg
          :target: http://www.openvms.org/
        
Keywords: ftp,ftps,server,ftpd,daemon,python,ssl,sendfile,asynchronous,nonblocking,eventdriven,rfc959,rfc1123,rfc2228,rfc2428,rfc2640,rfc3659
Platform: Platform Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: File Transfer Protocol (FTP)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Filesystems
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4