Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuntechnet/atomicp2p
A high-availability peer-to-peer framework which base on multi-process and threading with distribute and DNS syncing mechanism
https://github.com/yuntechnet/atomicp2p
distributed-systems docker-container kubernetes-deployment p2p peer-to-peer python
Last synced: 2 months ago
JSON representation
A high-availability peer-to-peer framework which base on multi-process and threading with distribute and DNS syncing mechanism
- Host: GitHub
- URL: https://github.com/yuntechnet/atomicp2p
- Owner: YuntechNet
- License: lgpl-2.1
- Created: 2018-01-16T12:42:01.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T18:01:08.000Z (12 months ago)
- Last Synced: 2024-10-12T23:38:08.514Z (2 months ago)
- Topics: distributed-systems, docker-container, kubernetes-deployment, p2p, peer-to-peer, python
- Language: Python
- Homepage:
- Size: 1.12 MB
- Stars: 4
- Watchers: 1
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AtomicP2P
[![PyPI version](https://badge.fury.io/py/AtomicP2P.svg)](https://badge.fury.io/py/AtomicP2P) [![Build Status](https://travis-ci.org/YuntechNet/AtomicP2P.svg?branch=fwos)](https://travis-ci.org/YuntechNet/AtomicP2P) [![codecov](https://codecov.io/gh/YuntechNet/AtomicP2P/branch/master/graph/badge.svg)](https://codecov.io/gh/YuntechNet/AtomicP2P) [![Maintainability](https://api.codeclimate.com/v1/badges/e02dfc9c29c0a9a053bc/maintainability)](https://codeclimate.com/github/YuntechNet/AtomicP2P/maintainability)
A high-availability peer-to-peer framework which base on multi-process and threading with distribute and DNS syncing mechanism.## Feature
1. High-Availability with whole network.
2. Multiprocessing / threading with each peer.
3. Healthy infrastructure to build top application.
4. DNS syncing mechanism.
5. Decentralized and Kubernets / docker friendly deployed.## Installation
```sh
$ pip install AtomicP2P
```## Contributing
Tag a commit with AtomicP2P's `__version__`.
```sh
# 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
```## Doc Update
```sh
$ sphinx-apidoc -o ./docs/source/ ./atomic_p2p/ -f
$ sphinx-build -b html ./docs/source/ ./docs
```