PROJECT_ROOT
├── data # Data
├── Sharely # Project Package
│ ├── download_file.py #
│ ├── file_information.py #
│ ├── share_file.py #
│ ├── update_cell_color.py #
│ └── handle_csv.py #
├── log # STD output or Error output stream
└── venv # pip vertial env
python --version 3.10.1
pip3 install virtualenv
virtualenv venv --python=python3.10.1
source venv/bin/activate
pip install -r requirements.txt
deactivate
rm -rf venv # remove the venv
{
"installed": {
"client_id": "",
"project_id": "",
"auth_uri": "",
"token_uri": "",
"auth_provider_x509_cert_url": "",
"client_secret": "",
"redirect_uris": [
"http://localhost"
]
}
}
{
"token": "",
"refresh_token": "",
"token_uri": "",
"client_id": "",
"client_secret": "",
"scopes": [
""
],
"expiry": ""
}
Released under MIT by @RobinHsieh
This software can be modified and reused without restriction. The original license must be included with any copies of this software. If a significant portion of the source code is used, please provide a link back to this repository.