Skip to main content

A simple parser library for the game DeltaDash.

Project description

deltadash.py

A simple, dependency-less library for programatically interfacing with DeltaDash's file formats.

Current features

deltadash.py currently includes the following features:

  • Difficulty reading and deserialisation
  • Difficulty writing and deserialisation

Example

Here is an example of how to read, modify and write a DeltaDash map through the deltadash.py library!

# deltadash.py map reading example
from deltadash.maps.difficulty import Difficulty

# Read a .dd file
diff = Difficulty.from_file("test_res/debug.dd")

# Print the difficulty's full name
print(diff.full_name)

# Change the difficulty name
diff.name = "New Name"

# Write the difficulty to a new file
diff.into_file("test_res/debug_new.dd")

You may view more examples in the examples directory of this repo!

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

deltadash-0.1.0.tar.gz (6.3 kB view hashes)

Uploaded Source

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