A high-availability peer-to-peer framework which base on multi-process and threading with distribute and DNS syncing mechanism.
- High-Availability with whole network.
- Multiprocessing / threading with each peer.
- Healthy infrastructure to build top application.
- DNS syncing mechanism.
- Decentralized and Kubernets / docker friendly deployed.
$ pip install AtomicP2P
Tag a commit with AtomicP2P's __version__
.
# Add a simple tag.
$ grep "__version__ = " atomic_p2p/__init__.py | cut -d '"' -f 2 | xargs git tag
# Add a tag with messages.
$ grep "__version__ = " atomic_p2p/__init__.py | cut -d '"' -f 2 | xargs git tag -a
# Remove a tag.
$ grep "__version__ = " atomic_p2p/__init__.py | cut -d '"' -f 2 | xargs git tag -d
$ sphinx-apidoc -o ./docs/source/ ./atomic_p2p/ -f
$ sphinx-build -b html ./docs/source/ ./docs