Metadata-Version: 2.4
Name: social-media-downloader-easy
Version: 0.0.3
Summary: Download videos from Tiktok, Instagram, Facebook and more, but made easy
License-File: LICENSE
Author: danialcala94
Author-email: danielalcalavalera@gmail.com
Requires-Python: >=3.10,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: file_downloader_easy (>=0.0.2,<1.0.0)
Requires-Dist: file_easy (>=0.0.1,<1.0.0)
Requires-Dist: httpx_easy (>=0.0.2,<1.0.0)
Requires-Dist: web_scraper_easy (>=0.0.2,<1.0.0)
Project-URL: Homepage, https://github.com/Implosiv3/social-media-downloader-easy
Project-URL: Issues, https://github.com/Implosiv3/social-media-downloader-easy/issues
Description-Content-Type: text/markdown

# Social Media Downloader, but made easy

A way to __download videos from Facebook, Tiktok, Instagram, and more__ social media platforms.

# Functionality
__Download videos__ from social media instantly by pasting the link.

# Usage
Here you have __some examples__:

1. Download from Instagram:
```
from social_media_downloader_easy.downloader import SocialMediaDownloader

async with SocialMediaDownloader(do_follow_redirects = True) as social_media_downloader:
    output_filename = f'test_files/instagram_reel.mp4'

    instagram_video_downloaded = await social_media_downloader.instagram.download_video(
        url = 'https://www.instagram.com/reel/DHtsmGHTOn4/',
        output_filename = output_filename
    )

    assert instagram_video_downloaded.filename == output_filename
```

Check the `tests` section to see more examples.
