Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ninjamar/pyaw
PYthon Assembly Wrapper
https://github.com/ninjamar/pyaw
assembly linux python3
Last synced: about 2 months ago
JSON representation
PYthon Assembly Wrapper
- Host: GitHub
- URL: https://github.com/ninjamar/pyaw
- Owner: ninjamar
- License: mit
- Created: 2021-11-26T03:55:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-13T12:53:40.000Z (about 3 years ago)
- Last Synced: 2024-10-12T09:22:05.419Z (4 months ago)
- Topics: assembly, linux, python3
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**PY**thon **A**ssembly **W**rapper
## About PYAW
PYAW allows you to call assembly from python## Installation
`pip install pyaw`
## Example#### lib.asm
```nasm
global foo
foo:
mov rax,100
ret
```
#### main.py
```python3
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`# TODO
* Add inline assembly
* Do https://codefactor.io check