diff README.md @ 28:30535f42d0ff

refactor code
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Wed, 02 Feb 2022 21:16:10 +0100
parents 2a4ee2f23e0c
children d9537541d623
line wrap: on
line diff
--- a/README.md	Thu Jan 06 12:10:25 2022 +0000
+++ b/README.md	Wed Feb 02 21:16:10 2022 +0100
@@ -5,16 +5,27 @@
 
 
 # bitcaviar-plus
+
 A Bitcoin blockchain parser written in Python.
 
 ## Installation
-Clone repository
+
+### Recommended
+
 ```bash
 pip install bitcaviar-plus
 ```
 
+### Manual
+
+```bash
+python setup.py install
+```
+
 ## Usage
-### Deserialize first block from file `blk00000.dat`
+
+### Deserialize Genesis block
+
 ```python
 from bitcaviar_plus.block import deserialize_block
 
@@ -26,6 +37,7 @@
 ```
 
 ### Deserialize entire blockchain
+
 ```python
 import os
 from bitcaviar_plus.block import deserialize_block
@@ -47,6 +59,7 @@
 ```
 
 ### Example output
+
 ```json
 {
   "magic_number":"f9beb4d9",