Single interface for several game mod portals
Project description
ModMux
Unified async client for multiple game mod platforms. ModMux normalises provider responses into shared Pydantic models and ships a small CLI for quick lookups.
Features
- Async HTTP client with rate limiting and retry handling
- Normalised
Modmetadata model across providers - Pluggable provider registry
- URL parsing helpers for provider links
- CLI for fetching a single mod and printing JSON
Supported providers
- Modrinth
- CurseForge
- Nexus Mods
- mod.io
- Steam Workshop
- Factorio Mod Portal (Wube)
Requirements
- Python 3.13+
- Dependencies:
pydantic,httpx,aiolimiter
Install
python -m pip install modmux
Credentials and environment variables
--tokenaccepts API tokens/keys.--usersupplies a user id for providers that need user-scoped base URLs (mod.io).- Environment variables:
MODMUX_TOKEN(fallback for all providers)MODMUX_<PROVIDER>_TOKEN(provider-specific, e.g.MODMUX_MODRINTH_TOKEN)MODMUX_<PROVIDER>_USER(provider-specific user id, e.g.MODMUX_MODIO_USER)
Library usage
Two supported patterns are available: an async context manager or a manually closed client.
import asyncio
from modmux import ModID, Muxer, Provider
mod_id = ModID(provider=Provider.MODRINTH, id="fabric-api")
async def run() -> None:
async with Muxer(creds={Provider.MODRINTH: {"token": "token"}}) as mux:
mod = await mux.get_mod(Provider.MODRINTH, mod_id)
print(mod.name)
asyncio.run(run())
import asyncio
from modmux import ModID, Muxer, Provider
mod_id = ModID(provider=Provider.MODRINTH, id="fabric-api")
async def run() -> None:
mux = Muxer()
try:
mod = await mux.get_mod(Provider.MODRINTH, mod_id)
finally:
await mux.aclose()
print(mod.name)
asyncio.run(run())
The modmux_client(...) helper remains available as a convenience wrapper
around Muxer for existing code.
URL parsing
Parse provider URLs into ModID instances, or fetch directly from a URL.
import asyncio
from modmux import Muxer, parse_url
async def run_mod_id() -> None:
async with Muxer() as mux:
mod = await mux.get_mod_from_url("https://modrinth.com/mod/fabric-api")
print(mod.name)
async def run_from_url() -> None:
mod_id = parse_url("https://modrinth.com/mod/fabric-api")
if mod_id:
async with Muxer() as mux:
mod = await mux.get_mod(mod_id.provider, mod_id)
print(mod.name)
asyncio.run(run())
Some providers require extra context (game ids or credentials); use
get_mod_from_url(..., game="...") when the URL cannot supply it.
CLI usage
The CLI expects a provider name and provider-specific mod id. Provider names are case-insensitive.
modmux MODRINTH fabric-api --pretty
modmux CURSEFORGE 238222 --pretty
modmux NEXUSMODS 12345 --game transportfever2
modmux MODIO some-mod --game 4321 --user 12345 --token <api-key>
Or without installing a script:
python -m modmux MODRINTH fabric-api --pretty
Output is a JSON serialisation of the Mod model.
Provider notes
- CurseForge: slug lookups require
ModID.game(game id). - Nexus Mods: requires
ModID.game(game domain, e.g.skyrim). - mod.io: requires
ModID.gameplus a user id (use--userorMODMUX_MODIO_USER). - Steam: uses a Workshop published file id;
ModID.gameis optional. - Wube: uses the Factorio mod name slug.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file modmux-0.1.2.tar.gz.
File metadata
- Download URL: modmux-0.1.2.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1ccc385917307d098ebfa9deb10ec9438f3f10f81c51a5e17ea26160d213698
|
|
| MD5 |
ad06857ef5b6e4cc2f51dab0c01ab016
|
|
| BLAKE2b-256 |
28c8bc37b1f31cbee9b5e42c58e6df081c9564b85be4f2c45b3509e18c96f12a
|
File details
Details for the file modmux-0.1.2-py3-none-any.whl.
File metadata
- Download URL: modmux-0.1.2-py3-none-any.whl
- Upload date:
- Size: 28.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e99b54d168b28c443533a75fd5a00f4577b71a2cddf5887864f69736a0f304a0
|
|
| MD5 |
ce0005d15cdc913cc77b20991c497799
|
|
| BLAKE2b-256 |
f7cd8b0d7e5d0c360dbecadcfe007f96f821874579daa155ad01b589303a1abe
|