Skip to content

Simple Python binary decoder – currently converts binary to decimal. Future updates will support multiple formats and ASCII character decoding.

Notifications You must be signed in to change notification settings

Tech-noneX/binary-decoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

📄 Description for your decoder GitHub repo 🧠 Binary Decoder

This is a simple binary decoder written in Python.

🔹 Currently, it takes a single binary number as input and converts it to its decimal form. 🔹 The goal is to expand this project into a powerful binary interpreter that can handle any format of binary input — including:

Strings ("01001000")

Lists of bits ([0, 1, 0, 0, 1, 0, 0, 0])

Space-separated binaries ("01001000 01100101")

Lists of binary blocks ([[0,1,0,0,1,0,0,0], [0,1,1,0,0,1,0,1]])

🔸 Future features will include:

Input format detection

ASCII character decoding (e.g. binary → "Honzik")

Full message decoding from binary text

This repo is part of a larger learning journey and will continue evolving over time.

About

Simple Python binary decoder – currently converts binary to decimal. Future updates will support multiple formats and ASCII character decoding.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages