{ "info": { "author": "Giampaolo Rodola'", "author_email": "g.rodola@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: File Transfer Protocol (FTP)", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Filesystems" ], "description": ".. image:: http://pepy.tech/badge/pyftpdlib\n :target: http://pepy.tech/project/pyftpdlib\n :alt: Downloads\n\n.. image:: https://img.shields.io/travis/giampaolo/pyftpdlib/master.svg?maxAge=3600&label=Linux%20/%20OSX\n :target: https://travis-ci.org/giampaolo/pyftpdlib\n :alt: Linux tests (Travis)\n\n.. image:: https://img.shields.io/appveyor/ci/giampaolo/pyftpdlib/master.svg?maxAge=3600&label=Windows\n :target: https://ci.appveyor.com/project/giampaolo/pyftpdlib\n :alt: Windows tests (Appveyor)\n\n.. image:: https://coveralls.io/repos/github/giampaolo/pyftpdlib/badge.svg?branch=master\n :target: https://coveralls.io/github/giampaolo/pyftpdlib?branch=master\n :alt: Test coverage (coverall.io)\n\n.. image:: https://readthedocs.org/projects/pyftpdlib/badge/?version=latest\n :target: http://pyftpdlib.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/pyftpdlib.svg?label=pypi\n :target: https://pypi.python.org/pypi/pyftpdlib/\n :alt: Latest version\n\n.. image:: https://img.shields.io/github/stars/giampaolo/pyftpdlib.svg\n :target: https://github.com/giampaolo/pyftpdlib/\n :alt: Github stars\n\n.. image:: https://img.shields.io/pypi/l/pyftpdlib.svg\n :target: https://pypi.python.org/pypi/pyftpdlib/\n :alt: License\n\nQuick links\n===========\n\n- `Home `__\n- `Documentation `__\n- `Download `__\n- `Blog `__\n- `Mailing list `__\n- `What's new `__\n\nAbout\n=====\n\nPython FTP server library provides a high-level portable interface to easily\nwrite very efficient, scalable and asynchronous FTP servers with Python. It is\nthe most complete `RFC-959 `__ FTP server\nimplementation available for `Python `__ programming\nlanguage and it's used in projects like\n`Google Chromium `__ and\n`Bazaar `__ and included in\n`Debian `__,\n`Fedora `__ and\n`FreeBSD `__ package repositories.\n\nFeatures\n========\n\n- Extremely **lightweight**, **fast** and **scalable** (see\n `why `__ and\n `benchmarks `__).\n- Uses **sendfile(2)** (see `pysendfile `__)\n system call for uploads.\n- Uses epoll() / kqueue() / select() to handle concurrency asynchronously.\n- ...But can optionally skip to a\n `multiple thread / process `__\n model (as in: you'll be free to block or use slow filesystems).\n- Portable: entirely written in pure Python; works with Python from **2.6** to\n **3.5** by using a single code base.\n- Supports **FTPS** (`RFC-4217 `__),\n **IPv6** (`RFC-2428 `__),\n **Unicode** file names (`RFC-2640 `__),\n **MLSD/MLST** commands (`RFC-3659 `__).\n- Support for virtual users and virtual filesystem.\n- Extremely flexible system of \"authorizers\" able to manage both \"virtual\" and\n \"real\" users on on both\n `UNIX `__\n and\n `Windows `__.\n- `Test coverage `__\n close to 100%.\n\nPerformances\n============\n\nDespite being written in an intepreted language, pyftpdlib has transfer rates\nsuperior to most common UNIX FTP servers. It also scales better since whereas\nvsftpd and proftpd use multiple processes to achieve concurrency, pyftpdlib\nwill only use one process and handle concurrency asynchronously (see\n`the C10K problem `__). Here are some\n`benchmarks `__\nmade against my Linux 3.0.0 box, Intel core-duo 3.1 Ghz:\n\npyftpdlib vs. proftpd 1.3.4\n---------------------------\n\n+-----------------------------------------+----------------+----------------+-------------+\n| **benchmark type** | **pyftpdlib** | **proftpd** | **speedup** |\n+-----------------------------------------+----------------+----------------+-------------+\n| STOR (client -> server) | 585.90 MB/sec | 600.49 MB/sec | -0.02x |\n+-----------------------------------------+----------------+----------------+-------------+\n| RETR (server -> client) | 1652.72 MB/sec | 1524.05 MB/sec | **+0.08** |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (connect, login) | 0.19 secs | 9.98 secs | **+51x** |\n+-----------------------------------------+----------------+----------------+-------------+\n| STOR (1 file with 300 idle clients) | 585.59 MB/sec | 518.55 MB/sec | **+0.1x** |\n+-----------------------------------------+----------------+----------------+-------------+\n| RETR (1 file with 300 idle clients) | 1497.58 MB/sec | 1478.19 MB/sec | 0x |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (RETR 10M file) | 3.41 secs | 3.60 secs | **+0.05x** |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (STOR 10M file) | 8.60 secs | 11.56 secs | **+0.3x** |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (QUIT) | 0.03 secs | 0.39 secs | **+12x** |\n+-----------------------------------------+----------------+----------------+-------------+\n\npyftpdlib vs. vsftpd 2.3.5\n--------------------------\n\n+-----------------------------------------+----------------+----------------+-------------+\n| **benchmark type** | **pyftpdlib** | **vsftpd** | **speedup** |\n+-----------------------------------------+----------------+----------------+-------------+\n| STOR (client -> server) | 585.90 MB/sec | 611.73 MB/sec | -0.04x |\n+-----------------------------------------+----------------+----------------+-------------+\n| RETR (server -> client) | 1652.72 MB/sec | 1512.92 MB/sec | **+0.09** |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (connect, login) | 0.19 secs | 20.39 secs | **+106x** |\n+-----------------------------------------+----------------+----------------+-------------+\n| STOR (1 file with 300 idle clients) | 585.59 MB/sec | 610.23 MB/sec | -0.04x |\n+-----------------------------------------+----------------+----------------+-------------+\n| RETR (1 file with 300 idle clients) | 1497.58 MB/sec | 1493.01 MB/sec | 0x |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (RETR 10M file) | 3.41 secs | 3.67 secs | **+0.07x** |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (STOR 10M file) | 8.60 secs | 9.82 secs | **+0.07x** |\n+-----------------------------------------+----------------+----------------+-------------+\n| 300 concurrent clients (QUIT) | 0.03 secs | 0.01 secs | +0.14x |\n+-----------------------------------------+----------------+----------------+-------------+\n\nFor more benchmarks see `here `__.\n\nQuick start\n===========\n\n.. code-block:: python\n\n >>> from pyftpdlib.authorizers import DummyAuthorizer\n >>> from pyftpdlib.handlers import FTPHandler\n >>> from pyftpdlib.servers import FTPServer\n >>>\n >>> authorizer = DummyAuthorizer()\n >>> authorizer.add_user(\"user\", \"12345\", \"/home/giampaolo\", perm=\"elradfmwMT\")\n >>> authorizer.add_anonymous(\"/home/nobody\")\n >>>\n >>> handler = FTPHandler\n >>> handler.authorizer = authorizer\n >>>\n >>> server = FTPServer((\"127.0.0.1\", 21), handler)\n >>> server.serve_forever()\n [I 13-02-19 10:55:42] >>> starting FTP server on 127.0.0.1:21 <<<\n [I 13-02-19 10:55:42] poller: \n [I 13-02-19 10:55:42] masquerade (NAT) address: None\n [I 13-02-19 10:55:42] passive ports: None\n [I 13-02-19 10:55:42] use sendfile(2): True\n [I 13-02-19 10:55:45] 127.0.0.1:34178-[] FTP session opened (connect)\n [I 13-02-19 10:55:48] 127.0.0.1:34178-[user] USER 'user' logged in.\n [I 13-02-19 10:56:27] 127.0.0.1:34179-[user] RETR /home/giampaolo/.vimrc completed=1 bytes=1700 seconds=0.001\n [I 13-02-19 10:56:39] 127.0.0.1:34179-[user] FTP session closed (disconnect).\n\n`other code samples `__\n\nDonate\n======\n\nA lot of time and effort went into making pyftpdlib as it is right now.\nIf you feel pyftpdlib is useful to you or your business and want to support its\nfuture development please consider donating me\n(`Giampaolo Rodola' `_) some money.\nI only ask for a small donation, but of course I appreciate any amount.\n\n.. image:: https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif\n :target: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZSSF7G42VA2XE\n :alt: Donate via PayPal\n\nDon't want to donate money? Then maybe you could\n`write me a recommendation on Linkedin `_.\nIn case you're using pyftpdlib into a software of yours\n`mail me `_ and I'll add your\nsoftware to the\n`adoptions list `__.\n\nTrademarks\n==========\n\nSome famous trademarks which adopted pyftpdlib (`complete list `__).\n\n.. image:: docs/images/chrome.jpg\n :target: http://www.google.com/chrome\n.. image:: docs/images/debian.png\n :target: http://www.debian.org\n.. image:: docs/images/fedora.png\n :target: http://fedoraproject.org/\n.. image:: docs/images/freebsd.gif\n :target: http://www.freebsd.org\n.. image:: docs/images/openerp.jpg\n :target: http://openerp.com\n.. image:: docs/images/bazaar.jpg\n :target: http://bazaar-vcs.org\n.. image:: docs/images/bitsontherun.png\n :target: http://www.bitsontherun.com\n.. image:: docs/images/openvms.png\n :target: http://www.openvms.org/\n.. image:: docs/images/smartfile.png\n :target: https://www.smartfile.com/", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/giampaolo/pyftpdlib/", "keywords": "ftp,ftps,server,ftpd,daemon,python,ssl,sendfile,asynchronous,nonblocking,eventdriven,rfc959,rfc1123,rfc2228,rfc2428,rfc2640,rfc3659", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pyftpdlib", "package_url": "https://pypi.org/project/pyftpdlib/", "platform": "Platform Independent", "project_url": "https://pypi.org/project/pyftpdlib/", "project_urls": { "Homepage": "https://github.com/giampaolo/pyftpdlib/" }, "release_url": "https://pypi.org/project/pyftpdlib/1.5.5/", "requires_dist": null, "requires_python": "", "summary": "Very fast asynchronous FTP server library", "version": "1.5.5" }, "last_serial": 5095670, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "ecf55acad81d99496d9f7ce9158f5d1f", "sha256": "732c4ececf581d7db65f57743b5eca6da53fc85b9c5a99b3ff481e680ee79b91" }, "downloads": -1, "filename": "pyftpdlib-0.2.0.tar.gz", "has_sig": false, "md5_digest": "ecf55acad81d99496d9f7ce9158f5d1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30329, "upload_time": "2014-02-06T02:17:49", "url": "https://files.pythonhosted.org/packages/02/91/7a564106022b8b31637d699dc5156d3fb4f3539f6e363a15ff74d4bf1110/pyftpdlib-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "459eb3e5e7d5e3edb4588c8f19ccb943", "sha256": "6d25b8c7fa9ac908ebac4c8ccfdbc4196bf57288b1e18b678d0f17029485bde9" }, "downloads": -1, "filename": "pyftpdlib-0.3.0.tar.gz", "has_sig": false, "md5_digest": "459eb3e5e7d5e3edb4588c8f19ccb943", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36306, "upload_time": "2014-02-06T02:17:54", "url": "https://files.pythonhosted.org/packages/41/78/75856b9b9f86499a0b4b55cdc74f3c5f0bcbe06c6469c0e994fb09bd94ef/pyftpdlib-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "2cb097182a6d584c9d9eebb0bf010ea9", "sha256": "a27d7aebf7e27cf46662f2e12a01fcabc22ea5c4c726ff37c3f3c1fbf1aea53e" }, "downloads": -1, "filename": "pyftpdlib-0.4.0.tar.gz", "has_sig": false, "md5_digest": "2cb097182a6d584c9d9eebb0bf010ea9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39567, "upload_time": "2014-02-06T02:17:59", "url": "https://files.pythonhosted.org/packages/a3/73/76655492ce2935c628cfe7ccb22117d1dda1d9bee63f5cd94eade7436857/pyftpdlib-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "980d9509b22746588184b609a2fc353d", "sha256": "4e1e4e917bb6dfa5047ed307f47d7225fd3fb06c61300ea3995a18008f88c074" }, "downloads": -1, "filename": "pyftpdlib-0.5.0.tar.gz", "has_sig": false, "md5_digest": "980d9509b22746588184b609a2fc353d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43241, "upload_time": "2014-02-06T02:19:00", "url": "https://files.pythonhosted.org/packages/f8/de/d5cea4168b5fd6a08ddbcb6fa644d219e78b809d628ff09b1cdf674d33ce/pyftpdlib-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "287299790efca45e82e86c2a2b46a1b1", "sha256": "de366671233fde77c0b8d4a560e59b05e5e2e62583732d7667f4968f7a39d59d" }, "downloads": -1, "filename": "pyftpdlib-0.5.1.tar.gz", "has_sig": false, "md5_digest": "287299790efca45e82e86c2a2b46a1b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46855, "upload_time": "2014-02-06T02:19:06", "url": "https://files.pythonhosted.org/packages/f0/97/1eec5103e4b0cca3362fe442b8c85331890801040d8436f3e8b8fe1a75fc/pyftpdlib-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "8b22f0314a377182546da98cdd691742", "sha256": "f8cad1aa13322cc0be4fbc194a3abe53a31b4f143f86e726bfc738eccda2a657" }, "downloads": -1, "filename": "pyftpdlib-0.5.2.tar.gz", "has_sig": false, "md5_digest": "8b22f0314a377182546da98cdd691742", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50778, "upload_time": "2014-02-06T02:19:12", "url": "https://files.pythonhosted.org/packages/b1/e7/5e8f8c570dc02d678b37047a1beb9a46f9c99654b75542a1fb48699fbbd7/pyftpdlib-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "909ba068189cbf53db07e9dad0708014", "sha256": "ab0a38d352f6d89f3bfec1cdd2283d72b5ee90d61f33d56da175df2b431e0a29" }, "downloads": -1, "filename": "pyftpdlib-0.6.0.tar.gz", "has_sig": false, "md5_digest": "909ba068189cbf53db07e9dad0708014", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68664, "upload_time": "2014-02-06T02:19:18", "url": "https://files.pythonhosted.org/packages/5c/bc/613d8b9850c93c2bbeaa681352722be4fd788ea323d95b8aa395fecf6aeb/pyftpdlib-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "a829340b294c09861a49d1b90147baba", "sha256": "8dc518867b65039eee3d58f7b6f7661715bbf8b894fe2e288b1ab88b45383c1f" }, "downloads": -1, "filename": "pyftpdlib-0.7.0.tar.gz", "has_sig": false, "md5_digest": "a829340b294c09861a49d1b90147baba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76039, "upload_time": "2014-02-06T02:19:25", "url": "https://files.pythonhosted.org/packages/a9/59/c47550c65b719c00f431cd6fc48abbfa9416b673beda4d08b7f4482e2c2d/pyftpdlib-0.7.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "361c27a546e8cfd232c6fb644c99cae8", "sha256": "e89ca27d94ea9d71211c4b66b95647bd8f83c760393d59ad0cb401d1ef440f43" }, "downloads": -1, "filename": "pyftpdlib-1.0.0.tar.gz", "has_sig": false, "md5_digest": "361c27a546e8cfd232c6fb644c99cae8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115719, "upload_time": "2014-02-06T02:19:32", "url": "https://files.pythonhosted.org/packages/ea/d7/d5386c5ed44fb59809fce630f24cfd2db7e7eb1e8de3ac8cd4f05e310e04/pyftpdlib-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "bbc158653ec3dee536752d6c7aa0ec97", "sha256": "b188df514c15de2fd5bf28eba76b6725e85dca43355807aae556e81927baf9be" }, "downloads": -1, "filename": "pyftpdlib-1.0.1.tar.gz", "has_sig": false, "md5_digest": "bbc158653ec3dee536752d6c7aa0ec97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116230, "upload_time": "2014-02-06T02:19:38", "url": "https://files.pythonhosted.org/packages/0e/b4/f36d9527465f319a31e6910c73bf3610c851920c7ea1b10466dbeb96b5b0/pyftpdlib-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "4c1d0df69b87e0b818678444cb508abb", "sha256": "2962ad8e754d4973cd5168d2b00790f2effcf774992ee2d71f7ef0fb325d8290" }, "downloads": -1, "filename": "pyftpdlib-1.1.0.tar.gz", "has_sig": false, "md5_digest": "4c1d0df69b87e0b818678444cb508abb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118699, "upload_time": "2014-02-06T02:19:44", "url": "https://files.pythonhosted.org/packages/f7/84/be74e693b9bae7883c04cc1a7b1d9097561785edb270c1e047a49facf4c6/pyftpdlib-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "9a930d48406ee0a1e60fb4b22f40f7f6", "sha256": "66fc4e407c36be4a00a0b1387efd62ac5aa472bc4d8efc21161bbd6294ba3e7f" }, "downloads": -1, "filename": "pyftpdlib-1.2.0.tar.gz", "has_sig": false, "md5_digest": "9a930d48406ee0a1e60fb4b22f40f7f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119238, "upload_time": "2014-02-06T02:19:50", "url": "https://files.pythonhosted.org/packages/47/23/73b962d609122f312dc8d64c05ca15a7784c027d6022714d14ec09b64bcc/pyftpdlib-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "758cd44d3b2c6bf91bfc6f52b959afe1", "sha256": "df022c94d1883f596b8004bc33a9ba7e6ad9a07a794c70061dd08370ca320fc6" }, "downloads": -1, "filename": "pyftpdlib-1.3.0.tar.gz", "has_sig": false, "md5_digest": "758cd44d3b2c6bf91bfc6f52b959afe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120082, "upload_time": "2014-02-06T02:29:23", "url": "https://files.pythonhosted.org/packages/81/34/5ea72ca0463ed20ac5492fe2a27008acf29efde1e94a48e35149d279b485/pyftpdlib-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "af8d29f4fc28ba898a26a35d1aba8ea3", "sha256": "a171819fc9cb0b1ea9c46c9af1b51b28f965ae892aca0765975f54f26c5bba6d" }, "downloads": -1, "filename": "pyftpdlib-1.3.1.tar.gz", "has_sig": false, "md5_digest": "af8d29f4fc28ba898a26a35d1aba8ea3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122515, "upload_time": "2014-04-11T22:13:41", "url": "https://files.pythonhosted.org/packages/8a/f3/6e45f3e8ae1e218879b258fc73711df811b9e6f3949d0aeb4e72c121a589/pyftpdlib-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "5aeda8287f4e5ba263e48a79f2a246fd", "sha256": "5fdd1492efe478f4c354f7d65d9308359751c8fb1d0376466b74a76721c5fcf3" }, "downloads": -1, "filename": "pyftpdlib-1.4.0.tar.gz", "has_sig": false, "md5_digest": "5aeda8287f4e5ba263e48a79f2a246fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116280, "upload_time": "2014-06-03T21:50:37", "url": "https://files.pythonhosted.org/packages/c7/d4/21683676fd2a6fe482625e1ad149f805fff361d1d367cbc80c4367a7b8e2/pyftpdlib-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "0c6f7c447fb702af4d5ca0123003c9fd", "sha256": "0111127418e9012a8e9e6c05a0c64af1acef8c31128834805fb0f9a49c746261" }, "downloads": -1, "filename": "pyftpdlib-1.5.0.tar.gz", "has_sig": false, "md5_digest": "0c6f7c447fb702af4d5ca0123003c9fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129753, "upload_time": "2015-12-13T18:42:04", "url": "https://files.pythonhosted.org/packages/8b/84/9d4345eae2f8a3606ac2e44004b4d9093eba7aa1b29e6a7b870facf431ce/pyftpdlib-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "61b23e2362df23d0dfa5fe76f6e2ab55", "sha256": "7bcd7fc825123414a157718c6dcdcb0978208d3c865d4650564acef4acce3354" }, "downloads": -1, "filename": "pyftpdlib-1.5.1.tar.gz", "has_sig": false, "md5_digest": "61b23e2362df23d0dfa5fe76f6e2ab55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127582, "upload_time": "2016-05-02T13:34:04", "url": "https://files.pythonhosted.org/packages/a8/f8/0f6db156898616dbcbd7bf865660295c81479071ab0fcd1898fe1b3a4fc4/pyftpdlib-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "95a56ad9fce1f955d9dbfce3e20f2f62", "sha256": "bcb1a949848302b4a10623e57966d2bdbcf898bf220b587ea287d14de4b1471e" }, "downloads": -1, "filename": "pyftpdlib-1.5.2.tar.gz", "has_sig": false, "md5_digest": "95a56ad9fce1f955d9dbfce3e20f2f62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179047, "upload_time": "2017-04-06T11:02:12", "url": "https://files.pythonhosted.org/packages/a5/ff/81c54c9f68294ee0b410f2c6efcbfc58791305460228e417657b720b0306/pyftpdlib-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "f1c7e7f859b3310769149dea4ac26916", "sha256": "7b9ea701f91bee280c5a930a9c4ceaea91b6d4aaf82b8b8ede82fb84a32081a7" }, "downloads": -1, "filename": "pyftpdlib-1.5.3.tar.gz", "has_sig": false, "md5_digest": "f1c7e7f859b3310769149dea4ac26916", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 183189, "upload_time": "2017-11-04T08:39:14", "url": "https://files.pythonhosted.org/packages/c5/fb/74f6425fbb7f2a87969e1aa01bb9684601de431a3488b95f64509bf985ef/pyftpdlib-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "9da788b0762fdc79aa6d7b18e0068cc8", "sha256": "e5fca613978743d41c3bfc68e25a811d646a3b8a9eee9eb07021daca89646a0f" }, "downloads": -1, "filename": "pyftpdlib-1.5.4.tar.gz", "has_sig": false, "md5_digest": "9da788b0762fdc79aa6d7b18e0068cc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184986, "upload_time": "2018-05-04T21:06:53", "url": "https://files.pythonhosted.org/packages/0d/64/eb0daca74956d0e6849b71c5ba99ab873ec59b888a1d7651d92fb686ee04/pyftpdlib-1.5.4.tar.gz" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "7f8089520d60171bee5dab2b721e8d00", "sha256": "1adf1c03d1508749e7c2f26dc9850ec0ef834318d725b7ae5ac91698f5c86752" }, "downloads": -1, "filename": "pyftpdlib-1.5.5.tar.gz", "has_sig": false, "md5_digest": "7f8089520d60171bee5dab2b721e8d00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184314, "upload_time": "2019-04-04T09:11:05", "url": "https://files.pythonhosted.org/packages/27/64/06a574350c79873e908fa9f48b617e7961de50fc468acc0a05d76771bce9/pyftpdlib-1.5.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7f8089520d60171bee5dab2b721e8d00", "sha256": "1adf1c03d1508749e7c2f26dc9850ec0ef834318d725b7ae5ac91698f5c86752" }, "downloads": -1, "filename": "pyftpdlib-1.5.5.tar.gz", "has_sig": false, "md5_digest": "7f8089520d60171bee5dab2b721e8d00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184314, "upload_time": "2019-04-04T09:11:05", "url": "https://files.pythonhosted.org/packages/27/64/06a574350c79873e908fa9f48b617e7961de50fc468acc0a05d76771bce9/pyftpdlib-1.5.5.tar.gz" } ] }