Skip to content

Latest commit

 

History

History

quake

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

QUAKE

A Python package for Quake files.

Python 3 Discord

Usage

from quake import mdl

with mdl.Mdl.open('./progs/player.mdl') as mdl_file:
   mesh = mdl_file.mesh()
   skin = mdl_file.image()

Tests

>>> python -m unittest discover -s tests