Metadata-Version: 2.1
Name: swd
Version: 1.0.0
Summary: Simple Steam Workshop Downloader. Powered by MODSDOWNLOADER.COM
Home-page: https://github.com/DyadyushkaDyadya/swd
Author: modsdownloader
Author-email: nikitasss_2000@mail.ru
Project-URL: Documentation, https://github.com/DyadyushkaDyadya/swd#readme
Keywords: steam workshop downloader,swd,mods downloader,api
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests (>=2.25.1)

# Steam Workshop Downloader
Simple Steam Workshop Downloader. Powered by MODSDOWNLOADER.COM

# Installing
```py
pip install swd
```

# Example using
```py
from swd import SteamWorkshopItem
item = SteamWorkshopItem('https://steamcommunity.com/sharedfiles/filedetails/?id=2971831945')

if item.status == 1:
    print(f"ID: {item.id}")
    print(f"Game: {item.game}")
    print(f"Title: {item.title}")
    print(f"Image: {item.image}")
    print(f"Size: {item.size}")
    print(f"Download: {item.download}")
    print(f"Steam: {item.steam}")
else:
    print("Request failed")
```
