Coder Social home page Coder Social logo

pywickparse's Introduction

pywickparse

Python Bindings for the JohnWickParse library

Extracting

The PakExtractor class is used to extract files from a .pak, and it's use is pretty basic.

import pywickparse

# Make a new PakExtractor by specifying the pak file and the key (in hex)
extractor = pywickparse.PakExtractor("pakchunk.pak", "0000000000000000000000000000000000000000000000000000000000000000")
# get_file_list returns a List of filenames as strings, as they're represented in the pak
files = extractor.get_file_list()
# Use the index of the above list, to retrieve the bytes of a file
file = extractor.get_file(0)
print(files[0])
handle = open("./test", "wb")
handle.write(file)
handle.close()

Parsing Files

The read_asset(path: string) function is the main way to parse an asset file.

The path parameter should not contain a file extension - it will load up both the uexp and uasset files.

This function returns a Python representation (mostly Lists and Dictionaries) of the underlying UObject data. It will be a List of exports, each with the export_type parameter.

Textures

The read_texture(path: string, output_path: string) function reads a file and writes it out into a texture.

Both of these functions accept a path of the same format as read_asset, and will throw an exception if the export_type of the first export is not a Texture2D

Errors

At the moment, all errors in parsing/reading will return a TypeError with the error message matching that of what JohnWickParse would return.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.