Skip to main content

Read and write Commodore disk images

Project description

d64

This Python module enables access to disk image files (.d64, .d71, .d81) used by various Commodore microcomputer emulators and tools.

It provides familiar interfaces for developers to read and write program and data files within an image.

In addition it contains tools useful to inspect and modify images, for example a script to check the integrity of an image.

Examples

Classes and functions reside in the d64 module, the whole module may be imported or just those definitions referenced by the user.

Displaying an image contents

To perform a directory list

from d64 import DiskImage

with DiskImage('squadron.d64') as image:
    for line in image.directory():
        print(line)

This prints out

0 "SQUADRON        " Q9 2A
15   "SQUADRON PAL"     PRG
15   "SQUADRON NTSC"    PRG
634 BLOCKS FREE.

Copying a file from an image

To extract, for example, a BASIC program and write it to a file

from d64 import DiskImage

with DiskImage('test.d64') as image:
    with image.path(b'METEOR'.open() as in_f:
        with open('meteor.prg'), 'wb') as out_f:
	    out_f.write(in_f.read())

TODO

  • detailed documentation
  • support for .d81 subdirectories
  • support for .d81 relative files
  • better docstrings
  • more examples

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

d64-0.20.tar.gz (45.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

d64-0.20-py3-none-any.whl (40.8 kB view details)

Uploaded Python 3

File details

Details for the file d64-0.20.tar.gz.

File metadata

  • Download URL: d64-0.20.tar.gz
  • Upload date:
  • Size: 45.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for d64-0.20.tar.gz
Algorithm Hash digest
SHA256 5bbd7a753f9428f5d053046139f6a41b841ce45f023d1898b712d59f596481bc
MD5 c250865508db227f9386588d74117060
BLAKE2b-256 8726d7cd5f5fd514db55a55a329f3e6443d4bf4a7be907d103f4609e50392bdb

See more details on using hashes here.

File details

Details for the file d64-0.20-py3-none-any.whl.

File metadata

  • Download URL: d64-0.20-py3-none-any.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for d64-0.20-py3-none-any.whl
Algorithm Hash digest
SHA256 90e9acd99574ae265d0bdfb759cbd38006d89e562425ec4a8fc116154b64e2bf
MD5 d97a13e25addafef79b9601333965430
BLAKE2b-256 61229696510cf984df059a96eeaed90b16f6a8057f43d4b66cebe65fde047033

See more details on using hashes here.

Supported by

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