gitextract_fmy0tce_/ ├── .gitignore ├── DriveDownloader/ │ ├── __init__.py │ ├── downloader.py │ ├── netdrives/ │ │ ├── __init__.py │ │ ├── basedrive.py │ │ ├── build.py │ │ ├── directlink.py │ │ ├── dropbox.py │ │ ├── googledrive.py │ │ ├── onedrive.py │ │ ├── settings.yaml │ │ └── sharepoint.py │ ├── pydrive2/ │ │ ├── __init__.py │ │ ├── apiattr.py │ │ ├── auth.py │ │ ├── drive.py │ │ ├── files.py │ │ ├── fs/ │ │ │ ├── __init__.py │ │ │ ├── spec.py │ │ │ └── utils.py │ │ └── settings.py │ └── utils/ │ ├── __init__.py │ ├── misc.py │ └── multithread.py ├── LICENSE ├── README.md ├── README_CN.md ├── requirements.txt ├── setup.py └── tests/ ├── run.sh └── test.list