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:
parent
70a1515469
commit
6244d5f258
3
Makefile
3
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
|
||||
|
||||
|
@ -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
|
||||
|
18
convert.py
18
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 <http://www.gnu.org/licenses/>.
|
||||
|
||||
#/usr/bin/env python3
|
||||
import json
|
||||
import pandas
|
||||
import re
|
||||
|
Loading…
Reference in New Issue
Block a user