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.
Project description
Discover. Download. Dominate! :D
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:
- Import the WorkshopMetadataExtract module and set your Steam API key:
import WorkshopMetadataExtract as WME
WME.API_KEY = "YOUR STEAM API KEY"
- Create a WorkshopItem object with the workshop file URL:
map_item = WME.WorkshopItem("WORKSHOP_FILE_URL")
- Retrieve and work with the workshop file metadata. For example, to download the map:
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. 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
import WorkshopMetadataExtract as WME
WME.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. 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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file WorkshopMetadataExtract-1.0.5.tar.gz.
File metadata
- Download URL: WorkshopMetadataExtract-1.0.5.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f4140fad7dafd3d8511cc7e7f804584145ecf43386896940a559a2900eca5c3
|
|
| MD5 |
ed1fd6b47410c62e20068003293e7c7a
|
|
| BLAKE2b-256 |
ac3d7e7e657b7cf1d0f93165d87e9e8489831d8e8d02d506115cb415f2d1659c
|