Metadata-Version: 2.4
Name: mediafiredlpy
Version: 0.1.2
Summary: A simple Python module to extract Mediafire download links
Author-email: lasith ruwantha Amarwash <lalnishshanka3@gmail.com>
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-Expression: MIT
License-File: LICENSE
Requires-Dist: beautifulsoup4==4.14.3
Requires-Dist: requests==2.32.5

# mediafiredlpy

A simple python module to extract **MediaFire direct download link** and **file size**.detalls Give You This Module

## ✨ Features
- Get direct download URL
- Get file size
- Easy to use
- fast usage

## 🛠️ Usage 
```python
from mediafiredlpy import mf

url = "https://www.mediafire.com/file/2i79lqfyntphq4m/BAT.apk/file"

result = mf(url)

print(result +'\n\n')
print(result['data']['download'])

#or  import 

import mediafiredlpy

url = "https://www.mediafire.com/file/2i79lqfyntphq4m/BAT.apk/file"

result =mediafiredlpy.mf(url)

print(result+'\n\n')
print(result['data']['download'])

```
----
## Sample result:-
```ts
{                                                     status: 'true',
  data: {
    download: 'https://download2284.mediafire.com/nkvs7ouadgkgMBXBx1yovQ6yqL-kWX4OigWbpn38a8edX-vyIpb7qjbwXHwlvhdimTwM2OBgMJKXZ0tCj0PHa8ZZCzx3tS806yRxwy0i4gZaxe8ex5lu77D4_gYxJVewt0-rg9NlaHia6eivA88wI490_GpPnwp6WDmLkPZCuhYKXQE/2i79lqfyntphq4m/BAT.apk',
    fileSize: '5.76MB',
    uploadInfo: 'This file was uploaded from Sri Lanka on August 10, 2025 at 10:22 PM',
    'date': 'August 10, 2025'
  }
}
```
## 📦 Installation

```bash
pip install mediafiredlpy
```
