mirror of
https://github.com/NohamR/GoFileCLI.git
synced 2025-05-23 16:39:00 +00:00
GoFileCLI :
Upload or download a file to GoFile.
Install :
- Linux/MacOS :
curl -fsSL https://raw.githubusercontent.com/NohamR/GoFileCLI/main/scripts/install.sh | sudo bash
-
Windows : Grab latest release from releases
-
Build on your own system :
git clone https://github.com/NohamR/GoFileCLI.git
apt install ccache patchelf
pip install nuitka
pip install -r requirements.txt
python -m nuitka --onefile --assume-yes-for-downloads --output-dir=dist --static-libpython=no gofilecli.py
# dist/gofilecli.bin
Set env variables :
Get API token from https://gofile.io/myProfile. Copy folderId from a folder you own.
-
Set up a .env based on .env.example
-
Linux/MacOS :
export GOPLOAD_TOKEN="XXXXXXX"
export GOPLOAD_PRIVATE_PARENT_ID="UUID"
export GOPLOAD_ACCOUNT_ID="UUID"
- Windows :
setx GOPLOAD_TOKEN "XXXXXXX"
setx GOPLOAD_PRIVATE_PARENT_ID "UUID"
setx GOPLOAD_ACCOUNT_ID "UUID"
(Reluch Command Prompt to take effect)
Usage :
gofilecli -i 'file.txt' # to upload a file
gofilecli -f folder/ # to upload a folder
gofilecli -s # to get stats of your account
gofilecli -d https://gofile.io/d/XXXXX # to download a folder
To do :
- KeyboardInterrupt + Lost connexion
- error-rateLimit
- env via CLI
- finish README.md
- chiffrer & dechiffrer uploads
Description
Languages
Python
87.2%
Shell
12.8%