A Python compiler for the Neo3 Virtual Machine
Project description
Overview
The neo3-boa compiler is a tool for compiling Python files to the .nef and .manisfest.json formats for usage in the Neo Virtual Machine which is used to execute contracts on the Neo Blockchain.
What it currently does…
Compiles a subset of the Python language to the .nef and .manisfest.json format for use in the Neo Virtual Machine
Works for Python 3.6+
Logs compiler errors and warnings
Logs when the main method is analysed
Logs method inclusions in .abi file to work with Neo Debuggers.
Converts Functions
Converts Local Variable Declarations and Assignments
foo: int = 42
bar = foo
Converts Number Arithmetic Operations (+, -, *, //, %)
Converts Numeric Arithmetic Augmented assignment Operators (+=, -=, *=, //=, %=)
Converts Relational Operations (==, !=, <, <=, >, >=)
Converts Boolean Logic Operations and chained comparisons (and, or, not)
Converts Tuple type (get and set operations)
Converts List type
Converts While Statement
foo = 0
while condition:
foo = foo + 2
Converts If, elif, else Statements
if condition1:
foo = 0
elif condition2:
foo = 1
else:
bar = 2
Converts For Statement
for x in (1, 2, 3):
...
Converts Function Call
def Main(num: int):
a = foo(num)
...
def foo(num: int) -> int:
...
Converts len() for str, tuple and list
Converts Multiple Expressions in the same line (i = i + h; a = 1; b = 3 + a; count = 0)
Converts String Slicing (x = 'example'[2:4], x = 'example'[:4], x = 'example'[4:], x = 'example'[:])
What it will do…
continue, break and pass
Convert Numeric Arithmetic Augmented assignment Operators (/=)
Convert Number Arithmetic Operations (/, **)
Convert Relational Operations (is, is not)
Convert String Slicing (x = 'example'[2:4:2], x = 'example'[::2])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file neo3-boa-0.3.0.tar.gz
.
File metadata
- Download URL: neo3-boa-0.3.0.tar.gz
- Upload date:
- Size: 174.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f34917f89250171e3439b4cc2ae07b60689e0625f3e88a887218962fdd0f816 |
|
MD5 | d4677511aaaa8032fa2f1c2f8f0bd69e |
|
BLAKE2b-256 | 9e1f598a8631454dee11ee82245715a1857587a9dfeeb0f08e443de5c5a36d60 |
Provenance
File details
Details for the file neo3_boa-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: neo3_boa-0.3.0-py3-none-any.whl
- Upload date:
- Size: 297.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1130e5d9a03eef57fcfb457bf27ce332c1aed57934d427b305ab14b02f815b3c |
|
MD5 | 405e1024abac2251cc6482b2565c7f89 |
|
BLAKE2b-256 | 9d61b3bbaf6d2d6988806380ac01db505ab14c72fcc43c28f105c2deec731a37 |