Links
Tags
Creators
Details
1.0.0
Compatibility
Required content
Changes
Version 1.0.0 - Initial Release š
š First public release of Fabric Language Python!
This framework allows developers to write Minecraft Fabric mods entirely in Python 3.
Features in this release:
- ⨠Full Python Support: Write your mod logic, items, and blocks using clean Python syntax.
- ā” Native Mixin Support: Intercept and modify Minecraft's core code directly from Python using @Mixin.
- š§© Plug & Play Template: Fully compatible with the official repository template for 1-click modding setups.
- š§ Minecraft 26.2 Support: Built and tested natively for the 26.2.
š To get started, please check the official Template Repository and the MODDING documentation!
āļø License Information & Modder Exception: This framework is protected by a proprietary license. However, please refer to "Clause 4. EXCEPTION FOR INDEPENDENT CREATORS (MODDERS)", which grants independent developers the right to freely create, distribute, and monetize their own mods built on top of this framework. For full details, please read the Official License.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:CUPWhVMv:JD1yBVsr"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:CUPWhVMv:JD1yBVsr"
}

