An open API service indexing awesome lists of open source software.

https://github.com/gurbaaz27/blockchain-python

Basic implementation of Blockchain API with Flask
https://github.com/gurbaaz27/blockchain-python

api blockchain consensus-algorithm flask proof-of-work sha256

Last synced: 5 months ago
JSON representation

Basic implementation of Blockchain API with Flask

Awesome Lists containing this project

README

          

# Blockchain Python
Basic implementation of Blockchain API with Flask.

## Usage

* Clone the repo
```
git clone link-to-repo
```
* After navigating into directory, create virtual environment
```
python -m venv venv
```
* Install the dependencies:
```
pip install -r requirements.txt
```
* Run the command and head to localhost:5000
```
flask run
```

## Acknowledgment
* [Learn Blockchains by Building One](https://hackernoon.com/learn-blockchains-by-building-one-117428612f46)