A wrapper around magic-wormhole and joblib to send pickled objects across the internet.
Project description
MagicPickle
magicpickle allows you to transfer pickled representations of objects between local and remote instances of scripts, providing a near-seamless way to write code which both accesses data stored remotely and visualizes it locally. This avoids the need to:
- store, load, and sync intermediate data representations between local and remote machines
- use X11 forwarding/VNC with noticable latency
Internally, magicpickle uses joblib to pickle and unpickle objects, and magic-wormhole to transfer the pickled data between local and remote instances of a script.
Note that magicpickle assumes that each mp.save is associated with a single mp.load in the same script; it assumes that both local and remote instances have the same control flow.
Installation
pip install magicpickle
Usage
Check the docstrings in src/magicpickle.py for more information. Example use:
from magicpickle import MagicPickle
with MagicPickle(MY_LOCAL_HOSTNAME) as mp: # or MagicPickle(func_that_returns_true_if_local)
if mp.is_remote: # or mp.is_local
mp.save("hello")
else:
print(mp.load())
Tmux
tmux_magicpickle.py is a script that scrapes your panes and automatically enters the magic-wormhole code for you. Add the following to your ~/.tmux.conf to use it:
bind-key g run-shell "python3 PATH_TO/tmux_magicpickle.py"
to add the prefix + g binding.
Gotchas
To allow the pickling of lambda functions, prefix your script with
import dill as pickle
To allow the loading of pickled CUDA tensors onto a CPU, prefix your script with
import torch
# https://stackoverflow.com/a/78399538/10702372
torch.serialization.register_package(0, lambda x: x.device.type, lambda x, _: x.cpu())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file magicpickle-0.0.6.tar.gz.
File metadata
- Download URL: magicpickle-0.0.6.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
646760833d0974ccbe0974dc449b0f0f5fad46b4bcbf6afa651051a091bd776b
|
|
| MD5 |
8809bd192f04b77d25776229439fec99
|
|
| BLAKE2b-256 |
70e1b88dfce38eb85810a2f93ae008b27040bda7a9cf3b1c404e437dcead7e43
|
File details
Details for the file magicpickle-0.0.6-py3-none-any.whl.
File metadata
- Download URL: magicpickle-0.0.6-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71497b1517825085b58a658911980d49e69a54b0853821abfc67560b828ba55d
|
|
| MD5 |
58863898c99d1c76a633e9b6e9a120bd
|
|
| BLAKE2b-256 |
0f40a27d09ba561a25f79356ee936d737bca4395bff81c6cee35a3463d23dcf5
|