gofile

Module and tool to upload files to gofile.io
git clone https://code.alwayswait.ing/gofile
Log | Files | Refs

commit d960d40703f889ad562cab0758c0dc3460d77f9c
parent 43de0cc60c79b8ad72ca4a6b2cff732f9fa285b9
Author: archiveanon <>
Date:   Mon, 23 Jun 2025 15:12:42 +0000

Make --fast-link the default and allow use of --no-fast-link

Diffstat:
Msrc/gofile/cli.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/gofile/cli.py b/src/gofile/cli.py @@ -56,7 +56,8 @@ async def main(): parser.add_argument("--folder-id", type=str, help="Folder to upload to") parser.add_argument( "--fast-link", - action="store_true", + action=argparse.BooleanOptionalAction, + default=True, help="Uploads are queued in ascending size to get a download link as fast as possible", ) parser.add_argument(