Metadata-Version: 2.1
Name: GsuiteToMd
Version: 1.3.0
Summary: Tools to convert gsuite Documents to markdown.
Home-page: https://github.com/aurora-5r/GsuiteToMd
Author: Laurent Maumet
Author-email: laurent@aurora-5r.fr
License: UNKNOWN
Description: GsuiteToMd is a  library built on top of `PyDrive`_ that offers a simple way to convert Documents store in Google Drive in markdown.
        
        How to install
        ==============
        
        You can install GsuiteToMd with regular ``pip`` command.
        
        ::
        
            $ pip install GsuiteToMd
        
        
        Basic example
        ==============
        
        .. code:: bash
        
            python -m gstomd --folder_id "myfolderid"
        
        
        This command will extract all Google Documents files located in root folder and its subfolders as markdown documents. The folder tree will be created in a local folder named "gstomd_extract".
        
        For example, for this google drive content : 
        
        ::
        
            Mydrive
            ├── folder A (id="idofthefolderA")
                ├── gdoc1
                ├── gdoc2
                ├── folder B
                    ├── gdoc3
            ├── folder C
            ├── ...         
        
        
        The result will be
        ::
        
            .
            ├── gstomd_extract
                ├── folderA
                    ├── gdoc1
                        ├── gdoc1.md 
                        ├── images
                            ├── image1.png
                            ├── image2.png
                    ├── gdoc2
                        ├── gdoc2.md 
                        ├── images
                            ├── image1.png
                ├── folderB
                    ├── gdoc3
                        ├── gdoc3.md 
                        ├── images
                            ├── image1.png
        
        
        
        
        .. _`PyDrive`: https://github.com/gsuitedevs/PyDrive
Platform: UNKNOWN
Provides-Extra: tests
