Library for working with Valve Pak files
Project description
VPK is Valve’s file format for storing game assets. Pythonic access to VPK files and their contents together with a cli tool.
Works on: python2.7, python3.4+, pypy, and pypy3
Install
You can grab the latest release from https://pypi.python.org/pypi/vpk or via pip
pip install vpk
Quick start
The VPK instance is iterable in the standard ways and produces paths to files
import vpk
pak1 = vpk.open("/d/Steam/steamapps/common/dota 2 beta/dota/pak01_dir.vpk")
for filepath in pak1:
print filepath
Reading a specifc file is done by passing the file path to get_file() method, which returns a VPKFile instance, which acts as a regular file instance. Writting is not possible.
pakfile = pak1.get_file("scripts/emoticons.txt")
pakfile = pak1["scripts/emoticons.txt"]
print pakfile.read().decode('utf-16le')
-------------------------------------------------
"emoticons"
{
// An ID of zero is invalid
"1"
{
"image_name" "wink.png"
"ms_per_frame" "100"
...
Saving a file is just as easy.
pakfile.save("./emoticons.txt")
The module supports creating basic VPKs. Multi archive paks are not yet supported.
newpak = vpk.new("./some/directory")
newpak.save("file.vpk")
pak = newpak.save_and_open("file.vpk")
CLI tool
A command line utility is also included
usage: vpk [-h] [--version] [-l] [-la] [-x OUT_LOCATION] [-nd] [-t] [-c DIR]
[-p] [-f WILDCARD | -re REGEX | -name WILDCARD] [-v]
file
Manage Valve Pak files
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exit
Main:
file Input VPK file
-l, --list List file paths
-la List file paths, crc, size
-x OUT_LOCATION, --extract OUT_LOCATION
Extract files to directory
-nd, --no-directories
Don't create directries during extraction
-t, --test Verify contents
-c DIR, --create DIR Create VPK file from directory
-p, --pipe Write file contents to stdout
Filters:
-f WILDCARD, --filter WILDCARD
Wildcard filter for file paths
-re REGEX, --regex REGEX
Regular expression filter for file paths
-name WILDCARD Filename wildcard filter
-v, --invert-match Use filters for exclusion
Looking to decompile Valve custom asset formats?
Check out https://github.com/SteamDatabase/ValveResourceFormat/
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
File details
Details for the file vpk-1.4.0.tar.gz
.
File metadata
- Download URL: vpk-1.4.0.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32ce0a2ca74f29e6b6614dc6e56b7724181c7b011f4de6040a138d4d8fe97040 |
|
MD5 | c95a6fe3d2e0be18d7f209443cad03d5 |
|
BLAKE2b-256 | 70d4567a1c46a4c1efc646454868cfffa81e87760663cfddcc28dc9d273fb5ac |
File details
Details for the file vpk-1.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: vpk-1.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 021a40fa28eece9909dfce6f2b55abfd39fff22ac4a4a18ddf7a10afa4c1232f |
|
MD5 | 589f08e0ea9af004a14c4d8cd66d855d |
|
BLAKE2b-256 | 39b9b87009a8ad0db87d1b14bb0b2b474254b18ba740057f4ba8bae7cc790e5d |