|
Project Information
|
Introductionstruc is a syntax wrapper for ctypes.Structure class User(Struc):
BYTE.name[32]
BYTE.password[32]v.s. class User(Structure):
_fields_ = [
('name', c_ubyte * 32),
('password', c_ubyte * 32),
]Installationeasy_install struc DownloadVisit http://pypi.python.org/pypi/struc/0.2 or Download struc-0.2.zip directly or checkout the repo for the latest version |