All Projects → Astavinu → WorkshopManager

Astavinu / WorkshopManager

Licence: other
CLI tool to install and update Steam Workshop mods

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to WorkshopManager

VJ-Base
An addon for Garry's mod that contains bunch of bases to make many different types of addons.
Stars: ✭ 57 (+128%)
Mutual labels:  steam, workshop
Ulib
ULib: A Lua library for more rapid development on Garry's Mod servers
Stars: ✭ 63 (+152%)
Mutual labels:  steam, workshop
scala-3-crash-course
Scala 3 workshop presenting the top new features of the language.
Stars: ✭ 34 (+36%)
Mutual labels:  workshop
Game-Assets-And-Resources
Free and paid game assets and game resources for 2D games, 3D games, mobile games, Steam games, Unity games, and other games.
Stars: ✭ 164 (+556%)
Mutual labels:  steam
halflife-op4-updated
Half-Life: Opposing Force SDK based on Half-Life Updated, with bug fixes. Check README.md for more information.
Stars: ✭ 57 (+128%)
Mutual labels:  steam
mastering-zsh
Advanced topics to take advantage of zsh 👩‍💻👨‍💻
Stars: ✭ 934 (+3636%)
Mutual labels:  workshop
dltf
Hands-on in-person workshop for Deep Learning with TensorFlow
Stars: ✭ 14 (-44%)
Mutual labels:  workshop
Adium-Steam-IM
Adium protocol plugin to support Steam instant messaging
Stars: ✭ 50 (+100%)
Mutual labels:  steam
unix-programming-and-regular-expressions-workshop
A workshop on Unix Programming Principles using tools such as grep, sed, awk, shell programming and regular expressions
Stars: ✭ 25 (+0%)
Mutual labels:  workshop
valve-matchmaking-ip-ranges
Lists of locations & IP addresses of Valve servers
Stars: ✭ 69 (+176%)
Mutual labels:  steam
SimpleInstaller
Simply installer
Stars: ✭ 18 (-28%)
Mutual labels:  steam
Workshop-GraphQL
A GraphQL Server made for the workshop
Stars: ✭ 22 (-12%)
Mutual labels:  workshop
touchdesigner-summit-2019-large-systems
No description or website provided.
Stars: ✭ 26 (+4%)
Mutual labels:  workshop
python-grass-addon
How to write a Python GRASS GIS 7 addon
Stars: ✭ 45 (+80%)
Mutual labels:  workshop
gitops-helm-workshop
Progressive Delivery for Kubernetes with Flux, Helm, Linkerd and Flagger
Stars: ✭ 59 (+136%)
Mutual labels:  workshop
snips-skill-mental-calculation
With this App, your Assistant can test you on basic arithmetic: addition, subtraction, multiplication, and division.
Stars: ✭ 13 (-48%)
Mutual labels:  workshop
lighttpd-Link
A lighttpd powered lightweight web server for the Steam Link
Stars: ✭ 21 (-16%)
Mutual labels:  steam
intro-to-tidyhydat-and-tidyverse
Introduction to R and the tidyverse in Hydrology
Stars: ✭ 16 (-36%)
Mutual labels:  workshop
ckad-workshop
Getting Certified as a Kubernetes Application Developer.
Stars: ✭ 16 (-36%)
Mutual labels:  workshop
docker-k8s-workshop
Workshop covering Docker and Kubernetes
Stars: ✭ 17 (-32%)
Mutual labels:  workshop

WorkshopManager

WorkshopManager is a CLI tool to install and maintain steam workshop items.

Environment

  • Python 3.6

Getting Started

Pull the project and setup the required parameters. These parameters are stored in params.pkl in your current working directory. Because of this, it is easy to create different environments for different game servers.

pip install -r requirements.txt
python wm.py set login <username> <password>    # sets steam username and password
python wm.py set install_dir <directory>        # sets steam installation directory
python wm.py set appid <appid>                  # sets steam application id

Please note, that the steam password has to be stored in plaintext in params.pkl. You might want to adjust file permissions accordingly.

Usage

WorkshopManager is used just like any linux package manager. Installed mods are stored in mods.pkl in your current working directory.

usage: wm.py [-h] [-y] [-v | -q]
             {search,install,remove,update,info,list,set} ...

Command line interface for installing steam workshop mods and keeping them up-
to-date - https://github.com/astavinu/WorkshopManager

positional arguments:
  {search,install,remove,update,info,list,set}
    search              searches the steam workshop
    install             installs list of steam workshop items
    remove              removes list of steam workshop items
    update              updates either all installed or specified list of
                        workshop items
    info                provides detailed information about one specific mod
    list                lists all installed mods
    set                 sets workshop manager environment variables

optional arguments:
  -h, --help            show this help message and exit
  -y, --yes             agree to all confirmations
  -v, --verbosity       increase output verbosity
  -q, --quiet

Examples

For downloading workshop items for Team Fortress 2, your initial setup might look like this

pip install -r requirements.txt
python wm.py set login anonymous ""    # steam anonymous login
python wm.py set install_dir .         # install mods in current directory
python wm.py set appid 440             # appid 440 = Team Fortress 2

As Team Fortress 2 is a free-to-play title, no ownership of the game is required to download its workshop items. Therefore, we use the anonymous login.

To install a mod we need the mod id. This id may be found by browsing the steam workshop for our desired game, or by searching for a specific mod via WorkshopManager.

python wm.py search Haywire

By either one of this methods we get the mod id.

python wm.py install 1308849071

Multiple mods may be installed simultaneously. WorkshopManager will find required mods and suggest to install them in the confirmation dialog.

python wm.py install 1308849071 1308849072 1308849073

All mods installed in the current working directory are kept up-to-date by using the update command.

python wm.py update
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].