diff --git a/Makefile b/Makefile index 78358f9..9bcacc4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ ## # esv command line bible -# +# Changelog: +# 2024-03-04 Added download feature to pull esv without distributing with source PREFIX = /usr/local diff --git a/README.org b/README.org index c2ac04b..3b896a2 100644 --- a/README.org +++ b/README.org @@ -1,12 +1,7 @@ #+title: Readme -* Download ESV +* ESV license notes The ESV license doesn't allow me to distribute copies of the ESV with this project. I've requested permission, but in the meantime the project will automatically download a copy of the ESV from the [[https://bolls.life/api/][Bolls api]]. -#+begin_src shell -make download -#+end_src -You can use this command, or simply call src_shell{make} / src_shell{make install}. -If =esv.tsv= does not exist in the directory it will automatically be created. * Install #+begin_src shell diff --git a/convert.py b/convert.py index 8c1889e..b735597 100755 --- a/convert.py +++ b/convert.py @@ -1,4 +1,20 @@ -#!/usr/bin/env python3 +# Convert.py +# Copyright (C) 2024 Judah Sotomayor + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +#/usr/bin/env python3 import json import pandas import re