feat(bible): added bible translation to the output of bible random and bible passage
Some checks failed
Actions / Lint Code (Pylint) (push) Failing after 16s
Actions / Build Documentation (MkDocs) (push) Successful in 13s

This commit is contained in:
SeaswimmerTheFsh 2024-02-02 12:43:09 -05:00
parent 6be92f05db
commit 3813d3de02
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
2 changed files with 44 additions and 2 deletions

12
bible/models.py Normal file
View file

@ -0,0 +1,12 @@
class Version:
def __init__(
self, abbreviation, language, abbreviationLocal, languageLocal, copyright
):
self.abbreviation = abbreviation
self.language = language
self.abbreviationLocal = abbreviationLocal
self.languageLocal = languageLocal
self.copyright = copyright
def __str__(self):
return self.abbreviationLocal