Metadata-Version: 2.1
Name: decentmesh
Version: 0.0.136
Summary: Simple connection over decentralized network
Home-page: https://github.com/jiri-otoupal/DecentNet-Py
Author: Jiri Otoupal
Author-email: jiri-otoupal@ips-database.eu
License: JO-CAL
Keywords: Decentralized P2P Network
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8,<4
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: alembic~=1.13.3
Requires-Dist: argon2-cffi~=23.1.0
Requires-Dist: argon2-cffi-bindings~=21.2.0
Requires-Dist: asn1crypto~=1.5.1
Requires-Dist: cffi~=1.17.1
Requires-Dist: hypercorn~=0.17.3
Requires-Dist: coincurve~=20.0.0
Requires-Dist: pycryptodome~=3.21.0
Requires-Dist: pynacl~=1.5.0
Requires-Dist: typing_extensions
Requires-Dist: eth-utils~=5.0.0
Requires-Dist: lz4~=4.3.3
Requires-Dist: networkx~=3.3
Requires-Dist: pylzma~=0.5.0
Requires-Dist: SQLAlchemy~=2.0.35
Requires-Dist: cbor2~=5.6.5
Requires-Dist: netifaces~=0.11.0
Requires-Dist: sentry-sdk~=2.16.0
Provides-Extra: async-db
Requires-Dist: greenlet~=3.1.1; extra == "async-db"
Requires-Dist: aiosqlite~=0.20.0; extra == "async-db"
Provides-Extra: dev
Requires-Dist: setuptools~=74.1.2; extra == "dev"
Requires-Dist: black==22.*; extra == "dev"
Requires-Dist: numpy~=2.1.2; extra == "dev"
Provides-Extra: metrics
Requires-Dist: prometheus_client~=0.20.0; extra == "metrics"
Requires-Dist: httpx~=0.27.2; extra == "metrics"
Requires-Dist: mdurl~=0.1.2; extra == "metrics"
Requires-Dist: aiohttp~=3.10.10; extra == "metrics"
Requires-Dist: Mako~=1.3.5; extra == "metrics"
Requires-Dist: markdown-it-py~=3.0.0; extra == "metrics"
Requires-Dist: MarkupSafe~=2.1.5; extra == "metrics"
Provides-Extra: cli
Requires-Dist: click~=8.1.7; extra == "cli"
Requires-Dist: rich~=13.9.2; extra == "cli"
Requires-Dist: colorama~=0.4.6; extra == "cli"
Requires-Dist: Pygments~=2.18.0; extra == "cli"
Requires-Dist: six~=1.16.0; extra == "cli"
Requires-Dist: qrcode~=8.0; extra == "cli"

# DecentMesh Network

```
                *                       
                          *             
                    **   *              
                                        
                 *    **                
           *     ***    *   **          
                      **                
 __   ___  __   ___      ___        ___  __       
|  \ |__  /  ` |__  |\ |  |   |\/| |__  /__` |__| 
|__/ |___ \__, |___ | \|  |   |  | |___ .__/ |  | 
                *     *                 
           *      *        *            
           *   *                        
             *   *                      
                 *                      
                      *                 
               *     *   *              
                   *                    
```

DecentMesh Network is a decentralized and resilient network framework designed to facilitate secure, efficient, and scalable connectivity for
distributed applications.

It enables seamless node discovery, robust communication, and easy management of decentralized environments, empowering
developers to build and maintain decentralized networks with minimal complexity.
With DecentMesh, you can effortlessly connect, monitor, and manage
nodes, ensuring reliable communication across your network.
Ideal for projects requiring high availability and security, DecentMesh simplifies the
challenges of decentralized networking.

## Installation

### Prerequisites

Before you begin, ensure you have the following installed on your Debian-based system:

```bash
sudo apt update
sudo apt python3-pip
sudo apt-get install autoconf automake libtool
```

Install Decentmesh node

```bash

git clone git@github.com:jiri-otoupal/DecentNet-Py.git decentmesh
```

### Requirement for running a Node

* Redis capable of Pub/Sub

### How to run node

```bash
decentmesh service start 127.0.0.1 8888
```

### Compilation with nuitka for linux

```bash
python3 -m nuitka --standalone --include-package=sqlite3,lz4,coincurve,click,cbor2,sentry_sdk,pylzma,ecdsa,qrcode,prometheus_client,sqlalchemy,aiosqlite --python-flag=no_site --include-module=decentnet --follow-imports decentnet/main.py
```
