Raspberry Pi time-lapse service
Project description
pilapse
A simple time-lapse service for Raspberry Pi. It uses raspistill
binary to capture images. It's currently capable of periodically capturing of still images and serving last captured image to the web browser.
Installation and usage
requires Python3
Using Pip
sudo apt update
sudo apt install python3-pip
pip3 install pilapse --user
# If your ~/.local/bin directory was created only during install
# you will likely need to re-login or update your PATH variable to include it
export PATH=$HOME/.local/bin:$PATH
# Start the server
mkdir ~/my-timelapse
pilapse --port 8888 --path ~/my-timelapse --period 60
Manual
git clone https://github.com/yix/pilapse
cd pilapse
pip3 install -r requirements.txt --user
# Start the server
mkdir ~/my-timelapse
python3 -m pilapse --port 8888 --path ~/my-timelapse --period 60
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
pilapse-0.0.12.tar.gz
(23.7 kB
view hashes)
Built Distribution
pilapse-0.0.12-py3-none-any.whl
(28.4 kB
view hashes)