Tool to Fix Yabinary File
Project description
change log
Installation
PyPI
The recommended process is to install the PyPI package, as it allows easily staying update.
$ pip install fixYabinary
github
Download from https://github.com/tkmru/fixYabinary/. Let’s push star!!
Usage
look(file_path)
print Binary like hexdump command.
>> import fy >> fy.look("./test.png") 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 0x000000 00 00 00 00 49 45 4e 44 ae 42....
It can be used in command line.
$ fy -l test.png
get(file_path, option)
>> import fy >> fy.get("./test.png") 0000000049454e44ae42.... >>fy.get("./test.png", "f") 00 00 00 00 49 45 4e 44 ae 42....
write(file_path, binary, option)
>> import fy >> fy.write('test','01ff4c') >> fy.get('test') u'01ff4c' >> fy.write('test',['01','ff','4c'],'l') >> fy.get('test') u'01ff4c'
extend(file_path, new_file_path, hex, bytes, option)
>> import fy >> fy.get("./test.png", "./extended", "00", 3) Succeeded in making ./extended. # 000000 + ./test.png's Binary Data + 000000 in ./extended >> fy.get("./test.png", "./extended", "00", 3, "t") Succeeded in making ./extended. # 000000 + ./test.png's Binary Data in ./extended >> fy.get("./test.png", "./extended", "00", 3, "b") Succeeded in making ./extended. # ./test.png's Binary Data + 000000 in ./extended
It can be used in command line in case option is None.
$ fy -e test.png extended 00 3
identify(file_path)
identify file type in file. return file type.
>> import fy >> fy.identify("./extended") ./expanded include following FILE SIGNATURES HEADER pdf: 10 bytes - 13 bytes jpg: 131076 bytes - 131078 bytes, 152310 bytes - 152312 bytes, 1352263 bytes - 1352265 bytes FOOTER pdf: 2340568 bytes - 2340573 bytes, 2340568 bytes - 2340574 bytes jpg: 32981 bytes - 32982 bytes, 79754 bytes - 79755 bytes
It can be used in command line.
$ fy -i extended
extract(file_path, new_file_path, start_address, end_address)
>> import fy >> fy.extract("./extended", "./result", 4 , 124) Succeeded in making ./result
and auto detect file in file, and write it into new file.
>> import fy >> fy.extract("./extended", "./result") Succeeded in making ./result.png
It can be used in command line.
$ fy -r extended result 4 124 # set start_address and end_address $ fy -a extended result # auto extract file in file
License
MIT License
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copyright (c) @tkmru
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
Built Distributions
File details
Details for the file fixYabinary-0.2.7.tar.gz
.
File metadata
- Download URL: fixYabinary-0.2.7.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a4ede6f9accc5bbd5363d70230fc8486d378f3d2911414c105c36da082edbf0 |
|
MD5 | 118c73dd7e3f5c695dbe92b072d03dfe |
|
BLAKE2b-256 | a6d7c438967dbc11333ab505a7ab7534f284f923ad7b2db2791a0d6e4287da2a |
File details
Details for the file fixYabinary-0.2.7-py3-none-any.whl
.
File metadata
- Download URL: fixYabinary-0.2.7-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b67def3db2b194f3b312c1a45919fd8a9e8082759813e1aa36462b14ad4abded |
|
MD5 | 16b16cc9f15d8becb9338dcb73036abf |
|
BLAKE2b-256 | 08d369947f3ae0a4307752ddf243c8c1390c186c16a80fc2e3b3d368f1fa7460 |
File details
Details for the file fixYabinary-0.2.7-py2-none-any.whl
.
File metadata
- Download URL: fixYabinary-0.2.7-py2-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05ed4da3aaf783f9e3e7ad0013e674f683cdf7e5c9cddb07da760171bc6943a7 |
|
MD5 | c5339ff4b02e5d89b2339d4c35774737 |
|
BLAKE2b-256 | eb1338492382f8045daba3197a972e2b7935ba7d7fda72fb18c7fdc9fabc4028 |