neo-python icon indicating copy to clipboard operation
neo-python copied to clipboard

Lightweight SDK API

Open ixje opened this issue 6 years ago • 1 comments

This is a roadmap milestone item. See the Roadmap project on the side bar for more information where it fits in the bigger picture. See the Lightweight SDK API project on the side bar for a breakdown of items and progress.

Rationale

Current users seeking to interact with the NEO Blockchain through Python have a steep learning curve ahead when having to use neo-python (as a result of suboptimal documentation). On top of that they’ll likely have to run their own full node which is not always needed or more important wanted/possible.

In order to ease their entry into the NEO ecosystem via Python we want to support a light weight API that acts more like Neon-js and NeoModules. These rely on public RPC nodes, NeoScan and alike for providing Blockchain related data and broadcasting capabilities.

ixje avatar Feb 13 '19 09:02 ixje

Hello. I'm working on this task. I'm porting neo-modules(https://github.com/CityOfZion/NeoModules) to python: https://github.com/simplitech/neo-modules-python

So far I implemented Neo RPC and Neo Scan, I have unit tests for both: https://github.com/simplitech/neo-modules-python/blob/master/NeoModules/RPC/RPCTests.py https://github.com/simplitech/neo-modules-python/blob/master/NeoModules/Rest/NeoScan/NeoScanTests.py

A few conditions I couldn't test, but I implemented tests for almost everything possible

lock9 avatar Mar 06 '19 08:03 lock9