Skip to main content

MediafireDL is an automation tool to download files from mediafire without having to do any extra steps.

Project description

MediafireDL

MediafireDL is an automation tool to download files from mediafire without having to do any extra steps, which allows you to retrieve data from any mediafire link.

I designed this to make it work on a python console application, multi threading is not supported for now, but my goal is to make it easy to download and show progress trough GUI frameworks like kivy or pyqt5.

You can use the following file as a test, however it will be removed soon.
Go to test file.

What can it do?

MediafireDL allows you to:

  • Get file size.
  • Get file name.
  • Get true file link.
  • Download a file.
  • Bulk download files.

directly from a single URL.

Requirements

This module uses beautifulsoup4 and requests, if you do not have these modules installed, they will install automatically.

Installation

pip install mediafiredl

Importing

from mediafiredl import MediafireDL

Available functions

from mediafiredl import MediafireDL as MF

url = "https://www.mediafire.com/file/ipnyzofjcwri357/test-10mb.bin/file"

# Returns a string with the file name, including its extension.
file_name = MF.GetName(url)

# Returns true file link
file_link = MF.GetFileLink(url)

# Returns file size in bytes
file_size = MF.GetFileSize(url)

# Returns the conversion from bytes to megabytes
file_size_mb = MF.AsMegabytes(file_size)

# Downloads a file to local directory and returns its download path. A second argument can be used to assign the output directory, it must not end with a "\".
file_result = MF.Download(url)
# Custom output example:
file_result = MF.Download(url, "C:\\Users\\User\\Desktop")
#or
file_result = MF.Download(url, output="C:\\Users\\User\\Desktop")


# Bulk file downloads
bulk_urls = [
    "url1",
    "url2",
    "url3",
    "url4"
]

# Displays how many files you will be downloading and the total size.
# After displaying this information, it will start downloading the files one by one.
MF.BulkDownload(bulk_urls)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mediafiredl-0.0.2.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

mediafiredl-0.0.2-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page