mediafire-dl is a script written in Python to automate the download of files from mediafire.com with a simple command-line interface.
Much of the code comes from gdown
It is necessary to have python3 and pip3
pip3 install git https://github.com/Juvenal-Yescas/mediafire-dl
$ # mediafire-dl mediafire_link_1
$ # mediafire-dl mediafire_link_1 mediafire_link_2 mediafire_link_3
import mediafire_dl
url = 'https://mediafire.com/xx/xx/file.zip'
output = 'file.zip'
mediafire_dl.download(url, output, quiet=False)
- Python3 - Python is an interpreted, high-level, general-purpose programming language.
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by :
- gdown
- openload-dl
- mediafire-dl