Metadata-Version: 2.1
Name: xpring
Version: 0.1.0
Summary: 
Home-page: https://github.com/thejohnfreeman/xpring-py/
License: ISC
Author: John Freeman
Author-email: jfreeman@ripple.com
Requires-Python: >=3.6
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Provides-Extra: docs
Requires-Dist: dataclasses (>=0.6.0,<0.7.0)
Requires-Dist: ecdsa (>=0.15.0,<0.16.0)
Requires-Dist: fastecdsa (>=2.0,<3.0)
Requires-Dist: grpcio (>=1.24,<2.0)
Requires-Dist: protobuf (>=3.0,<4.0)
Requires-Dist: pynacl (>=1.3,<2.0)
Requires-Dist: sphinx (>=1.8,<2.0); extra == "docs"
Requires-Dist: sphinx_rtd_theme (>=0.4.3,<0.5.0); extra == "docs"
Requires-Dist: toml (>=0.10.0,<0.11.0); extra == "docs"
Requires-Dist: typing_extensions (>=3.7,<4.0)
Project-URL: Documentation, https://xpring-py.readthedocs.io/
Project-URL: Repository, https://github.com/thejohnfreeman/xpring-py/
Description-Content-Type: text/x-rst

.. start-include

======
xpring
======

The Xpring SDK for Python.

.. image:: https://travis-ci.org/thejohnfreeman/xpring-py.svg?branch=master
   :target: https://travis-ci.org/thejohnfreeman/xpring-py
   :alt: Build status: Linux and OSX

.. image:: https://ci.appveyor.com/api/projects/status/github/thejohnfreeman/xpring-py?branch=master&svg=true
   :target: https://ci.appveyor.com/project/thejohnfreeman/xpring-py
   :alt: Build status: Windows

.. image:: https://readthedocs.org/projects/xpring-py/badge/?version=latest
   :target: https://xpring-py.readthedocs.io/
   :alt: Documentation status

.. image:: https://img.shields.io/pypi/v/xpring.svg
   :target: https://pypi.org/project/xpring/
   :alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/pyversions/xpring.svg
   :target: https://pypi.org/project/xpring/
   :alt: Python versions supported


Install
=======

.. code-block:: shell

   pip install xpring


API
===

------
Wallet
------

Construct
---------

You can construct a ``Wallet`` from its seed.
If you do not have your own wallet yet, you can `generate one with some free
XRP on the testnet`__.

.. __: https://xrpl.org/xrp-testnet-faucet.html

.. code-block:: python

   import xpring

   seed = 'sEdSKaCy2JT7JaM7v95H9SxkhP9wS2r'
   wallet = xpring.Wallet.from_seed(seed)
   print(wallet.public_key.hex())
   # ed01fa53fa5a7e77798f882ece20b1abc00bb358a9e55a202d0d0676bd0ce37a63
   print(wallet.private_key.hex())
   # b4c4e046826bd26190d09715fc31f4e6a728204eadd112905b08b14b7f15c4f3


Sign / Verify
-------------

A ``Wallet`` can sign and verify arbitrary bytes, but you'll generally
want to leave these low-level responsibilities to the ``Client``.

.. code-block:: python

   message = bytes.fromhex('DEADBEEF')
   signature = wallet.sign(message)
   wallet.verify(message, signature)
   # True


------
Client
------

``Client`` is the gateway into the XRP Ledger.

Construct
---------

``Client`` is constructed with the URL of a Xpring server.
You may use the one operated by Ripple for the XRP testnet.

.. code-block:: python

   url = 'grpc.xpring.tech:80'
   client = xpring.Client.from_url(url)


Balance
-------

.. code-block:: python

   address = 'r3v29rxf54cave7ooQE6eE7G5VFXofKZT7'
   client.get_balance(address)
   # 1000000000


.. end-include


Develop
=======

------------
Dependencies
------------

The protocol buffers and definitions file are in submodules:

.. code-block:: shell

   git submodule update --init

Use Poetry_ to install dependencies, build the protocol buffers, and copy the
definitions file:

.. code-block:: shell

   poetry install
   poetry run invoke prebuild

.. _Poetry: https://python-poetry.org/docs/

-----
Tasks
-----

There are several Invoke_ tasks:

.. _Invoke: http://www.pyinvoke.org/

.. code-block:: shell

   poetry run invoke ${task}

- ``test``: Pytest_ with coverage and doctests.
- ``lint``: Mypy_, Pylint_, and Pydocstyle_.
- ``serve``: Serve the docs locally and rebuild them on file changes.

.. _Pytest: https://docs.pytest.org/
.. _Mypy: https://mypy.readthedocs.io/
.. _Pylint: https://www.pylint.org/
.. _Pydocstyle: http://www.pydocstyle.org/

