Skip to main content

Python Assembly Wrapper

Project description

PYthon Assembly Wrapper

About PYAW

PYAW allows you to call assembly from python

Installation

pip install pyaw

Example

lib.asm

global foo
foo:
	mov rax,100
	ret

main.py

import pyaw
lib = pyaw.load_asm(
	'lib.asm',
	[
		['foo',[],'int']
	]
)
print(lib.foo()) # this prints 100
  • The first argument to pyaw.load_asm is the file
  • The second argument is a list which contains information about the exported function inside lib.asm
    • The first item is a list which follows the format of [function_name,[argument types],returntype]
      • The only type allowed currently is int which can be inputed as "int" rather than the class because it gets changed to ctypes.c_int

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

pyaw-0.0.2.tar.gz (3.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page