Tool for analysing your Google Drive.
It collects files metadata and shows you, what takes the most space.
Uses Google Drive REST API.
Current implementation is a Flask server with a website.
- Different handlers to make work with a Google Drive easier.
- Received information stored in database.
- If there were no changes in the user's Drive - tool uses saved data.
- File analysis shows disk structure and heavy/old files and folders.
Here is a good instruction how to set up all the prerequisites: Google Drive API Quickstart.
You need to have Python 3 and the Google Client Library installed:
pip install --upgrade google-api-python-client
Then install libraries from the requirements.txt:
pip install -r requirements.txt
The tool uses Google API credentials, so if you don't have one - you must make it here (create a project): Google Developer Console.
Since you have credentials, download it as json and put in your directory.
Then change the "credentials" string in app.py.
Now you can run the server by executing the app.py file as:
python app.py
Then all you need is to open http://127.0.0.1:5000/ in your browser.
All your thoughts you can send here: [email protected]