Decentralized computer network
Project description
Node
Client
Setup guide
Using PyPi
Linux and MacOS
pip3 install dcn
Windows
pip install dcn
Using github
Linux and MacOS
git clone https://github.com/draklowell/DCNLibrary && cd DCNLibrary && python3 setup.py install
Windows
Download client and in downloaded folder run
python setup.py install
Dependencies
- requests (
2.22.0
) - pycryptodome (
3.9.9
)
Info
Privacy
Connection between two nodes is wrapped by TLSv1.2
( without certificate verification ), but packet is opened, and can be read by any user.
High-level protocols conflict
To avoid protocol conflicts, we recommend to use protocol sign
, it is some bytes in begin of packet, that indicate what protocol is using
License
Using guide
Packet format
2 BYTES - Size of packet
16 BYTES - Custom UUID
65520 BYTES - Content
Max size of content in packet - 65520
( pow(2, 16) - 16
).
Create client
There are two arguments - friendly_hosts
and limit_queue
friendly_hosts
- known nodes in format ( example: ("1.2.3.4", 300)
), also it request official nodes, from official tracker
limit_queue
- max size of queue ( -1
- unlimited ), recommended 65536
import dnc
client = dnc.client.Client(friendly_hosts = [], limit_queue = -1)
Send packet
After generating packet, client sends it to all known nodes. After that, it returns the count of successfully sent copies of the packet and packet hash ( as bytes )
import base64
count, hash = client.send(b"Hello, world!")
print(f"Sended copies of packet: {count}")
print(f"Packet hash ( base64 encoded ): {base64.b64encode(hash).decode()}")
Output:
Sended copies of packet: 1
Packet hash ( base64 encoded ): oZ/dl88Jbb2CiCCQadpxeQSU/HVpHN3k6A+jAIT8G4k=
Receive next packet
When the client gets the new massage from the node, client adds the packet to the queue. When we call client.accept()
, we get the first element of the queue, and then remove it ( we can limit the queue, while initializing client )
import base64
content, hash = client.accept() # or client.next() or next(client)
print(f"Content of packet: {content.decode()}")
print(f"Packet hash ( base64 encoded ): {base64.b64encode(hash).decode()}")
Output:
Content of packet: Hello world!
Packet hash ( base64 encoded ): oZ/dl88Jbb2CiCCQadpxeQSU/HVpHN3k6A+jAIT8G4k=
Close client
You need close client in end of work
client.close()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dcn-2.0.0.4.2.linux-x86_64.tar.gz
.
File metadata
- Download URL: dcn-2.0.0.4.2.linux-x86_64.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 632a6c1236d30209953b1936332d3729a36bffed9380cdc355295342cc621fd0 |
|
MD5 | 0036d198cd8cb9e702f639c113f9bba9 |
|
BLAKE2b-256 | 02f9542ddbd66b30e80e74e461cf7b650e0f7043cc6dbd205e28d6b797f93a4d |