Metadata-Version: 2.1
Name: asm_python
Version: 1.0
Summary: A module that executes assembly code.
Home-page: UNKNOWN
Author: Bobby
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# asm_python

`asm_python` is a Python module that allows you to execute assembly code directly from Python using inline assembly in C.

## Installation and Usage

```bash
pip install asm_python
```
```python
import asm_python
asm_code = """
#your code assembly here (i am use clang to compile assembly code.)
"""
result = asm_python.asm(asm_code)
print("Result:", result)
```

