ClusterWeb, a distributed system API for SSH and PBS systems
Project description
![alt text](./docs/source/images/logo_color.png?raw=true "Icon")
# ClusterWeb: Distributed System Python API
ClusterWeb is a Python library for creating compute clusters out of any devices that use SSH.
#### Documentation: <https://cluster-web.readthedocs.io/en/latest/>
### Compatiable Devices
- CPUs nodes
- Desktops
- GPUs workstations
- Laptops
- Raspberry Pi
- Android phones
### Requirements
- Python 3.6 or above
- SSH
- Linux or OSX
- pickle
- cloudpickle (host machine)
### Basic Usage:
```python
from clusterweb.pbs.qsub import Qsub
import time
def job(arg):
a,b = 0,1
for _ in range(int(arg)):
a,b = b,a+b
return a
q = Qsub(job,1e5)
q.push()
q.pull(thread=False)
print(q.result)
```
# ClusterWeb: Distributed System Python API
ClusterWeb is a Python library for creating compute clusters out of any devices that use SSH.
#### Documentation: <https://cluster-web.readthedocs.io/en/latest/>
### Compatiable Devices
- CPUs nodes
- Desktops
- GPUs workstations
- Laptops
- Raspberry Pi
- Android phones
### Requirements
- Python 3.6 or above
- SSH
- Linux or OSX
- pickle
- cloudpickle (host machine)
### Basic Usage:
```python
from clusterweb.pbs.qsub import Qsub
import time
def job(arg):
a,b = 0,1
for _ in range(int(arg)):
a,b = b,a+b
return a
q = Qsub(job,1e5)
q.push()
q.pull(thread=False)
print(q.result)
```
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
clusterweb-0.0.0.2.tar.gz
(15.9 kB
view hashes)
Built Distribution
Close
Hashes for clusterweb-0.0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f439a640af813b813cdbf21322d845cb9dd3cf0f7902f6424721b6ad0cc0879 |
|
MD5 | 1a500178155d46aed41a74cd06e352bf |
|
BLAKE2b-256 | d30d39fca827237318140ba6dfa3764fe18d5f65df1b9df3a1e36105b06cda56 |