Metadata-Version: 2.1
Name: WorkshopMetadataExtract
Version: 1.0.6
Summary: WME - Is a Python module that allows you to easily fetch and download workshop files from the Steam Workshop. This module makes use of the Steam API to retrieve information about workshop files, including their creators, file sizes, file URLs, and more. You can also download the workshop files and save them to your local machine using this module.
Home-page: https://github.com/IaVashik/WorkshopMetadataExtract
Author: laVashik
Author-email: lavash.assistant@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

<div align="center">
<img src="https://i.ibb.co/hYvQdk9/logo-back.png" alt="Logo" >

<h2 align="center">
    Discover. Download. Dominate! :D
</h2>
</div>

## Description:
Workshop Metadata Extract (WME) is a Python library that allows you to extract metadata from Steam Workshop files. It provides a convenient way to retrieve various details about workshop files such as the creator's information, file size, creation and update times, and more.


## Installation
Install the current version with PyPI:
```
pip install WorkshopMetadataExtract
```


## Usage
To use WME, follow these steps:

1. Import the WorkshopMetadataExtract module and set your Steam API key:

```python
import WorkshopMetadataExtract as WME

WME.set_api_key("YOUR STEAM API KEY")
```

2. Create a WorkshopItem object with the workshop file URL:

```python
map_item = WME.WorkshopItem("WORKSHOP_FILE_URL")
```

3. Retrieve and work with the workshop file metadata. For example, to download the map:

```python
map_item.download_file("path_to_save/")
```

## Functions and Descriptions
- `WorkshopItem.get_fileid()`: Returns the file ID as an integer.
- `WorkshopItem.get_creator_id()`: Returns the creator's ID as an integer.
- `WorkshopItem.get_creator_url()`: Returns the URL of the creator's Steam profile.
- `WorkshopItem.get_creator_name()`: Returns the creator's name.
- `WorkshopItem.get_creator_realname()`: Returns the creator's real name if available, otherwise returns None.
- `WorkshopItem.get_creator_avatar()`: Returns the URL of the creator's avatar image if available, otherwise returns None.
- `WorkshopItem.get_appid()`: Returns the Steam App ID associated with the workshop file as an integer.
- `WorkshopItem.get_file_size()`: Returns the file size in bytes as an integer.
- `WorkshopItem.get_filename()`: Returns the filename of the workshop file.
- `WorkshopItem.get_file_url()`: Returns the URL to download the workshop file, or None if the file URL is not available.
- `WorkshopItem.get_file_content()`: Returns the content of the workshop file as bytes, downloading it if necessary, or None if the file URL is not available.
- `WorkshopItem.download_file(path)`: Downloads the workshop file to the specified path and returns True if successful, False otherwise.
> **Note**
> The path must end with a folder and a symbol "/": WorkshopItem.download_file("example/")
- `WorkshopItem.get_preview_url()`: Returns the URL of the workshop file's preview image, or None if the preview URL is not available.
- `WorkshopItem.get_title()`: Returns the title of the workshop file.
- `WorkshopItem.get_description()`: Returns the description of the workshop file, or None if not available.
- `WorkshopItem.get_time_created()`: Returns the datetime the workshop file was created.
- `WorkshopItem.get_time_updated()`: Returns the datetime the workshop file was last updated.
- `WorkshopItem.get_map_tags()`: Returns a list of tags associated with the workshop file.
- `WorkshopItem.get_map_views()`: Returns the number of views of the workshop file.
- `WorkshopItem.get_map_followers()`: Returns the number of followers of the workshop file.
- `WorkshopItem.get_subscriptions()`: Returns the number of subscriptions to the workshop file.

## Steam API Key Information
In order to use this library, you need to provide your own Steam API key. To obtain an API key, visit the [Steam API Key registration page](https://steamcommunity.com/dev/apikey). Please note that due to Valve's policies, a Steam API key is mandatory. Additionally, if you want to download content from the workshop, you must have a copy of the game associated with the workshop file on your account :<


## Example
```py
import WorkshopMetadataExtract as WME
WME.set_api_key("YOUR STEAM API KEY")

map_item = WME.WorkshopItem("https://steamcommunity.com/sharedfiles/filedetails/?id=2934902806")

print("File ID:", map_item.get_fileid())
print("Creator ID:", map_item.get_creator_id())
print("Creator URL:", map_item.get_creator_url())
print("Creator Name:", map_item.get_creator_name())
print("Creator Real Name:", map_item.get_creator_realname())
print("Creator Avatar URL:", map_item.get_creator_avatar())
print("Associated App ID:", map_item.get_appid())
print("File Size:", map_item.get_file_size())
print("File Name:", map_item.get_filename())
print("File URL:", map_item.get_file_url())
print("Preview URL:", map_item.get_preview_url())
print("Title:", map_item.get_title())
print("Description:", map_item.get_description())
print("Time Created:", map_item.get_time_created())
print("Time Updated:", map_item.get_time_updated())
print("Map Tags:", map_item.get_map_tags())
print(" Map Views:", map_item.get_map_views())
print("Map Followers:", map_item.get_map_followers())
print("Subscriptions:", map_item.get_subscriptions())

print("Search info_player_start id in the map...")
bsp_content = map_item.get_file_content()
content = bsp_content.decode("latin-1", errors="ignore").lower()

player_id = content.split('info_player_start"').pop().split("}")[0]
print(player_id.replace("\n", ""))
```

## License
WME is licensed under the [MIT License](https://github.com/example/project/blob/main/LICENSE). You are free to use, modify and share this library under the terms of the MIT License. The only condition is keeping the copyright notice, and stating whether or not the code was modified.

