Metadata-Version: 2.1
Name: dropboxdrivefs
Version: 1.3
Summary: Dropbox implementation for fsspec module
Home-page: UNKNOWN
Author: Marine Chaput
Author-email: marine.chaput@hotmail.fr
License: BSD
Description: # Description
        
        This package is one of the implementation available in the fsspec module. It can be used with alone, or dask and intake by indicating the  protocol in the path file:
        ```
        dropbox://file_path
        ```
        
        It can also be used directly from the fsspec module to download and upload files in the github account.
        
        The upload part is using the dropbox API.
        
        The download part is using the dropbox API to create a temporary link and then used the already existing https implementation.
        Caching (see fsspec module) is available in that case.
        
        Documentation of the fsspec module : https://github.com/intake/filesystem_spec/blob/master/docs/source/features.rst
        
        ## Changelog - 1.3.O
        
        - feature: remove files and folders
        - feature: create folder
        - fix: double write the text in the file
        
        
        ## Install
        
        ```
        pip install dropboxdrivefs
        ```
        
        ## Thanks
        
        Thanks to martindurant and TomAugspurger for the help to developping this implementation
        see info about the development: https://github.com/intake/filesystem_spec/pull/207
        
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
