{"id":23296934,"url":"https://github.com/lysagxra/gofiledownloader","last_synced_at":"2025-04-06T19:52:52.090Z","repository":{"id":268588378,"uuid":"904841949","full_name":"Lysagxra/GoFileDownloader","owner":"Lysagxra","description":"Efficient downloader for GoFile","archived":false,"fork":false,"pushed_at":"2025-01-25T15:02:50.000Z","size":188,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T01:51:48.330Z","etag":null,"topics":["bulk","bulk-download","bulk-downloader","concurrent-processing","downloader","gofile","gofile-downloader","parallel-processing","python","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Lysagxra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-17T16:49:08.000Z","updated_at":"2025-01-25T15:02:54.000Z","dependencies_parsed_at":"2024-12-17T18:21:14.023Z","dependency_job_id":"a754b3a8-5337-4847-9de4-4f4bf29ffa84","html_url":"https://github.com/Lysagxra/GoFileDownloader","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"7388b08f74d833ed4f85018dac83fe2f5a23c206"},"previous_names":["lysagxra/gofiledownloader"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FGoFileDownloader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FGoFileDownloader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FGoFileDownloader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FGoFileDownloader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lysagxra","download_url":"https://codeload.github.com/Lysagxra/GoFileDownloader/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247543609,"owners_count":20955865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bulk","bulk-download","bulk-downloader","concurrent-processing","downloader","gofile","gofile-downloader","parallel-processing","python","python3"],"created_at":"2024-12-20T07:15:44.268Z","updated_at":"2025-04-06T19:52:52.036Z","avatar_url":"https://github.com/Lysagxra.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoFile Downloader\n\n\u003e This script is a utility for downloading files from GoFile, supporting both\npublic and password-protected albums.\n\n![Demo](https://github.com/Lysagxra/GoFileDownloader/blob/45eb080468efce402d4e74e5d5b71dcf5b1eac79/misc/Demo.gif)\n\n## Features\n\n- Downloads multiple files from an album concurrently.\n- Supports [batch downloading](https://github.com/Lysagxra/GoFileDownloader?tab=readme-ov-file#batch-download) via a list of URLs.\n- Supports [downloading password-protected albums](https://github.com/Lysagxra/GoFileDownloader?tab=readme-ov-file#password-protected-album-download) by providing a password.\n- Progress indication during downloads.\n- Automatically creates a directory structure for organized storage.\n- Logs URLs that encounter errors for troubleshooting.\n\n## Dependencies\n\n- Python 3\n- `requests` - for HTTP requests\n- `rich` - for progress display in the terminal.\n\n## Directory Structure\n\n```\nproject-root/\n├── helpers/\n│ ├── managers/\n│ │ ├── live_manager.py      # Manages a real-time live display\n│ │ ├── log_manager.py       # Manages real-time log updates\n│ │ └── progress_manager.py  # Manages progress bars\n│ ├── config.py              # Manages constants and settings used across the project\n│ ├── download_utils.py      # Utilities for managing the download process\n│ ├── file_utils.py          # Utilities for managing file operations\n│ ├── general_utils.py       # Miscellaneous utility functions\n│ └── gofile_utils.py        # Utilities for checking GoFile status and URL validation\n├── downloader.py            # Module for initiating downloads from specified GoFile URLs\n├── main.py                  # Main script to run the downloader\n├── URLs.txt                 # Text file listing album URLs to be downloaded\n└── session_log.txt          # Log file for recording session details\n```\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/Lysagxra/GoFileDownloader.git\n```\n\n2. Navigate to the project directory:\n\n```bash\ncd GoFileDownloader\n```\n\n3. Install the required dependencies:\n\n```bash\npip install -r requirements.txt\n```\n\n## Single Album Download\n\nTo download a single album, you can use `downloader.py`, running the script with a valid album URL.\n\n### Usage\n\n```bash\npython3 downloader.py \u003cgofile_url\u003e\n```\n\n### Example\n\n```\npython3 downloader.py https://gofile.io/d/clgeTz\n```\n\n## Password-Protected Album Download\n\nTo download a password-protected album, you can use `downloader.py`, running the script with the album password.\n\n### Usage\n\n```bash\npython3 downloader.py \u003cgofile_url\u003e \u003cpassword\u003e\n```\n\n### Example\n\n```\npython3 downloader.py https://gofile.io/d/hXHGR1 TestPassword\n```\n\n## Batch Download\n\nTo batch download from multiple URLs, you can use the `main.py` script. This script reads URLs from a file named `URLs.txt` and downloads each one using the media downloader.\n\n### Usage\n\n1. Create a file named `URLs.txt` in the root of your project, listing each URL on a new line.\n\n- Example of `URLs.txt`:\n\n```\nhttps://gofile.io/d/clgeTz\nhttps://gofile.io/d/FrYeIy\nhttps://gofile.io/d/jLWdTZ\n```\n\n- Ensure that each URL is on its own line without any extra spaces.\n- You can add as many URLs as you need, following the same format.\n\n2. Run the batch download script:\n\n```\npython3 main.py\n```\n\n3. The downloaded files will be saved in the `Downloads` directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Fgofiledownloader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flysagxra%2Fgofiledownloader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Fgofiledownloader/lists"}