ZeroNet
ZeroNet
DHT support
Similar to torrent's DHT solution, required features: - Find peer to specified site file (to allow sites to add optionally download files) - Ipv6 and tor address support for peers...
Python 3.7.1 PySocks: 1.7.0 Gevent: 1.4.0 ```py import socket import gevent import gevent.monkey gevent.monkey.patch_all() import socks s = socks.socksocket(socket.AF_INET, socket.SOCK_DGRAM) s.set_proxy(socks.SOCKS5, "127.0.0.1", 8080) s.settimeout(1) s.sendto(b"test", ("127.0.0.1", 12000)) data, server =...
example: http://i.imgur.com/cV8mju1.png
It would be better not starting everything from "zero".
Example tasks that needs to be easily done: - List all comments containing "Test" and delete them - Move all comments from topic X to topic Y - List all...
Because when `from lib.sslcrypto.openssl import discovery` imported for patching it also imports `sslcrypto/openssl/library.py` that is executes `discover_library()` before the patch. ``` Traceback (most recent call last): File "zeronet.py", line 17,...