https://github.com/kpurdon/waybacklapse
A WayBack Machine Time-Lapse Generator
https://github.com/kpurdon/waybacklapse
docker python timelapse waybacklapse
Last synced: about 1 year ago
JSON representation
A WayBack Machine Time-Lapse Generator
- Host: GitHub
- URL: https://github.com/kpurdon/waybacklapse
- Owner: kpurdon
- Created: 2014-11-18T04:19:29.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-18T20:09:10.000Z (over 7 years ago)
- Last Synced: 2024-10-30T03:37:45.890Z (over 1 year ago)
- Topics: docker, python, timelapse, waybacklapse
- Language: Python
- Size: 30.3 KB
- Stars: 29
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# waybacklapse
This is a rewrite of the original waybacklapse using docker and phantomjs directly. It eliminates the need for the screenshot-as-a-service node application. You can still get the original version from pip and can checkout the source using the following command:
* `git clone -b v1.0.1 git@github.com:kpurdon/waybacklapse.git`
You can view the original README [here](https://github.com/kpurdon/waybacklapse/tree/v1.0.1).
## Getting Started
* Have [docker](https://www.docker.com/) and [docker-compose](https://docs.docker.com/compose/) working.
### Quick Method
Requires Python3 on your system.
* `pip install invoke` or `conda install invoke`
* `invoke runner` which will build/start the docker container and run the command-line application. Output will be generated in ./output.
### Detailed Method
* Build the image: `docker-compose build`
* Start the container: `docker-compose up`
To generate a GIF in ./output run: `docker-compose run wayback python3 /usr/src/app/waybacklapse.py`. You will be prompted for inputs. If you want to specify these values (not answering prompts) you can use the flag options shown by `--help`.
## Developing
* Create a virtualenv/conda-env and activate it
* `pip install invoke`
* `invoke test`
* `invoke`