{
"info": {
"author": "Martin Larralde",
"author_email": "martin.larralde@ens-cachan.fr",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems"
],
"description": "``fs.sshfs``\n============\n\n|Source| |PyPI| |Conda| |Travis| |Codecov| |Codacy| |Format| |License|\n\n.. |Codacy| image:: https://img.shields.io/codacy/grade/9734bea6ec004cc4914a377d9e9f54bd/master.svg?style=flat-square&maxAge=300\n :target: https://www.codacy.com/app/althonos/fs.sshfs/dashboard\n\n.. |Travis| image:: https://img.shields.io/travis/althonos/fs.sshfs/master.svg?style=flat-square&maxAge=300\n :target: https://travis-ci.org/althonos/fs.sshfs/branches\n\n.. |Codecov| image:: https://img.shields.io/codecov/c/github/althonos/fs.sshfs/master.svg?style=flat-square&maxAge=300\n :target: https://codecov.io/gh/althonos/fs.sshfs\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/fs.sshfs.svg?style=flat-square&maxAge=300\n :target: https://pypi.python.org/pypi/fs.sshfs\n\n.. |Conda| image:: https://anaconda.org/conda-forge/fs.sshfs/badges/installer/conda.svg\n :target: https://anaconda.org/conda-forge/fs.sshfs\n\n.. |Format| image:: https://img.shields.io/pypi/format/fs.sshfs.svg?style=flat-square&maxAge=300\n :target: https://pypi.python.org/pypi/fs.sshfs\n\n.. |Versions| image:: https://img.shields.io/pypi/pyversions/fs.sshfs.svg?style=flat-square&maxAge=300\n :target: https://travis-ci.org/althonos/fs.sshfs\n\n.. |License| image:: https://img.shields.io/pypi/l/fs.sshfs.svg?style=flat-square&maxAge=300\n :target: https://choosealicense.com/licenses/lgpl-2.1/\n\n.. |Source| image:: https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=300&style=flat-square\n :target: https://github.com/althonos/fs.sshfs\n\n\n\nRequirements\n------------\n\n+---------------------+-----------------+-------------------+--------------------+\n| **pyfilesystem2** | |PyPI fs| | |Source fs| | |License fs| |\n+---------------------+-----------------+-------------------+--------------------+\n| **six** | |PyPI six| | |Source six| | |License six| |\n+---------------------+-----------------+-------------------+--------------------+\n| **paramiko** | |PyPI paramiko| | |Source paramiko| | |License paramiko| |\n+---------------------+-----------------+-------------------+--------------------+\n| **property-cached** | |PyPI property| | |Source property| | |License property| |\n+---------------------+-----------------+-------------------+--------------------+\n\n.. |License six| image:: https://img.shields.io/pypi/l/six.svg?maxAge=300&style=flat-square\n :target: https://choosealicense.com/licenses/mit/\n\n.. |Source six| image:: https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=300&style=flat-square\n :target: https://github.com/benjaminp/six\n\n.. |PyPI six| image:: https://img.shields.io/pypi/v/six.svg?maxAge=300&style=flat-square\n :target: https://pypi.python.org/pypi/six\n\n.. |License fs| image:: https://img.shields.io/pypi/l/fs.svg?maxAge=300&style=flat-square\n :target: https://choosealicense.com/licenses/mit/\n\n.. |Source fs| image:: https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=300&style=flat-square\n :target: https://github.com/PyFilesystem/pyfilesystem2\n\n.. |PyPI fs| image:: https://img.shields.io/pypi/v/fs.svg?maxAge=300&style=flat-square\n :target: https://pypi.python.org/pypi/fs\n\n.. |License paramiko| image:: https://img.shields.io/pypi/l/paramiko.svg?maxAge=300&style=flat-square\n :target: https://choosealicense.com/licenses/lgpl-2.1/\n\n.. |Source paramiko| image:: https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=300&style=flat-square\n :target: https://github.com/paramiko/paramiko\n\n.. |PyPI paramiko| image:: https://img.shields.io/pypi/v/paramiko.svg?maxAge=300&style=flat-square\n :target: https://pypi.python.org/pypi/paramiko\n\n.. |License property| image:: https://img.shields.io/pypi/l/property-cached.svg?maxAge=300&style=flat-square\n :target: https://choosealicense.com/licenses/bsd-3-clause/\n\n.. |Source property| image:: https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=300&style=flat-square\n :target: https://github.com/althonos/property-cached\n\n.. |PyPI property| image:: https://img.shields.io/pypi/v/property-cached.svg?maxAge=300&style=flat-square\n :target: https://pypi.python.org/pypi/property-cached\n\n\nInstallation\n------------\n\nInstall directly from PyPI, using `pip `_ ::\n\n pip install fs.sshfs\n\n\nUsage\n-----\n\nOpener\n''''''\n\nUse ``fs.open_fs`` to open a filesystem with an SSH\n`FS URL `_:\n\n.. code:: python\n\n import fs\n my_fs = fs.open_fs(\"ssh://[user[:password]@]host[:port]/[directory]\")\n\nThe ``sftp`` scheme can be used as an alias for the ``ssh`` scheme in\nthe FS URL. The following URL parameters are supported: ``timeout``, \n``keepalive``.\n\n\nConstructor\n'''''''''''\n\nFor a more granular way of connecting to an SSH server, use the\n``fs.sshfs.SSHFS`` constructor, which signature is:\n\n.. code:: python\n\n from fs.sshfs import SSHFS\n my_fs = SSHFS(\n host, user=None, passwd=None, pkey=None, timeout=10, port=22,\n keepalive=10, compress=False, config_path='~/.ssh/config'\n )\n\nwith each argument explained below:\n\n``host``\n the name or IP address of the SSH server\n``user``\n the username to connect with, defaults to the current user.\n``passwd``\n an optional password, used to connect directly to the server or to\n decrypt the public key, if any given.\n``pkey``\n a `paramiko.PKey `_\n object, a path, or a list of paths to an SSH key.\n``timeout``\n the timeout, in seconds, for networking operations.\n``port``\n the port the SSH server is listening on.\n``keepalive``\n the interval of time between keepalive packets, in seconds. Set to 0 to disable.\n``compress``\n set to ``True`` to compress the communications with the server\n``config_path``\n the path to an OpenSSH configuration file.\n\nAdditional keyword arguments will be passed to the underlying connection call,\ntaking precedence over implicitly derived arguments. Once created, the\n``SSHFS`` filesystem behaves like any other filesystem (see the `Pyfilesystem2\ndocumentation `_).\n\n\nFiles\n'''''\n\n`SSHFS.openbin` has the following extra options that can be passed as keyword arguments\nto control the file buffering:\n\n``prefetch``\n enabled by default, use a background thread to prefetch the content of a file \n opened in reading mode. Does nothing for files in writing mode.\n``pipelined``\n enable pipelined mode, avoid waiting for server answer between two uploaded \n chunks. Does nothing for files in reading mode.\n\n\n\nConfiguration\n-------------\n\n``SSHFS`` are aware of `SSH config files `_\nand as such, one of the hosts in the configuration file can be provided as the\n``host`` argument for the filesystem to connect to the server with the proper\nconfiguration values.\n\n\n\nFeedback\n--------\n\nFound a bug ? Have an enhancement request ? Head over to the\n`GitHub issue tracker `_ of the\nproject if you need to report or ask something. If you are filling in on a bug,\nplease include as much information as you can about the issue, and try to\nrecreate the same bug in a simple, easily reproductible situation.\n\n\n\nSee also\n--------\n\n* `fs `_, the core pyfilesystem2 library\n* `fs.archive `_, enhanced archive filesystems\n for pyfilesystem2\n* `fs.smbfs `_, Pyfilesystem2 over SMB\n using pysmb\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/althonos/fs.sshfs",
"keywords": "filesystem,Pyfilesystem2,ssh,sftp,paramiko",
"license": "LGPL-2.1+",
"maintainer": "",
"maintainer_email": "",
"name": "fs.sshfs",
"package_url": "https://pypi.org/project/fs.sshfs/",
"platform": "any",
"project_url": "https://pypi.org/project/fs.sshfs/",
"project_urls": {
"Homepage": "https://github.com/althonos/fs.sshfs"
},
"release_url": "https://pypi.org/project/fs.sshfs/0.12.0/",
"requires_dist": [
"property-cached (~=1.6)",
"fs (~=2.2)",
"paramiko (~=2.0)",
"six (~=1.10)",
"configparser (~=3.2) ; python_version < \"3\"",
"docutils ; extra == 'dev'",
"Pygments ; extra == 'dev'",
"codecov ; extra == 'dev'",
"green ; extra == 'dev'",
"coverage ; extra == 'dev'",
"docker (~=3.6.0) ; extra == 'tests'",
"semantic-version (~=2.6) ; extra == 'tests'",
"mock (~=2.0) ; (python_version < \"3.4\") and extra == 'tests'"
],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7",
"summary": "Pyfilesystem2 over SSH using paramiko",
"version": "0.12.0"
},
"last_serial": 6006253,
"releases": {
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "797e0a8c8ce1f966ec6523944ab2959d",
"sha256": "de70cb9125d4f82c76b23aab28db2246d86b3bc444591b75d52e2d7103b55d2e"
},
"downloads": -1,
"filename": "fs.sshfs-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "797e0a8c8ce1f966ec6523944ab2959d",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 8681,
"upload_time": "2017-06-22T17:41:59",
"url": "https://files.pythonhosted.org/packages/21/05/b1d8688c3bd3f026ee44f41e0756b35de8caac46203574c0af67cc925123/fs.sshfs-0.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3954691031fdef04c5de2811df6fa956",
"sha256": "0970f3684dc31b0346f1e3581aa373ec554c673d06a8160a68d858952c75c7c7"
},
"downloads": -1,
"filename": "fs.sshfs-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "3954691031fdef04c5de2811df6fa956",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16717,
"upload_time": "2017-06-22T17:41:57",
"url": "https://files.pythonhosted.org/packages/32/7a/81807619b8deaa34d68616237f76b64dc6708b6742be3e866e4e86320993/fs.sshfs-0.1.0.tar.gz"
}
],
"0.10.0": [
{
"comment_text": "",
"digests": {
"md5": "3ef46e8f5097ea8ee9cebc86ab720c32",
"sha256": "43e9ac63e73c6c4127fed5bb1e985ad49eb727e5cc7adcb9d0cffc55b2676734"
},
"downloads": -1,
"filename": "fs.sshfs-0.10.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3ef46e8f5097ea8ee9cebc86ab720c32",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 20940,
"upload_time": "2019-01-05T23:02:28",
"url": "https://files.pythonhosted.org/packages/ca/2e/3a1e2c39c1e270e3723918b50a544bbc00feae2ac1eec8955b2e1bd63a15/fs.sshfs-0.10.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ec0d226d076a67a2eb0b87b5190c17a0",
"sha256": "6d0c16e906e2d1a349a9726356fbd0fb7d5f5dfeefeb79629d8291ecd6165254"
},
"downloads": -1,
"filename": "fs.sshfs-0.10.0.tar.gz",
"has_sig": false,
"md5_digest": "ec0d226d076a67a2eb0b87b5190c17a0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 22974,
"upload_time": "2019-01-05T23:02:30",
"url": "https://files.pythonhosted.org/packages/e3/a7/97edfec7ab64b2c069344c4204f5bc8e97c992485ba8eef02a07b1a5b56c/fs.sshfs-0.10.0.tar.gz"
}
],
"0.10.1": [
{
"comment_text": "",
"digests": {
"md5": "86fb7ae2fc635078f3418ae4e889b84a",
"sha256": "865aa56ebbb348f5a955e99d30619f18022ba2dfb308557ce926fecb0e49c4ff"
},
"downloads": -1,
"filename": "fs.sshfs-0.10.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "86fb7ae2fc635078f3418ae4e889b84a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 21066,
"upload_time": "2019-02-11T16:42:34",
"url": "https://files.pythonhosted.org/packages/ad/bb/b3fc782cdbef1479d84678c229eec21ae0c80ed749059cee0e3cb376584c/fs.sshfs-0.10.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "17a43f20f28a83226d8b814eec59f3e1",
"sha256": "f22def2269433d356ea69daf59ace4e21d3deaa1a8a93d53fb75f4f22142692c"
},
"downloads": -1,
"filename": "fs.sshfs-0.10.1.tar.gz",
"has_sig": false,
"md5_digest": "17a43f20f28a83226d8b814eec59f3e1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 23196,
"upload_time": "2019-02-11T16:42:36",
"url": "https://files.pythonhosted.org/packages/98/37/873adb9f8a74349e73f9dd89cd0468e97fff65e2cbf4722ea077b877c025/fs.sshfs-0.10.1.tar.gz"
}
],
"0.10.2": [
{
"comment_text": "",
"digests": {
"md5": "39b668e5dd4a98eaf4f44dd542079f23",
"sha256": "0b2d18d5059d25c1eaa55efac5f465e8ac878bd0d38dbc91ae1b290011c19961"
},
"downloads": -1,
"filename": "fs.sshfs-0.10.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "39b668e5dd4a98eaf4f44dd542079f23",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 21059,
"upload_time": "2019-05-16T21:45:33",
"url": "https://files.pythonhosted.org/packages/46/f2/6cf935fa0937c182feb9cd13dce4dbf03c743e225e221b8705322783037d/fs.sshfs-0.10.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "61d6e84797c34da2cd06c94be96c6225",
"sha256": "9e86cfc7e94c632e57430cad0da34bc52b13cfb54da55e1d573ef16c9b62ae42"
},
"downloads": -1,
"filename": "fs.sshfs-0.10.2.tar.gz",
"has_sig": false,
"md5_digest": "61d6e84797c34da2cd06c94be96c6225",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 23186,
"upload_time": "2019-05-16T21:45:35",
"url": "https://files.pythonhosted.org/packages/d7/a9/492c1a6cd6687b22c547acc29de1be97a708038d4900908dbf7b37484aa1/fs.sshfs-0.10.2.tar.gz"
}
],
"0.11.0": [
{
"comment_text": "",
"digests": {
"md5": "1d73cc2d9f2a306ecb66cba038fd7eb1",
"sha256": "99e3347858bc26d70ef0d3eea3e032a6e76bdb382c28ada7f0579beba07cc823"
},
"downloads": -1,
"filename": "fs.sshfs-0.11.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1d73cc2d9f2a306ecb66cba038fd7eb1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 21334,
"upload_time": "2019-05-16T21:50:12",
"url": "https://files.pythonhosted.org/packages/eb/d4/6119fb4f9351827a3e9f3d0be86fc11148c8c71b817394b390fd97afc587/fs.sshfs-0.11.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "beb9d8f9f4d95e958267898333738a33",
"sha256": "6feae02e13806424a1772653973985495c093514d0ea5d0b3dd4ed1d3c86034b"
},
"downloads": -1,
"filename": "fs.sshfs-0.11.0.tar.gz",
"has_sig": false,
"md5_digest": "beb9d8f9f4d95e958267898333738a33",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 23751,
"upload_time": "2019-05-16T21:50:14",
"url": "https://files.pythonhosted.org/packages/d4/aa/96e1821e145d2001e2ded1381ac1dfb40ac5e918f361b617537eaf1c09b7/fs.sshfs-0.11.0.tar.gz"
}
],
"0.11.1": [
{
"comment_text": "",
"digests": {
"md5": "c866b594f2f99831b92dbea8b3401011",
"sha256": "693c02875ca9d2a914fde67ffca4224b9fa3afff709f33c7e297b291a8fc10dd"
},
"downloads": -1,
"filename": "fs.sshfs-0.11.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c866b594f2f99831b92dbea8b3401011",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 21398,
"upload_time": "2019-07-22T12:19:07",
"url": "https://files.pythonhosted.org/packages/95/41/22eec4774f1d7d79c5539b56a2130608dd59246de90a6332750564d79095/fs.sshfs-0.11.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "070f6ac822049a01b6f2c2b704d8b1bb",
"sha256": "8d761c295d23ddcf13d4ed6351548c3bc8013f8a49aa01fcfce119fda54a4610"
},
"downloads": -1,
"filename": "fs.sshfs-0.11.1.tar.gz",
"has_sig": false,
"md5_digest": "070f6ac822049a01b6f2c2b704d8b1bb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 23958,
"upload_time": "2019-07-22T12:19:09",
"url": "https://files.pythonhosted.org/packages/62/96/16df7308ffaa2cfe38575036a84ee8cec1e3e431cb1cf08f71d2ff3a1353/fs.sshfs-0.11.1.tar.gz"
}
],
"0.12.0": [
{
"comment_text": "",
"digests": {
"md5": "8459662347a46bc7d48799a555b9c1e9",
"sha256": "626d2b13fa9928824e7686b591df6cd194ef74effa92b67221560b08a5836953"
},
"downloads": -1,
"filename": "fs.sshfs-0.12.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8459662347a46bc7d48799a555b9c1e9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7",
"size": 21654,
"upload_time": "2019-10-21T08:55:53",
"url": "https://files.pythonhosted.org/packages/c3/44/d96ae18a8b38d68eb1f90cd0a1869a0302938e7ad0518e2a1106056f238e/fs.sshfs-0.12.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "04ce522340ebe9703e090d1e38820ab3",
"sha256": "109e1a3e5631fe2c43079e8c47e2a94ccf9e356cb3715932fe1bb7dc5c5b3229"
},
"downloads": -1,
"filename": "fs.sshfs-0.12.0.tar.gz",
"has_sig": false,
"md5_digest": "04ce522340ebe9703e090d1e38820ab3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7",
"size": 22595,
"upload_time": "2019-10-21T08:55:55",
"url": "https://files.pythonhosted.org/packages/94/bb/6228adb7d3fbf96b25352cc2706a93ced9c6cca941ad10064ea6635e2076/fs.sshfs-0.12.0.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "f78ddf0b3d14980afdb78f98bb5bf1d1",
"sha256": "ec57606a7fd43faf44bbf02df2b78bd57a21eaf49e3bd0e28c5cdc56f6413f3e"
},
"downloads": -1,
"filename": "fs.sshfs-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f78ddf0b3d14980afdb78f98bb5bf1d1",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 11057,
"upload_time": "2017-06-28T00:19:26",
"url": "https://files.pythonhosted.org/packages/74/a3/a844f9b26a9102734cc26e32952e60717bacaf05b2d64829eabc7df83c5a/fs.sshfs-0.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4044e9081ee2b915a58d81c3f86943bb",
"sha256": "d4ee09a17e9b4be63cea1d03f29bcab16b8e44bcb9698364a7c93267c8ee9342"
},
"downloads": -1,
"filename": "fs.sshfs-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "4044e9081ee2b915a58d81c3f86943bb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8170,
"upload_time": "2017-06-28T00:19:24",
"url": "https://files.pythonhosted.org/packages/ec/69/c7d543954af011399fed52d1f0135cdcfd935f8711e7d80e9ce2a0e2b5b7/fs.sshfs-0.2.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "e9c849632ff5196d39b27abe4c6226f1",
"sha256": "f275e10307b1d9f1fc21d806d70f82ca4c476d16c4cb89fd4775a95c1da6f892"
},
"downloads": -1,
"filename": "fs.sshfs-0.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e9c849632ff5196d39b27abe4c6226f1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11771,
"upload_time": "2017-07-02T23:13:53",
"url": "https://files.pythonhosted.org/packages/a6/61/45c58b2b2e01f7dd6f95549d8ceb30019692b79d6f8b895b611dcef43de0/fs.sshfs-0.2.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "15da2fef5b1f834443bab6b33556c4eb",
"sha256": "110d6b8e3f3419d5db6ee108d58f1cd9db69bbd595a88d952502059b701c8387"
},
"downloads": -1,
"filename": "fs.sshfs-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "15da2fef5b1f834443bab6b33556c4eb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 9885,
"upload_time": "2017-07-02T23:13:54",
"url": "https://files.pythonhosted.org/packages/4d/1c/4a23d672265e0948db0b6a81454072d5b9e9d6d5c651085bafae359cf648/fs.sshfs-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "58767cfcf09d578f9183faa3af15b35a",
"sha256": "be5c02e0353d7287a727ab3147ecfcf5a5805c8f0bd813be6297cb167105601b"
},
"downloads": -1,
"filename": "fs.sshfs-0.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "58767cfcf09d578f9183faa3af15b35a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11734,
"upload_time": "2017-07-03T08:46:22",
"url": "https://files.pythonhosted.org/packages/c9/af/b7147999dff53ce188322495f6eba8eff5b043d14f0c974553be2e1484fd/fs.sshfs-0.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1c2b03a512796daaff257d16c63c7716",
"sha256": "65124c18304e3090f042d18d79eb20995748fa79176f70ab1db6b00df65fc6d4"
},
"downloads": -1,
"filename": "fs.sshfs-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "1c2b03a512796daaff257d16c63c7716",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 9827,
"upload_time": "2017-07-03T08:46:23",
"url": "https://files.pythonhosted.org/packages/3a/5d/d5a6900aa77ea6b55faf237273c020c8b936ce2a69cf195b8d0d7c218f8b/fs.sshfs-0.2.2.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "5dafa22628a87c7534848da8de5ed160",
"sha256": "f31fe7a57e3f0db7e87f7947fc0c3ed6b77a4453a629420030d167a8ae6576dc"
},
"downloads": -1,
"filename": "fs.sshfs-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5dafa22628a87c7534848da8de5ed160",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 12005,
"upload_time": "2017-08-05T21:55:49",
"url": "https://files.pythonhosted.org/packages/bb/3f/6597687e4a2b3ce270bb37e927f0d0e59a8046cf645d3609d59c9f0185f1/fs.sshfs-0.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5ee25cae1689f461d63924560b701b37",
"sha256": "79cbe87ab721708ba82052ac542dd28247e51d7906c1d2abc1e1139d7e83f91f"
},
"downloads": -1,
"filename": "fs.sshfs-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "5ee25cae1689f461d63924560b701b37",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 9984,
"upload_time": "2017-08-05T21:55:51",
"url": "https://files.pythonhosted.org/packages/c4/cd/e7b03b314e1f621c218b2601ea57a1578c2c2fdf0ed8463fa5190c633ea3/fs.sshfs-0.3.0.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "2997a52b30abeeb87373106956c767fa",
"sha256": "1a3de262b92b3b621929ce7a837199d8023d184ab84a7319c83384e3138c45b0"
},
"downloads": -1,
"filename": "fs.sshfs-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2997a52b30abeeb87373106956c767fa",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 12416,
"upload_time": "2017-08-16T23:51:34",
"url": "https://files.pythonhosted.org/packages/fe/52/8ba3c5a4099fd1eab4ba7bfe56f2ced1b0eb3cd883e11bf371c34f5072b4/fs.sshfs-0.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b241578f7b0f1472b33348ac38b4eae5",
"sha256": "bd08317b6bd0a60c97184626eafcf745139b491a5e31e0ff1c8ac1e5ace809bb"
},
"downloads": -1,
"filename": "fs.sshfs-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "b241578f7b0f1472b33348ac38b4eae5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 10267,
"upload_time": "2017-08-16T23:51:36",
"url": "https://files.pythonhosted.org/packages/54/ea/b38b357e4e678b9a194e84eca303f3977995077b0fec26b19a7668c310f0/fs.sshfs-0.4.0.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "2060be28fdbeabab265c6cbd8e7cf371",
"sha256": "2eb63b3663c90a152a9980ac6c05553a323be9ee680d2f786a8483c7b389c526"
},
"downloads": -1,
"filename": "fs.sshfs-0.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2060be28fdbeabab265c6cbd8e7cf371",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 13777,
"upload_time": "2017-08-31T18:00:38",
"url": "https://files.pythonhosted.org/packages/13/36/58e1f20fce3ed3c1a88e188df98a828727c6951db303fa811bc98cab39b5/fs.sshfs-0.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c05cbb7c4ea6e7a1c9a78c89c84c62ac",
"sha256": "0c7b7805ad9a7da6538283f8d9b1990564afe61b7fdb06b62a8b11a0f754d02f"
},
"downloads": -1,
"filename": "fs.sshfs-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "c05cbb7c4ea6e7a1c9a78c89c84c62ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11674,
"upload_time": "2017-08-31T18:00:41",
"url": "https://files.pythonhosted.org/packages/39/ac/68e4e57dccb81fde133efb0fe154206e708309e084ae6ab74adcc0cd56ca/fs.sshfs-0.5.0.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "b650096d65b293950c3e2b4206a9ea03",
"sha256": "955d71cb171be8cd5e0da1a94d8db312dbf100f5d2b00f4debfc56338b20a011"
},
"downloads": -1,
"filename": "fs.sshfs-0.5.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b650096d65b293950c3e2b4206a9ea03",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 13834,
"upload_time": "2017-09-13T19:28:27",
"url": "https://files.pythonhosted.org/packages/b7/9a/947bbb809dd2fc715d9142f8039e33a0f422e95e330fb39c004abeacd9cb/fs.sshfs-0.5.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "07d2791ac5a61c2b53c8bc1e6b5e9733",
"sha256": "59e68a8b86b91aed31f631e8a9a4d5027ee349d463f55a32283af3faf38642f8"
},
"downloads": -1,
"filename": "fs.sshfs-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "07d2791ac5a61c2b53c8bc1e6b5e9733",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11721,
"upload_time": "2017-09-13T19:28:28",
"url": "https://files.pythonhosted.org/packages/5e/9c/ab1378d203d508cf9796a936228f241b681778fbc6c57248b8bce391b130/fs.sshfs-0.5.1.tar.gz"
}
],
"0.5.2": [
{
"comment_text": "",
"digests": {
"md5": "36c09d0f9602da2df6a263a7ed1bceb6",
"sha256": "b5963c1a96af46e64d7c14d099b4880b61c6953ede07179dd21fc402df88ef37"
},
"downloads": -1,
"filename": "fs.sshfs-0.5.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "36c09d0f9602da2df6a263a7ed1bceb6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 13854,
"upload_time": "2017-09-18T14:01:04",
"url": "https://files.pythonhosted.org/packages/df/ab/55a584a65a061ace39551591e32af0fcb9466db8b8c4feefdfdfd9854e23/fs.sshfs-0.5.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7ad24ea2a1e0937c848722cd5568e1bb",
"sha256": "9aa026da31761e9fb2660e73078622b085fc2d0ba87dad18fdeef0b7d43dc36e"
},
"downloads": -1,
"filename": "fs.sshfs-0.5.2.tar.gz",
"has_sig": false,
"md5_digest": "7ad24ea2a1e0937c848722cd5568e1bb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11736,
"upload_time": "2017-09-18T14:01:05",
"url": "https://files.pythonhosted.org/packages/b6/1b/8e0c93910df9f4df98700015bbd71b1c455afd89d867b1f7b23bb3dedd70/fs.sshfs-0.5.2.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "0ae5f4bcdb63f3443d388b38f015b60e",
"sha256": "b9ff62f9beb95759733264f9151f69038b292886dd7f59d4f4d84a68cae0142b"
},
"downloads": -1,
"filename": "fs.sshfs-0.6.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0ae5f4bcdb63f3443d388b38f015b60e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 13963,
"upload_time": "2017-10-01T09:39:16",
"url": "https://files.pythonhosted.org/packages/16/b9/ba366b930c2ab8bfdcd4e27f5f3ae8fc91f644b616f54a4d5dd7171ea64d/fs.sshfs-0.6.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "49c2e607b84b166ad5e63b2c20b07674",
"sha256": "8f021a5eb7526e215e9f4f308395546a1a9412c4fd38ecb58cf0cf79fe272a62"
},
"downloads": -1,
"filename": "fs.sshfs-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "49c2e607b84b166ad5e63b2c20b07674",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11754,
"upload_time": "2017-10-01T09:39:17",
"url": "https://files.pythonhosted.org/packages/16/b5/0c4dd5769154ede52d9527fa8ad17f9ad226cbc6bbcc0914716a5c03332c/fs.sshfs-0.6.0.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "450d346295f43c5d56629d2c6ac8e6cb",
"sha256": "3dc8eaac1c9a1f071f747150d7ae4125b685b417dc97877aa86262aee0b14588"
},
"downloads": -1,
"filename": "fs.sshfs-0.6.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "450d346295f43c5d56629d2c6ac8e6cb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 23524,
"upload_time": "2017-10-02T10:27:59",
"url": "https://files.pythonhosted.org/packages/05/42/267033668f03e3bf4a2e3c82422fb481056fb3b8a2442fad33a2f95cedf5/fs.sshfs-0.6.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "47ff5f4663d82e85a3360e7662a7d366",
"sha256": "5e9f218a382c8a82c9f639d1c0e3a622ed005fed03923966621bafbfe0da12f4"
},
"downloads": -1,
"filename": "fs.sshfs-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "47ff5f4663d82e85a3360e7662a7d366",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11763,
"upload_time": "2017-10-02T10:28:02",
"url": "https://files.pythonhosted.org/packages/6b/29/1df93fbff3f73559b7283181c96218f640e33c07298042a669945d2380c5/fs.sshfs-0.6.1.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "1be51ce8efc61ebd984b7881c83409e9",
"sha256": "6ff995cebd30987a917fe229adc73356da0d6043767e57ef34adc5d96465ff64"
},
"downloads": -1,
"filename": "fs.sshfs-0.7.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1be51ce8efc61ebd984b7881c83409e9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 23769,
"upload_time": "2017-10-26T06:49:13",
"url": "https://files.pythonhosted.org/packages/4b/dc/4380db1662c6811526c7df96aded64d6eb9161812e767b2c8aa9d6794f36/fs.sshfs-0.7.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "eadd6cbcbcf233d8549bb88f4e34d8bc",
"sha256": "77c62f9e135890f9b24c834f7b5727e86517a2a8a21d2bfb0a8088c112b1ed74"
},
"downloads": -1,
"filename": "fs.sshfs-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "eadd6cbcbcf233d8549bb88f4e34d8bc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 11892,
"upload_time": "2017-10-26T06:49:14",
"url": "https://files.pythonhosted.org/packages/f0/69/67681541e7c697b3a4f770910874be22c9d7414ec7a1101327751eab649c/fs.sshfs-0.7.0.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "f9a5a581d75b87f046a0da894465bcfc",
"sha256": "80fce0ce2dc26d283106726b26ccba087251873260963ba466671f8f05508701"
},
"downloads": -1,
"filename": "fs.sshfs-0.7.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f9a5a581d75b87f046a0da894465bcfc",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 23856,
"upload_time": "2017-11-08T11:39:25",
"url": "https://files.pythonhosted.org/packages/1e/f5/6c45e1795a2be8466cecaf6c911731dfc7c1eea48dfb2b53aeeb3a5a604a/fs.sshfs-0.7.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "71559a209be0bcbeb01b1d4e660e61de",
"sha256": "4669ea1a0b796bc035045570c9efa29fb3cbe9e284e6a177730df6dd08ded340"
},
"downloads": -1,
"filename": "fs.sshfs-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "71559a209be0bcbeb01b1d4e660e61de",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 21639,
"upload_time": "2017-11-08T11:39:27",
"url": "https://files.pythonhosted.org/packages/46/3a/524e282d45936558012db7bf58616f90b278721d3cea3194e4d790f04610/fs.sshfs-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "",
"digests": {
"md5": "ffca11b43afef2f8b79a1810084e61e8",
"sha256": "0a62f63fe7f565e3718d711cad30496f3c38c6244d7d0e81feee60d459fc255e"
},
"downloads": -1,
"filename": "fs.sshfs-0.7.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ffca11b43afef2f8b79a1810084e61e8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 23951,
"upload_time": "2018-02-23T22:48:44",
"url": "https://files.pythonhosted.org/packages/f3/ae/75d585ce77d927b2502491175d3593d03e84f1a2c326ce2d2e8afc750009/fs.sshfs-0.7.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6960c7e485792c3129c75d0bd041809d",
"sha256": "d40808a32623f8120a613e48fda5a2c87189550bf8bd3869923673695248e5a4"
},
"downloads": -1,
"filename": "fs.sshfs-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "6960c7e485792c3129c75d0bd041809d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 22656,
"upload_time": "2018-02-23T22:48:47",
"url": "https://files.pythonhosted.org/packages/1a/54/c7a901aec9ec4f0d2dbc361030d5f1a9b9cccac7ff62ece357f2ecd7b93f/fs.sshfs-0.7.2.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "a8daf06c55893ce3651558e721f2d4e6",
"sha256": "1c2280dc9e7dd574055bce1fdcc8c2015ce7143766a05babd28913b0ec859a43"
},
"downloads": -1,
"filename": "fs.sshfs-0.8.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a8daf06c55893ce3651558e721f2d4e6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 23982,
"upload_time": "2018-03-07T20:42:10",
"url": "https://files.pythonhosted.org/packages/f9/e7/abbcdde9befc0f8811b644332cbdab0fa6ddbce6fd84bcbd4820593393d8/fs.sshfs-0.8.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4987a571e21c00e0fed56754df325474",
"sha256": "051c6830fd2b593390d33f49d3a848768a9b8342a69d18470a9c883d4aae81a9"
},
"downloads": -1,
"filename": "fs.sshfs-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "4987a571e21c00e0fed56754df325474",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*",
"size": 22581,
"upload_time": "2018-03-07T20:42:11",
"url": "https://files.pythonhosted.org/packages/4c/aa/5a5b92d2f1505179579f62e9b19ef20c2a68af615421725f96afb5b06bc5/fs.sshfs-0.8.0.tar.gz"
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "47be1bc50a540d9b796f98566d013533",
"sha256": "d9640fa91f11e8c7bb7357a238764298cac27d0c4c3a4266eb2a12ee6764b5f0"
},
"downloads": -1,
"filename": "fs.sshfs-0.9.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "47be1bc50a540d9b796f98566d013533",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 20867,
"upload_time": "2018-11-22T00:38:58",
"url": "https://files.pythonhosted.org/packages/12/fb/3b2d84beb237f631071081779deb1ea5965d2ecb1ee2bb72119494b733fb/fs.sshfs-0.9.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "012d903ab700c118da2872d76fd34513",
"sha256": "bc2b5b35fb9bd6f9b694ddff03fcf0ace1b40f149ab98eff959d22c47645fb03"
},
"downloads": -1,
"filename": "fs.sshfs-0.9.0.tar.gz",
"has_sig": false,
"md5_digest": "012d903ab700c118da2872d76fd34513",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
"size": 22810,
"upload_time": "2018-11-22T00:38:59",
"url": "https://files.pythonhosted.org/packages/50/05/128e2fdf8daee6970b3deb2c1c0c86812f148397e033d7f9894619653460/fs.sshfs-0.9.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "8459662347a46bc7d48799a555b9c1e9",
"sha256": "626d2b13fa9928824e7686b591df6cd194ef74effa92b67221560b08a5836953"
},
"downloads": -1,
"filename": "fs.sshfs-0.12.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8459662347a46bc7d48799a555b9c1e9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7",
"size": 21654,
"upload_time": "2019-10-21T08:55:53",
"url": "https://files.pythonhosted.org/packages/c3/44/d96ae18a8b38d68eb1f90cd0a1869a0302938e7ad0518e2a1106056f238e/fs.sshfs-0.12.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "04ce522340ebe9703e090d1e38820ab3",
"sha256": "109e1a3e5631fe2c43079e8c47e2a94ccf9e356cb3715932fe1bb7dc5c5b3229"
},
"downloads": -1,
"filename": "fs.sshfs-0.12.0.tar.gz",
"has_sig": false,
"md5_digest": "04ce522340ebe9703e090d1e38820ab3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7",
"size": 22595,
"upload_time": "2019-10-21T08:55:55",
"url": "https://files.pythonhosted.org/packages/94/bb/6228adb7d3fbf96b25352cc2706a93ced9c6cca941ad10064ea6635e2076/fs.sshfs-0.12.0.tar.gz"
}
]
}