Metadata-Version: 2.1
Name: fsspec
Version: 0.5.1
Summary: File-system specification
Home-page: http://github.com/intake/filesystem_spec
Maintainer: Martin Durant
Maintainer-email: mdurant@anaconda.com
License: BSD
Description: # filesystem_spec
        
        [![Build Status](https://travis-ci.org/intake/filesystem_spec.svg?branch=master)](https://travis-ci.org/martindurant/filesystem_spec)
        [![Docs](https://readthedocs.org/projects/filesystem-spec/badge/?version=latest)](https://filesystem-spec.readthedocs.io/en/latest/?badge=latest)
        
        A specification for pythonic filesystems.
        
        ## Install
        
        ```bash
        pip install fsspec
        ```
        or
        ```bash
        conda install -c conda-forge fsspec
        ```
        
        ## Purpose
        
        To produce a template or specification for a file-system interface, that specific implementations should follow,
        so that applications making use of them can rely on a common behaviour and not have to worry about the specific
        internal implementation decisions with any given backend. Many such implementations are included in this package,
        or in sister projects such as `s3fs` and `gcsfs`.
        
        In addition, if this is well-designed, then additional functionality, such as a key-value store or FUSE
        mounting of the file-system implementation may be available for all implementations "for free".
        
        ## Documentation
        
        Please refer to [RTD](https://filesystem-spec.readthedocs.io/en/latest/?badge=latest)
        
Keywords: file
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
