Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ValvePython/vpk
📦 Open, Search, Extract and Create VPKs in python
https://github.com/ValvePython/vpk
gcf hacktoberfest python steam valve valve-pak
Last synced: 3 months ago
JSON representation
📦 Open, Search, Extract and Create VPKs in python
- Host: GitHub
- URL: https://github.com/ValvePython/vpk
- Owner: ValvePython
- License: mit
- Created: 2015-05-18T16:07:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-09-20T20:33:49.000Z (about 1 year ago)
- Last Synced: 2024-07-27T08:43:57.808Z (3 months ago)
- Topics: gcf, hacktoberfest, python, steam, valve, valve-pak
- Language: Python
- Homepage:
- Size: 56.6 KB
- Stars: 160
- Watchers: 5
- Forks: 13
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome - ValvePython/vpk - 📦 Open, Search, Extract and Create VPKs in python (Python)
- awesome-steam - vpk - Python module for working with Valve's Pack format. (Packages / Python)
README
| |pypi| |license| |coverage| |master_build|
| |sonar_maintainability| |sonar_reliability| |sonar_security|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``
.. code:: bash
pip install vpk
Quick start
-----------The VPK instance is iterable in the standard ways and produces paths to files
.. code:: python
import vpk
pak1 = vpk.open("/d/Steam/steamapps/common/dota 2 beta/dota/pak01_dir.vpk")
for filepath in pak1:
print filepathReading 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... code:: python
pakfile = pak1.get_file("scripts/emoticons.txt")
pakfile = pak1["scripts/emoticons.txt"]
print pakfile.read().decode('utf-16le').. code:: text
-------------------------------------------------
"emoticons"
{
// An ID of zero is invalid"1"
{
"image_name" "wink.png"
"ms_per_frame" "100"
...Saving a file is just as easy.
.. code:: python
pakfile.save("./emoticons.txt")
The module supports creating basic VPKs.
Multi archive paks are not yet supported... code:: python
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
.. code:: text
usage: vpk [-h] [--version] [-l] [-la] [-x OUT_LOCATION] [-nd] [-t] [-c DIR]
[-p] [-f WILDCARD | -re REGEX | -name WILDCARD] [-v]
fileManage Valve Pak files
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exitMain:
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 stdoutFilters:
-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 exclusionLooking to decompile Valve custom asset formats?
------------------------------------------------Check out https://github.com/SteamDatabase/ValveResourceFormat/
.. |pypi| image:: https://img.shields.io/pypi/v/vpk.svg?style=flat&label=latest%20version
:target: https://pypi.python.org/pypi/vpk
:alt: Latest version released on PyPi.. |license| image:: https://img.shields.io/pypi/l/vpk.svg?style=flat&label=license
:target: https://pypi.python.org/pypi/vpk
:alt: MIT License.. |coverage| image:: https://img.shields.io/coveralls/ValvePython/vpk/master.svg?style=flat
:target: https://coveralls.io/r/ValvePython/vpk?branch=master
:alt: Test coverage.. |master_build| image:: https://github.com/ValvePython/vpk/workflows/Tests/badge.svg?branch=master
:target: https://github.com/ValvePython/vpk/actions?query=workflow%3A%22Tests%22+branch%3Amaster
:alt: Build status of master branch.. |sonar_maintainability| image:: https://sonarcloud.io/api/project_badges/measure?project=ValvePython_vpk&metric=sqale_rating
:target: https://sonarcloud.io/dashboard?id=ValvePython_vpk
:alt: SonarCloud Rating.. |sonar_reliability| image:: https://sonarcloud.io/api/project_badges/measure?project=ValvePython_vpk&metric=reliability_rating
:target: https://sonarcloud.io/dashboard?id=ValvePython_vpk
:alt: SonarCloud Rating.. |sonar_security| image:: https://sonarcloud.io/api/project_badges/measure?project=ValvePython_vpk&metric=security_rating
:target: https://sonarcloud.io/dashboard?id=ValvePython_vpk
:alt: SonarCloud Rating