view pytouhou/formats/__init__.py @ 782:a30ce01b9154

formats: Rewrite msg parsing in Rust
author Link Mauve <linkmauve@linkmauve.fr>
date Thu, 20 Nov 2025 19:02:19 +0100
parents 70e2ed71b09c
children
line wrap: on
line source

"""Touhou games file formats handling.

This package provides modules to handle the various proprietary file formats
used by Touhou games.
"""

class WrongFormatError(Exception):
    pass

class ChecksumError(Exception):
    pass