Skip to content

daniellawrence/python-unpacky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

python-unpacky

Easily unpack binary data into a dict.

Example

Pattern that allows you to unpack HL2 server info...

>>> pattern = (
...         "{byte:header}{byte_int:protocol}{string:name}{string:map}{string:folder}{string:game}"
...         "{short:id}{byte_int:players}{byte_int:max_players}{byte_int:bots}"
...         "{byte:server_type}{byte:environment}"
...         "{byte_int:visibility}{byte_bool:vac}"
... )

Full Example

>>> import unpacky
>>> import binascii
>>> hex_data = (
...         "4911010101010101687474703a2f2f7777772e536169676e732e6465202833292052554e4f464"
...         "600646d5f72756e6f666600686c326d70005465616d2044656174686d6174636800400119200c64770001333"
...         "0393435343200b0996907984c8df6174001736169676e732c5f726567697374657265642c73746174732c696"
...         "e637265617365645f6d6178706c617965727300"
...     )
>>> data = binascii.unhexlify(hex_data)
>>> pattern = (
...         "{byte:header}{byte_int:protocol}{string:name}{string:map}{string:folder}{string:game}"
...         "{short:id}{byte_int:players}{byte_int:max_players}{byte_int:bots}"
...         "{byte:server_type}{byte:environment}"
...         "{byte_int:visibility}{byte_bool:vac}"
... )
>>> unpacked = unpacky.Unpacky(pattern, data).data
>>> unpacked
{'map': 'dm_runoff', 'protocol': 17, 'name': '\x01\x01\x01\x01\x01\x01http://www.Saigns.de (3) RUNOFF', 'players': 25, 'max_players': 32, 'vac': True, 'server_type': 'd', 'visibility': 0, 'environment': 'w', 'header': 'I', 'game': 'Team Deathmatch', 'bots': 12, 'folder': 'hl2mp', 'id': 320}
>>> 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages