mirror of
https://github.com/NohamR/gofilepy.git
synced 2026-01-10 08:18:18 +00:00
ea6c2d7ff9d5b5ac004736cc6f2b2dfe94de5f10
GofilePy
A Python library and CLI tool for Gofile.io. It supports the free API tiers, streaming uploads (low memory usage for large files), and script-friendly JSON output.
Features
- Streaming Uploads: Upload 100GB+ files without loading them into RAM.
- Folder Management: Upload to specific folders or create new ones automatically.
- Script Ready: JSON output mode for easy parsing in pipelines.
- Free Tier Support: Handles Guest accounts and Standard tokens.
- Progress Bar: Visual feedback for long uploads.
Installation
From Source
- Clone the repository.
- Install via pip:
pip install .
Usage (CLI)
Basic Upload
Upload a single file. A new public folder will be created automatically if you don't provide one.
gofilepy video.mp4
Upload with Token
Export your token (Get it from your Gofile Profile) to access your account storage.
export GOFILE_TOKEN="your_token_here"
gofilepy my_file.zip
Upload to a Specific Folder
If you have an existing folder ID:
gofilepy -f "folder-uuid-123" image.png
Group Upload (Single Folder)
Upload multiple files. The first file creates a folder, and the rest are uploaded into it.
gofilepy -s part1.rar part2.rar part3.rar
Scripting Mode (JSON Output)
Use --json to suppress human-readable text and output a JSON array.
gofilepy --json file.txt
# Output: [{"file": "file.txt", "status": "success", "downloadPage": "...", ...}]
Verbose Mode
Debug connection issues or API responses.
gofilepy -vv big_file.iso
Usage (Library)
You can use gofilepy in your own Python scripts.
from gofilepy import GofileClient
# Initialize (Token optional for guest upload)
client = GofileClient(token="your_token")
# Simple Callback for progress
def my_progress(bytes_read):
print(f"Read: {bytes_read} bytes")
# Upload (Streaming)
try:
response = client.upload_file(
file_path="/path/to/movie.mkv",
folder_id=None, # None = Create new folder
callback=my_progress
)
print(f"Uploaded! Download here: {response['downloadPage']}")
except Exception as e:
print(f"Error: {e}")
Building for Release
To build a .whl (Wheel) file and a source distribution:
- Install build tools:
pip install build twine - Run build:
python -m build - Artifacts will be in
dist/.
License
This project is licensed under the MIT License.
Languages
Python
100%