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
- Host: GitHub
- URL: https://github.com/gurbaaz27/blockchain-python
- Owner: gurbaaz27
- Created: 2020-08-21T11:32:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-25T13:33:43.000Z (over 5 years ago)
- Last Synced: 2025-03-03T22:11:17.659Z (10 months ago)
- Topics: api, blockchain, consensus-algorithm, flask, proof-of-work, sha256
- Language: HTML
- Homepage:
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)