feat[license] Added license to convert.py

I gpl'd convert.py.
Everything else remains in the public domain.
I also modified readme.
This commit is contained in:
Judah Sotomayor 2024-03-04 22:49:40 -05:00
parent 70a1515469
commit 6244d5f258
Signed by: judahsotomayor
SSH Key Fingerprint: SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI
3 changed files with 20 additions and 8 deletions

View File

@ -1,6 +1,7 @@
## ##
# esv command line bible # esv command line bible
# # Changelog:
# 2024-03-04 Added download feature to pull esv without distributing with source
PREFIX = /usr/local PREFIX = /usr/local

View File

@ -1,12 +1,7 @@
#+title: Readme #+title: Readme
* Download ESV * ESV license notes
The ESV license doesn't allow me to distribute copies of the ESV with this project. 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]]. 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 * Install
#+begin_src shell #+begin_src shell

View File

@ -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 <http://www.gnu.org/licenses/>.
#/usr/bin/env python3
import json import json
import pandas import pandas
import re import re