New sphinx theme, better navigation and release docs
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
author = 'decentral1se'
|
||||
copyright = '2019, decentral1se'
|
||||
html_static_path = ['_static']
|
||||
html_theme = 'alabaster'
|
||||
html_theme = 'sphinx_rtd_theme'
|
||||
master_doc = 'index'
|
||||
project = 'merkle-tree-stream'
|
||||
templates_path = ['_templates']
|
||||
|
24
documentation/source/example.rst
Normal file
24
documentation/source/example.rst
Normal file
@ -0,0 +1,24 @@
|
||||
.. _example:
|
||||
|
||||
*******
|
||||
Example
|
||||
*******
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
from hashlib import sha256
|
||||
from merkle_tree_stream import MerkleTreeGenerator
|
||||
|
||||
def leaf(node, roots=None):
|
||||
return sha256(node.data).digest()
|
||||
|
||||
def parent(first, second):
|
||||
sha256 = hashlib.sha256()
|
||||
sha256.update(first.data)
|
||||
sha256.update(second.data)
|
||||
return sha256.digest()
|
||||
|
||||
merkle = MerkleTreeGenerator(leaf=leaf, parent=parent)
|
||||
merkle.write('hello')
|
||||
merkle.write('hashed')
|
||||
merkle.write('world')
|
@ -1,12 +1,13 @@
|
||||
.. include:: ../../README.rst
|
||||
:end-before: _documentation
|
||||
|
||||
Table of Contents
|
||||
*****************
|
||||
:end-before: _documentation
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
:hidden:
|
||||
|
||||
install
|
||||
upgrade
|
||||
example
|
||||
modules-api
|
||||
other-impls
|
||||
contribute
|
||||
|
@ -3,6 +3,10 @@
|
||||
Other Implementations
|
||||
*********************
|
||||
|
||||
* https://github.com/mafintosh/merkle-tree-stream
|
||||
* https://github.com/datrs/merkle-tree-stream
|
||||
* https://github.com/datcxx/merkle-tree-stream
|
||||
* `mafintosh/merkle-tree-stream`_
|
||||
* `datrs/merkle-tree-stream`_
|
||||
* `datcxx/merkle-tree-stream`_
|
||||
|
||||
.. _mafintosh/merkle-tree-stream: https://github.com/mafintosh/merkle-tree-stream
|
||||
.. _datrs/merkle-tree-stream: https://github.com/datrs/merkle-tree-stream
|
||||
.. _datcxx/merkle-tree-stream: https://github.com/datcxx/merkle-tree-stream
|
||||
|
7
documentation/source/upgrade.rst
Normal file
7
documentation/source/upgrade.rst
Normal file
@ -0,0 +1,7 @@
|
||||
*******
|
||||
Upgrade
|
||||
*******
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
$ pip install --upgrade merkle-tree-stream
|
Reference in New Issue
Block a user