develop #2
@@ -1,24 +0,0 @@
|
||||
<header>
|
||||
<a href="/">Home</a> | <a href="/find">Quick Search</a> |
|
||||
<a href="/random?view=rich">Random Verse</a> |
|
||||
<a href="/votd?view=rich">Verse of the Day</a></header>
|
||||
<h2>Quick Search</h2>
|
||||
<form action="/find">
|
||||
<label for='kw'>Query</label><br>
|
||||
<input type="text" name="kw"><br><br>
|
||||
|
||||
<input type="hidden" name="view" value="rich"><br>
|
||||
|
||||
<input type="submit">
|
||||
<form>
|
||||
|
||||
<style>
|
||||
html{
|
||||
font-family: sans-serif;
|
||||
font-size: 14pt;
|
||||
width: 768px;
|
||||
}
|
||||
a {
|
||||
color: #547720
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
<header>
|
||||
<a href="/">Home</a> | <a href="/find">Quick Search</a> |
|
||||
<a href="/random?view=rich">Random Verse</a> |
|
||||
<a href="/votd?view=rich">Verse of the Day</a></header>
|
||||
<h2>Quick Search</h2>
|
||||
<form action="/find">
|
||||
<label for='kw'>Query</label><br>
|
||||
<input type="text" name="kw"><br><br>
|
||||
|
||||
<input type="hidden" name="view" value="rich"><br>
|
||||
|
||||
<input type="submit">
|
||||
<form>
|
||||
|
||||
<style>
|
||||
html{
|
||||
font-family: sans-serif;
|
||||
font-size: 14pt;
|
||||
width: 768px;
|
||||
}
|
||||
a {
|
||||
color: #547720
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,12 @@
|
||||
#Here we will take the transcript of a sermon, extract references to scripture and store in
|
||||
# a sqlite database by scripture UID per what's in the kjv.db
|
||||
# This will write to a new db, sermons.db, with the following table
|
||||
# key, verse_id, sermon_name, sermon_preacher, sermon_denomination, sermon_link, sermon_timestamp
|
||||
|
||||
# Need to do a study of how scripture is transcoded, as in, is it "matthew fifeteen seven" or "Matthew 15:7" and account
|
||||
# for those differences.
|
||||
# This tool is only for populating the database when given
|
||||
|
||||
usage = """Transcript Parser by Tyler Dinsmoor
|
||||
Usage: python3 transcript_parse.py sermon_transcript.txt [../data/sermons.db]
|
||||
"""
|
||||
Reference in New Issue
Block a user