Skip to main content

Library for handling 3ds exheader files

Project description

exheader

This is a simple python library allowing to load, modify and save 3ds exheader files. Not all settings are supported (those will throw an exception on load) or easily modifyable yet.

Installation

Run the following to install:

pip install exheader

Usage

from exheader import Exheader

exh = Exheader()

# Load exheader from file
f_in = open('exheader.bin', 'rb')
exh.unpack_from(f_in.read())
f_in.close()

# Print the application tite
print(exh.sci.app_title)

# Change the application title
exh.sci.app_title = 'MyApp'

# Print allowed SVCs
print(exh.aci.arm11_kernel_caps.svcs)

# Add SVC 0x70
exh.aci.arm11_kernel_caps.svcs.add(0x70)

# Write modified exheader to file
f_out = open('exheader_out.bin', 'wb')
f_out.write(exh.pack())
f_out.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

exheader-0.0.1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

exheader-0.0.1-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page