This is a Python library for reading Progsnap data.
All of the code is distributed under the MIT license.
Currently, it only works with Python 3. Patches to support Python 2 would be gratefully accepted.
Documentation is minimal at this point. However, there are example programs in the Progsnap examples repository.
The library is a Python package that can work with pip
. Here's one recommended approach:
Create a Python virtual environment:
virtualenv -p $(which python3) venv
source venv/bin/activate
Import the Progsnap library using pip
(replace somewhere
with the directory containing progsnap
):
cd somewhere/progsnap
pip install -e .
Now you should be ready to run programs that import progsnap
.
Email questions/comments to david.hovemeyer@gmail.com