GithubHelp home page GithubHelp logo

mirandaniel / pnrw Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 50 KB

PNRW is a Python Wrapper for the Nano RPC Protocol

Home Page: https://pypi.org/project/pnrw/

License: GNU General Public License v3.0

Python 100.00%
nano nanocurrency rpc rpc-wrapper banano banano-currency

pnrw's Introduction

PNRW: Python Nanocurrency RPC Wrapper

PNRW is a Python Wrapper for the Nano RPC protocol.

PNRW supports Banano as well!


badge badge


Installation

PNRW can be installed using PyPI

pip install pnrw

Looking to install from source code?

pip install .

Documentation

PNRW uses the same variable and function names as the RPC Protocol, this means that you can use the official documentation for this library.

(There are some differences, please check the difference guide below)


pnrw.Node

The node class handles all node connections.

import pnrw

node = pnrw.Node("nodeIp") # Create a new node instance

Arguments

ip (str): The node IP address

Optional arguments

port (int): The node's RPC port, default value is 7076

dontUseHTTPS (bool): Disables HTTPS, default value if False

headers (dict): Custom headers that are sent with each request, default value is "Default"

banano (bool): Ensures correct configuration when using PNRW for Banano, default is False


Examples

Starting code

import pnrw

node = pnrw.Node("mynano.ninja/api/node") # Create a new node instance

Starting code for Banano

import pnrw

node = pnrw.Node("kaliumapi.appditto.com/api", banano=True) # Create a new node instance

Getting basic node information

import pnrw

node = pnrw.Node("mynano.ninja/api/node") # Create a new node instance

print(node.block_count()) # Check node block count
print(node.version()["protocol_version"]) # Print protocol version of node
print(node.uptime()) # Print node uptime in seconds

Showing current account balance

import pnrw

node = pnrw.Node("mynano.ninja/api/node") # Create a new node instance

balance = node.account_balance("nano_396phmigwi883hk4x3teedtjk1ejskckmqe7xz3ymfnhe58p9o8gzmkygx91") # Get balance of an account
myBalance = node.rai_from_raw(balance["balance"]) # Convert from raw to Nano

print(f"I currently have {myBalance} Nano!")

Convert units

from pnrw import convert

print(convert.convert(123,"nano","knano")) # convert 123 Nano to kNano
print(convert.convert(456,"ban","banoshi")) # convert 456 Banano to banoshi

Differences from official commands

Node.sign

Official documentation: https://docs.nano.org/commands/rpc-protocol/#sign

Changed to: sign_private() & sign_acount() & sign_block_hash()

Changes

Use sign_private() when signing a block with a private key, sign_account() when signing a block with an account from wallet and sign_block_hash() when signing a block hash.

Donations

All donations and contributions are welcome! <3

Nano: nano_396phmigwi883hk4x3teedtjk1ejskckmqe7xz3ymfnhe58p9o8gzmkygx91

Banano: ban_1aws637mb3qnuf9j8swzufq3nj3fttuzkixbd817nmmhyms6a6kt1zyptq87

pnrw's People

Contributors

mirandaniel avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.