Skip to main content

Read and write Commodore disk images

Project description

d64

This Python module enables access to disk image files (.d64) 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 pathlib import Path
from d64 import DiskImage

with DiskImage(Path('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.

Listing a BASIC program

To display a BASIC program as text

from pathlib import Path
from d64 import DiskImage, ProgramFile

with DiskImage(Path('test.d64')) as image:
    with image.path("METEOR").open() as f:
        p = ProgramFile(f)

for line in p.list():
    print(line)

TODO

  • Detailed documentation
  • interactive shell utility
  • support for .d71
  • support for .d81
  • better docstrings
  • more examples
  • Selectable BASIC token sets
  • codec support (use cbmcodecs)

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.10.tar.gz (37.2 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.10-py3-none-any.whl (28.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: d64-0.10.tar.gz
  • Upload date:
  • Size: 37.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for d64-0.10.tar.gz
Algorithm Hash digest
SHA256 b2ac30f13526ed51d73946cd9932732998faa7456b71843494141e8251c14a36
MD5 c3b49edb60e0961fc2064dcd79e374a3
BLAKE2b-256 0a209419ed748eb88b89d031ec45c1fcd733f0e005e69ac07b64ae8d5d1a677b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: d64-0.10-py3-none-any.whl
  • Upload date:
  • Size: 28.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for d64-0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 636deac53bb9f0b875b31e5f58b20f92f797cea93780cd94fb3ea74b937b9663
MD5 72196425f9879530f74aaaf26e6c2a41
BLAKE2b-256 124f16d09e669c02a0b65c0cd48565771182f07bafd755b0a346379855e37852

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