Skip to main content

A Simple Blockchain Database.

Project description

SimpleBlockchainDatabase Open Source Helpers

In this repository you can found a simple Database based on blockchain technology.

IN THIS MOMENT THE DATABASE JUST WORK AS LOCALLY AND ONE DEVICE

Version

1.1.0

LICENSE

MIT License

Requirements

Python >= 3.6

Project structure

├── BlockchainDataBase
│   ├── Data
│   │   ├── __init__.py
│   │   ├── DBManage.py
│   │   ├── config.json
│   ├── __init__.py
│   ├── Block.py
│   ├── Blockchain.py
├── Test
│   ├── Test1.py
│   ├── Test2.py
│   ├── Test3.py
│   ├── Test4.py
├── LICENSE
├── README.md
├── setup.py

Test

  • Test1.py, This test just creates the genesis block of the blockchain.
  • Test2.py, This test add a one block to the blockchain and prints the blocks.
  • Test3.py, This test add 2 blocks into the blockchain, prints the blocks and validate the blockchain.
  • Test4.py, This shows all the blocks.

Install

From test.pypi.org

python -m pip install --index-url https://test.pypi.org/simple/ BlockchainDataBase

From official pypi.org

python -m pip install BlockchainDataBase

Configuration

On the folder you found a configuration file in a JSON format, if you want to change the folder on the database or database name you do in this file.

# The data saves on %APPDATA% directory.
├── BlockchainDataBase
│   ├── Data
│   │   ├── config.json
config.json

{
  "DEFAULT": {
    "DATABASE_LOCATION": "/blockchain/",
    "DATABASE_NAME": "blockchain_database.bc"
  }
}

Examples

Initialize the Blockchain.

from BlockchainDataBase.Blockchain import Blockchain

bc = Blockchain()

Add one block into Blockchain.

data = {"Data": "dataResult"}
bc.add_block(data)

Shows all the blocks in the Blockchain.

bc.print_blocks()

Validates the blockchain to check if not was corrupted

bc.validate_chain()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

BlockchainDataBase-1.1.2.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

BlockchainDataBase-1.1.2-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page