Skip to main content

Weadma? What's Writema?

Project description

Writema? What's Writema?

Writema is a binary stream writing library

Well, what does it do?

Well I'm glad you asked!

Writema is a little library I started to help with writing binary files.

That's it?

Well yeah, what did you expect? Some large module I've been writing my entire life that will change the world with its amazing binary writing ability?

Cool Badges

Tests

Usage

Note, requires Python 3.8 or higher (For now at least)

Installation

pip install writema

Sample code

from writema import Writema

# Let's say you want to write a file to contain in order:
# - An integer
# - An unsigned integer
# - A double
# - A string prefixed by its length with a byte
# - A large buffer blob you dont exactly know the length of
w = Writema("some_file.bin") # note: defaults to Little Endian

w.write(4, 69)  # write a 4 byte integer (int32_t)
w.uwrite(2, -1337)  # write an unsigned 2 bit integer (uint16_t)

w.write("d", 2.718281828459045)  # write the constant e as a double

string = b"Hello, World!"
length = len(string)

w.write(1, length)
w.bytes(string)

important_data = ...  # imagine theres some very large binary blob here in bytes
w.bytes(important_data)

Example of ways to do the same action

from writema import Writema, WritemaTypes

w = Writema()

# lets say you want the end buffer to be b"AAAABBBBCCCCDDDD"
# heres four ways you can do each of the four bytes

w.write(4, 1094795585)  # Writes a 32 bit (4 byte) integer (AAAA = 1094795585)
w.write("int", 1111638594)  # this also writes a 32 bit int (BBBB = 1111638594)
w.write(WritemaTypes.int, 1128481603)  # someone might prefer this idk (CCCC = 1128481603)
w.bytes(b"DDDD")  # its a bytestring, probably the easiest to work with

Other examples

# writing floats and doubles is a little scuffed for now, i plan to find a better solution
w.write("f", 6.9)
w.write("float", 6.9)
w.write(WritemaTypes.float, 6.9)
w.write("d", 6.90000001)
w.write("double", 6.90000001)
w.write(WritemaTypes.double, 6.90000001)

# you can also set endianness
w.set_endianness("big")
# and
w.set_endianness("little")  # the correct endianness /s

Documentation

tba

License

Copyright (c) 2022 whamer100
This project is MIT licensed.


hey is this project name just one big ligma joke

maybe

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

writema-1.0.0a0.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

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

writema-1.0.0a0-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file writema-1.0.0a0.tar.gz.

File metadata

  • Download URL: writema-1.0.0a0.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.5

File hashes

Hashes for writema-1.0.0a0.tar.gz
Algorithm Hash digest
SHA256 1e843752018eefde5d75c94e77516ccbac98bc4e257e0da00ffbea3bbd231bf6
MD5 c8c9e172b3e798d39793c9a731003cb8
BLAKE2b-256 b1ab5937196eb6c0f67c2e0b91c3c4f1a97b6309217c52d3336a0358be6e898a

See more details on using hashes here.

File details

Details for the file writema-1.0.0a0-py3-none-any.whl.

File metadata

  • Download URL: writema-1.0.0a0-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.5

File hashes

Hashes for writema-1.0.0a0-py3-none-any.whl
Algorithm Hash digest
SHA256 85e2289d89f01a5a7b07a8503aaae3224badde45c5cfcaec95f278bd642ce632
MD5 5353112b7de64e239d2df8b821e7da3d
BLAKE2b-256 c3f1f54fc530b81eda031f155dd9c08ea062600b92486237013c35f9abb2c136

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