Metadata-Version: 2.1
Name: byteworker
Version: 1.0.1
Summary: Working with byte made easy
Home-page: https://himelrana.com
Author: Himel
Author-email: contact@himelrana.com
License: MIT
Keywords: byte to word to decimal
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
License-File: LICENCE.txt


# byteworker
Convert byte to word and world to decimal
## Version: 1.0.0

## Background
 We are developing an automaton system. where hardware send data through post request but send only byte without any headers and formatting.
 I have just build this package for working with this kind of situation easily

# example input

<code>
b'\\xd2\\x04.\\x164#\\x80\\r'
</code>
<br>
or <br>
<code>
b'\xd2\x04.\x164#\x80\r'
</code>

# Output
[1234, 5678, 9012, 3456]

##  Available Functions

    is_byte_has_double_slash() 
	    1. return True or False
	    
    double_slash_to_sinble_slash() 
	    1. Fix byte \\ issue convert it to \ 
	    
    get_perfect_byte() 
	    1. Return perfect bye if it ha \\ change to \
	    2. If it has \ just return it
	
	byte_to_word_to_decemal_array()
		1. It receive a byte and return decimal array by word	    

# Enjoy

  

If you like please give a star
[Portfolio](https://himelrana.com) | [Send a mail](mailto:contact@himelrana.com)

Change Log
==========

1.0.0 (23/01/2022)
-------------------
- First Tested and Stable Release
- Fix Wrong byte input like \\ to \
- Convert word to decimal
- Return and arry of decimal


