commit ad9ce7ca77772a36a72a6d102520e9ecc2db7417 Author: Ludwig Lehnert Date: Sat Feb 15 16:38:33 2025 +0100 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f7275bb --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +venv/ diff --git a/download b/download new file mode 100755 index 0000000..6ade6fb --- /dev/null +++ b/download @@ -0,0 +1 @@ +#!/bin/env python3 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..954f0db --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +selenium \ No newline at end of file diff --git a/setup.fish b/setup.fish new file mode 100644 index 0000000..d09b492 --- /dev/null +++ b/setup.fish @@ -0,0 +1,7 @@ +/bin/env python3 -m venv venv +. venv/bin/activate.fish +python3 -m pip install -r requirements.txt + +echo +echo "Usage: ./download " +