Manipulate Commodore file types
Project description
This Python module enables access to various types of file formats used by Commodore microcomputers.
It provides classes to translate BASIC and binary program files between their native format and standard text files.
Examples
Classes reside in the cbm_files module, the whole module may be imported or just those definitions referenced by the user.
List the contents of a BASIC file
from cbm_files import BASICFile
- with open(‘example.prg’, ‘rb’) as f:
prog = BASICFile(f)
- for line in prog.to_text():
print(line)
TODO
detailed documentation
support BASIC variants
more examples
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
cbmfiles-2.1.tar.gz
(22.9 kB
view hashes)
Built Distribution
cbmfiles-2.1-py3-none-any.whl
(24.7 kB
view hashes)