{ "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 :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Filesystems", "Topic :: System :: Networking" ], "description": "``fs.smbfs``\n============\n\n|Source| |PyPI| |Travis| |Codecov| |Codacy| |Format| |License|\n\n.. |Codacy| image:: https://img.shields.io/codacy/grade/82d40d17b4734692a9e70c5af5cc2a5b/master.svg?style=flat-square&maxAge=300\n :target: https://www.codacy.com/app/althonos/fs.smbfs/dashboard\n\n.. |Travis| image:: https://img.shields.io/travis/althonos/fs.smbfs/master.svg?style=flat-square&maxAge=300\n :target: https://travis-ci.org/althonos/fs.smbfs/branches\n\n.. |Codecov| image:: https://img.shields.io/codecov/c/github/althonos/fs.smbfs/master.svg?style=flat-square&maxAge=300\n :target: https://codecov.io/gh/althonos/fs.smbfs\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/fs.smbfs.svg?style=flat-square&maxAge=300\n :target: https://pypi.python.org/pypi/fs.smbfs\n\n.. |Format| image:: https://img.shields.io/pypi/format/fs.smbfs.svg?style=flat-square&maxAge=300\n :target: https://pypi.python.org/pypi/fs.smbfs\n\n.. |Versions| image:: https://img.shields.io/pypi/pyversions/fs.smbfs.svg?style=flat-square&maxAge=300\n :target: https://travis-ci.org/althonos/fs.smbfs\n\n.. |License| image:: https://img.shields.io/pypi/l/fs.smbfs.svg?style=flat-square&maxAge=300\n :target: https://choosealicense.com/licenses/mit/\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.smbfs\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| **pysmb** | |PyPI pysmb| | |Source pysmb| | |License pysmb| |\n+-------------------+-----------------+-------------------+--------------------+\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 pysmb| image:: https://img.shields.io/pypi/l/pysmb.svg?maxAge=300&style=flat-square\n :target: https://choosealicense.com/licenses/zlib/\n\n.. |Source pysmb| image:: https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=300&style=flat-square\n :target: https://github.com/miketeo/pysmb\n\n.. |PyPI pysmb| image:: https://img.shields.io/pypi/v/pysmb.svg?maxAge=300&style=flat-square\n :target: https://pypi.python.org/pypi/pysmb\n\n\nInstallation\n------------\n\nInstall directly from PyPI, using `pip `_ ::\n\n pip install fs.smbfs\n\n\nUsage\n-----\n\nOpener\n''''''\n\nUse ``fs.open_fs`` to open a filesystem with an SMB\n`FS URL `_:\n\n.. code:: python\n\n import fs\n smb_fs = fs.open_fs('smb://username:password@SAMBAHOSTNAME:port/share')\n\nThe opener can use either an IPv4 address or a NetBIOS hostname, using the\n`NetBIOS name service `_\nto find the other token.\n\nThe following parameters can be passed as URL parameters: ``timeout``,\n``name-port``, ``direct-tcp``.\n\n\nConstructor\n'''''''''''\n\n.. code:: python\n\n import fs.smbfs\n smb_fs = fs.smbfs.SMBFS(\n host, username='guest', passwd='', timeout=15,\n port=139, name_port=137, direct_tcp=False\n )\n\nwith each argument explained below:\n\n``host``\n the name or IP address of the SMB server\n``user``\n the username to connect with, defaults to `'guest'` for anonymous connection.\n``passwd``\n an optional password, defaults to `''` for anonymous connection.\n``timeout``\n the timeout, in seconds, for NetBIOS and TCP requests.\n``port``\n the port the SMB server is listening on.\n``naming_port``\n the port the NetBIOS naming service is listening on\n``direct_tcp``\n set to `True` if the server is accessible directly through TCP, leave to\n `False` for maximum compatibility\n\n\nOnce created, the ``SMBFS`` filesystem behaves like any other filesystem\n(see the `Pyfilesystem2 documentation `_),\nexcept if it was open in the root directory of the server, in which case the\nroot directory of the ``SMBFS`` instance will be read-only (since SMB clients\ncannot create new shares).\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\nSee also\n--------\n\n* `fs `_, the core Pyfilesystem2 library\n* `fs.archive `_, enhanced archive filesystems\n for Pyfilesystem2\n* `fs.sshfs `_, Pyfilesystem2 over SSH\n using paramiko\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.smbfs", "keywords": "filesystem,Pyfilesystem2,smb,cifs,samba", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "fs.smbfs", "package_url": "https://pypi.org/project/fs.smbfs/", "platform": "any", "project_url": "https://pypi.org/project/fs.smbfs/", "project_urls": { "Homepage": "https://github.com/althonos/fs.smbfs" }, "release_url": "https://pypi.org/project/fs.smbfs/0.5.2/", "requires_dist": [ "fs (~=2.2)", "pysmb (!=1.1.26,~=1.1.22)", "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) ; extra == 'test'", "semantic-version (~=2.6) ; extra == 'test'", "mock (~=2.0) ; (python_version < \"3.4\") and extra == 'test'" ], "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "summary": "Pyfilesystem2 over SMB using pysmb", "version": "0.5.2" }, "last_serial": 4854342, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "f5d4708bee879422a56dd195c602b872", "sha256": "ff8f460dea16a037496432eaf1432f4d18c58df9d98f76233a167c3526abb936" }, "downloads": -1, "filename": "fs.smbfs-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5d4708bee879422a56dd195c602b872", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 12810, "upload_time": "2017-08-17T17:51:07", "url": "https://files.pythonhosted.org/packages/2a/59/378b02ff664a9570820e4a00a68575c45eda84915cd1cda2b0b17ab2f594/fs.smbfs-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "515aa3e181fdf032159ebee4cb874ea1", "sha256": "b016ba251202f9d8a1b4652a3bc5016853c06073409f14527b67e745093ff466" }, "downloads": -1, "filename": "fs.smbfs-0.1.0.tar.gz", "has_sig": false, "md5_digest": "515aa3e181fdf032159ebee4cb874ea1", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 10121, "upload_time": "2017-08-17T17:51:08", "url": "https://files.pythonhosted.org/packages/39/b7/85014b6ac529323ad5134052dbb3c3c20d403ea0303759ddf293bf730498/fs.smbfs-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "5d7a163fb1d236376254b051e5b5620d", "sha256": "1fc120fd608ecb34a3f9f93b004a2a67320ee662dc03a54a679cea19d019a684" }, "downloads": -1, "filename": "fs.smbfs-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d7a163fb1d236376254b051e5b5620d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13483, "upload_time": "2017-08-29T17:02:11", "url": "https://files.pythonhosted.org/packages/02/04/4174cb9d2ddafc0fa593fce0a8745f78865c714e90b375673edecc701785/fs.smbfs-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb60355e52fa019ff146e1aa5c88008e", "sha256": "09e1968dd69f46ec1d7dd8ffd54e7d0dad30b23177a3140af84de94fae2fffeb" }, "downloads": -1, "filename": "fs.smbfs-0.2.0.tar.gz", "has_sig": false, "md5_digest": "fb60355e52fa019ff146e1aa5c88008e", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 10650, "upload_time": "2017-08-29T17:02:12", "url": "https://files.pythonhosted.org/packages/b4/80/7f7f3739f8823f436611c7f3dcb589d758718823511068c5fe3ff872f2b0/fs.smbfs-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "53a19d84d4e8dde4dfecad24560158df", "sha256": "78561b8f6f404fa7f50b8a66a0894cafdb42205c2e28921286afd658f75d9587" }, "downloads": -1, "filename": "fs.smbfs-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53a19d84d4e8dde4dfecad24560158df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13537, "upload_time": "2017-09-10T18:54:11", "url": "https://files.pythonhosted.org/packages/43/89/1257eab38a51b342f59b72e93f94a0c6f5a8687e6493f1bf0f9ee9c041ff/fs.smbfs-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd5f5f29f26211b168d897a8a42d69d7", "sha256": "868add8d446b7f94c58bb3a973aecbdfaaa32bdff19e89fad4711e265ab425d4" }, "downloads": -1, "filename": "fs.smbfs-0.2.1.tar.gz", "has_sig": false, "md5_digest": "dd5f5f29f26211b168d897a8a42d69d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 10666, "upload_time": "2017-09-10T18:54:13", "url": "https://files.pythonhosted.org/packages/93/26/a6dbe596b64bc7d4fe19924fe2cb4725ce87c04ec08adfb8f034536010c9/fs.smbfs-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "1faeb5c9641a564b26c9f792bebdac32", "sha256": "83fd4134d8ccf3d6430304e19c7da787a19cac859c281d66587d7ccf24c4b42b" }, "downloads": -1, "filename": "fs.smbfs-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1faeb5c9641a564b26c9f792bebdac32", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13555, "upload_time": "2017-09-13T19:38:16", "url": "https://files.pythonhosted.org/packages/8a/5e/68f7ff8e48bdc0cf638cea7044e92f08b16fe46b4efbd96f5f706872db20/fs.smbfs-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ddfba5d91dfb0e2714359af61388693", "sha256": "ca7e3d8a7a2d402b24af8d6a18111445920c2eea28c20d4bf5cd4187aede66c5" }, "downloads": -1, "filename": "fs.smbfs-0.2.2.tar.gz", "has_sig": false, "md5_digest": "5ddfba5d91dfb0e2714359af61388693", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 10683, "upload_time": "2017-09-13T19:38:18", "url": "https://files.pythonhosted.org/packages/61/db/8a8f6c1204ab902affaf9904daa76324f5390271803b1528e0ff16072008/fs.smbfs-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "1f478deb39823ca52882b9ba4ecceb90", "sha256": "361020d3b43716c6ac6acacb0bd573fb451691c209699713450aee3b0849e464" }, "downloads": -1, "filename": "fs.smbfs-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f478deb39823ca52882b9ba4ecceb90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13550, "upload_time": "2017-09-18T12:33:47", "url": "https://files.pythonhosted.org/packages/91/3f/d99ec13a42e6b26d86c425ff9f2bd0307dbf94b48ea000df59ef56216e30/fs.smbfs-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67c4f025e0d53ec0ad992df8d47b9164", "sha256": "3567fc7704cccb4aa0837bbdc70f1eedf81759aebdb1d3ece895d7db56482897" }, "downloads": -1, "filename": "fs.smbfs-0.2.3.tar.gz", "has_sig": false, "md5_digest": "67c4f025e0d53ec0ad992df8d47b9164", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 10670, "upload_time": "2017-09-18T12:33:49", "url": "https://files.pythonhosted.org/packages/6e/e2/c4bc6f18ffe2c67eef835b768a99ecb37e3c9dd20ce3033e3eb997ed369e/fs.smbfs-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "1cac1d93885f71954895b4acd75abc03", "sha256": "b56cc4fe03496b39892a1eb7b58305c2f2b6d6682f0fa58e2cb5c929c43e6297" }, "downloads": -1, "filename": "fs.smbfs-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1cac1d93885f71954895b4acd75abc03", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13587, "upload_time": "2017-10-19T13:26:03", "url": "https://files.pythonhosted.org/packages/54/5f/fa53b05d2b7afd283d43674adb88d710363a7c5cecee6beffb607155ed38/fs.smbfs-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efebda3e7cd33d1b990256fea05c4db6", "sha256": "702affae49eec0a42a697fbed542152e8479b308c3be4e4dc46ce510f72ff936" }, "downloads": -1, "filename": "fs.smbfs-0.2.4.tar.gz", "has_sig": false, "md5_digest": "efebda3e7cd33d1b990256fea05c4db6", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 10709, "upload_time": "2017-10-19T13:26:04", "url": "https://files.pythonhosted.org/packages/93/47/a746c8b50abdb0b9c87eb575ed45eaba0f095f2a2c5c2da5e4f0eea8ef79/fs.smbfs-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "c83a2a295674626d5875fe990cf0ac99", "sha256": "9c302780c04b4a9e0c4a687c730039e7a0cc3810c44d4dfb07c0671b2c08d7a2" }, "downloads": -1, "filename": "fs.smbfs-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c83a2a295674626d5875fe990cf0ac99", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 15400, "upload_time": "2017-10-23T07:02:08", "url": "https://files.pythonhosted.org/packages/e3/ff/ae4083aaf9b0e3026e49c42243562150719f33dc7e118b9e36f969d7f9f0/fs.smbfs-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c13f0632a0a6ce0630d0a81de3b5c0a4", "sha256": "e395bf7fd643b4ee289ff5f9b8aa525ff89c2a030760688f49474aa27cc1c332" }, "downloads": -1, "filename": "fs.smbfs-0.3.0.tar.gz", "has_sig": false, "md5_digest": "c13f0632a0a6ce0630d0a81de3b5c0a4", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 11507, "upload_time": "2017-10-23T07:02:10", "url": "https://files.pythonhosted.org/packages/2d/0f/090f4b224f2334124b5e0452ffc8c1d70bbe66f770b31fdccc8369af4379/fs.smbfs-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "4a2b0e93eba54efa8db82516688de244", "sha256": "4413c3bb12b01b9333d49467ba1473330d3e1d31f0523d9a8bb5ecaff7fab354" }, "downloads": -1, "filename": "fs.smbfs-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4a2b0e93eba54efa8db82516688de244", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 15424, "upload_time": "2017-12-13T00:55:32", "url": "https://files.pythonhosted.org/packages/e1/96/cff2014aeed3b3be0af3a9a66c4ef35d85a214df901ee3e48d420a36aa0d/fs.smbfs-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8785a1505f520975cb496b222197ee54", "sha256": "8c1b4a76e96edc3e059a1ef8509d7b8d2ef69159c747a3867ef9db876bf75233" }, "downloads": -1, "filename": "fs.smbfs-0.3.1.tar.gz", "has_sig": false, "md5_digest": "8785a1505f520975cb496b222197ee54", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 11545, "upload_time": "2017-12-13T00:55:34", "url": "https://files.pythonhosted.org/packages/16/7b/9123d29bec9b12b83d4e1b41e80887ace3b01197f39bc7b01ecc76397076/fs.smbfs-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "d87c1e65c5dac240a213fa1148a42821", "sha256": "817f9121da18aa939ade0c88202e6d44dcde43f50c93733525727fd9f8bbb2a1" }, "downloads": -1, "filename": "fs.smbfs-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d87c1e65c5dac240a213fa1148a42821", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 15448, "upload_time": "2017-12-13T01:10:57", "url": "https://files.pythonhosted.org/packages/a1/59/a82c3d5d4e3205b0e2d348a84425c30b4a7069b83c3f6692cc10c683cd88/fs.smbfs-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8392acc1e2959fbf96ea37cfecc28f89", "sha256": "a89c04d234dce4055bbb577c1565b661b3168934e57ae93e3ef01fa71727ab31" }, "downloads": -1, "filename": "fs.smbfs-0.3.2.tar.gz", "has_sig": false, "md5_digest": "8392acc1e2959fbf96ea37cfecc28f89", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 11563, "upload_time": "2017-12-13T01:10:59", "url": "https://files.pythonhosted.org/packages/aa/a8/5f31d787c984360b71c6b1747c083135cd5ab9ccc148952c21d5b494fa53/fs.smbfs-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "fe237a7258df234cc360f49b6c37559d", "sha256": "90c3320a6cd5e4a938d424ba339dbbc03e9ee1111dadda2e6b144cbb3a96967e" }, "downloads": -1, "filename": "fs.smbfs-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe237a7258df234cc360f49b6c37559d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 15474, "upload_time": "2018-02-24T01:22:42", "url": "https://files.pythonhosted.org/packages/91/9b/a55459f31378a73f00d5768fbe1865bb02e3bdcfdba3a6ea4057b19f4dcd/fs.smbfs-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54512a8b505b82793b470b3b8cb8e416", "sha256": "27eee9f4e1f5fbf988f7f61514fee0d422cbea375367b8517b8f843d93bb5f1a" }, "downloads": -1, "filename": "fs.smbfs-0.3.3.tar.gz", "has_sig": false, "md5_digest": "54512a8b505b82793b470b3b8cb8e416", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 11573, "upload_time": "2018-02-24T01:22:44", "url": "https://files.pythonhosted.org/packages/47/d6/69158c5c40aacd39ea78f4d068452e464cbf833df595b63885116324926e/fs.smbfs-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "b618e49555d681f1c84476c349734214", "sha256": "0ca9ec30ae917221d2a45432e2fea2c26c66edbbfa79d7284995b9425346eaf0" }, "downloads": -1, "filename": "fs.smbfs-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b618e49555d681f1c84476c349734214", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13046, "upload_time": "2018-08-13T17:21:06", "url": "https://files.pythonhosted.org/packages/af/5f/78074ec75bb4c0da6970f98e2d07c780cc75cff8d36b3300f0abd81d288a/fs.smbfs-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23272dbd75ad8cadc07bcfa99577e5d6", "sha256": "8038b1a4df6b52d85ac45d2186a62d1fc5ec7666bd8baa097c203949e0f54688" }, "downloads": -1, "filename": "fs.smbfs-0.4.0.tar.gz", "has_sig": false, "md5_digest": "23272dbd75ad8cadc07bcfa99577e5d6", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 11969, "upload_time": "2018-08-13T17:21:08", "url": "https://files.pythonhosted.org/packages/bf/ee/cde13cbe4e455f3436caa8c5bc426a8ff6d6007d771193b2da5b243bb5bb/fs.smbfs-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "87ef9759a1b1da8a16f08c5ca02dab22", "sha256": "b612814beacea063995f60391d7669a8edb1ea5f89c55f52d0a8d55ed41966b2" }, "downloads": -1, "filename": "fs.smbfs-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87ef9759a1b1da8a16f08c5ca02dab22", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13098, "upload_time": "2019-01-05T23:38:41", "url": "https://files.pythonhosted.org/packages/a5/bd/52f9b216064a0a5c410c820894a56655b9bdde356dbaf102b3e4fc9e8ab0/fs.smbfs-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5c375f0d681720419fd2c6cdf020aa2", "sha256": "ce8ee82248fcfa6c17ff1104f2e26075d405915d53c7582464a1cd98760e6a18" }, "downloads": -1, "filename": "fs.smbfs-0.5.0.tar.gz", "has_sig": false, "md5_digest": "b5c375f0d681720419fd2c6cdf020aa2", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 12191, "upload_time": "2019-01-05T23:38:42", "url": "https://files.pythonhosted.org/packages/96/07/e933140bec9498d3474e8a7687c02832b25a554a45932c2b926cbbe6816c/fs.smbfs-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "477255a771aa5dd2b5b214d6550bf1e2", "sha256": "40fe4df4ddd636cb23b13919d2ccb5b2715a08e2565e4f4e62ec1465728b7b1c" }, "downloads": -1, "filename": "fs.smbfs-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "477255a771aa5dd2b5b214d6550bf1e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13103, "upload_time": "2019-02-11T16:54:24", "url": "https://files.pythonhosted.org/packages/ef/80/445fdeec849a612fc111267268fe52161abaff34a64324081f1ddab7456b/fs.smbfs-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6573494479b596a33dd21d538cdda22b", "sha256": "118d55d52c45a674c4ae5ee22b72139e669c51eccbc1938d2dacbadd519268db" }, "downloads": -1, "filename": "fs.smbfs-0.5.1.tar.gz", "has_sig": false, "md5_digest": "6573494479b596a33dd21d538cdda22b", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 12844, "upload_time": "2019-02-11T16:54:25", "url": "https://files.pythonhosted.org/packages/21/bd/4a9b0e1e89a1e57537ae0cad6bf9499d04a3e614c0faf12ad34a6d6818c7/fs.smbfs-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "0ee2ece2d06ad200deea9b927e51b2ae", "sha256": "c701f249f90bcdbea16e55236cb0823fda602b619daf8e2ad5ea98906d8e7f50" }, "downloads": -1, "filename": "fs.smbfs-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ee2ece2d06ad200deea9b927e51b2ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13097, "upload_time": "2019-02-22T12:34:58", "url": "https://files.pythonhosted.org/packages/5e/a3/9d0a14122ca86af0e06365efe9a5aade79baa2e0bca267c379af317e5cbc/fs.smbfs-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27e915928410d528dd00367a11f84cd7", "sha256": "a7a8942cd8af56d6d47aace93975da0e7353b50d14d58fa329bd00ceb4a763db" }, "downloads": -1, "filename": "fs.smbfs-0.5.2.tar.gz", "has_sig": false, "md5_digest": "27e915928410d528dd00367a11f84cd7", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 12825, "upload_time": "2019-02-22T12:34:59", "url": "https://files.pythonhosted.org/packages/d6/a6/325255c8bd4b796b7e613a38b51f35f9b82647fcce3ee8ee7daf7b4b8c4a/fs.smbfs-0.5.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0ee2ece2d06ad200deea9b927e51b2ae", "sha256": "c701f249f90bcdbea16e55236cb0823fda602b619daf8e2ad5ea98906d8e7f50" }, "downloads": -1, "filename": "fs.smbfs-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ee2ece2d06ad200deea9b927e51b2ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 13097, "upload_time": "2019-02-22T12:34:58", "url": "https://files.pythonhosted.org/packages/5e/a3/9d0a14122ca86af0e06365efe9a5aade79baa2e0bca267c379af317e5cbc/fs.smbfs-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27e915928410d528dd00367a11f84cd7", "sha256": "a7a8942cd8af56d6d47aace93975da0e7353b50d14d58fa329bd00ceb4a763db" }, "downloads": -1, "filename": "fs.smbfs-0.5.2.tar.gz", "has_sig": false, "md5_digest": "27e915928410d528dd00367a11f84cd7", "packagetype": "sdist", "python_version": "source", "requires_python": ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*", "size": 12825, "upload_time": "2019-02-22T12:34:59", "url": "https://files.pythonhosted.org/packages/d6/a6/325255c8bd4b796b7e613a38b51f35f9b82647fcce3ee8ee7daf7b4b8c4a/fs.smbfs-0.5.2.tar.gz" } ] }