You can find the detailed documentation here: https://anyoptimization.com/projects/pyrecorder/
Installation
The framework is available at the PyPi Repository:
pip install -U pyrecorder
Usage
It’s as simple as it should be. Initialize a Recorder object with a Writer and store plots by calling record().
import matplotlib.pyplot as plt
import numpy as np
from pyrecorder.recorder import Recorder
from pyrecorder.writers.video import Video
# create a writer object (here, mp4)
writer = Video("video.mp4")
# use the with statement to close the recorder when done
with Recorder(writer) as rec:
# record 10 different snapshots
for t in range(10):
# create the plot (here, using matplotlib)
X = np.random.random((50, 2))
plt.scatter(X[:, 0], X[:, 1], facecolor="none", edgecolor="red")
# use the record to store the current plot
rec.record()
Contact
Feel free to contact me if you have any question:
Julian Blank (blankjul [at] egr.msu.edu) Michigan State University Computational Optimization and Innovation Laboratory (COIN) East Lansing, MI 48824, USA
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyrecorder-0.2.1.tar.gz
(9.5 kB
view details)
File details
Details for the file pyrecorder-0.2.1.tar.gz.
File metadata
- Download URL: pyrecorder-0.2.1.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6da2f8bd3e1b72802ee93c524d6aef01900ebb85cb9aaaf0338c33ee1f1db29
|
|
| MD5 |
8f2c3c04e81a8c3065a44af9d142d5cc
|
|
| BLAKE2b-256 |
fdfdc0bdc3b6ce2109b062c29acd3292b08fd70f5e3de5717427619cfd269559
|