I had a friend inquire about doing some analysis of just Jesus' words from the New Testament. The analysis he wants done is fairly simple, but the challenge I am finding is the source text.
Does anyone know of a free download of just the text of Jesus' words? It would be like a red-letter edition with just the red letters. ;-) Plain text would be perfect, but other accessible formats would be fine. Short of that, anyone have a suggestion for how to programmatically extract just his words from an existing textual source? Thanks.
I think the ESV API has an option for the words of Christ in red. You could even get the Crossway XML output format with that option turned on, and then extract all of the words marked up as such. Otherwise you could scrape the HTML format.
Sent from a mobile device On Mar 11, 2012 8:54 AM, "Nathan Smith" <nat...@smithfam.info> wrote:
> I had a friend inquire about doing some analysis of just Jesus' words from > the New Testament. The analysis he wants done is fairly simple, but the > challenge I am finding is the source text.
> Does anyone know of a free download of just the text of Jesus' words? It > would be like a red-letter edition with just the red letters. ;-) Plain > text would be perfect, but other accessible formats would be fine. Short of > that, anyone have a suggestion for how to programmatically extract just his > words from an existing textual source? Thanks.
> -- > You received this message because you are subscribed to the Google Groups > "Open Scriptures" group. > To post to this group, send email to openscriptures@googlegroups.com. > To unsubscribe from this group, send email to > openscriptures+unsubscribe@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/openscriptures?hl=en.
Find a red letter text online. Paste the gospels into one HTML page and add JQuery. Depending in how the text is marked up, use something like $('font[color="#880000"]') to select the red sections and then loop through, copying them to DIVs at the end (or wherever you want them).
Nigel
On 12/03/2012, at 2:54, Nathan Smith <nat...@smithfam.info> wrote:
> I had a friend inquire about doing some analysis of just Jesus' words from the New Testament. The analysis he wants done is fairly simple, but the challenge I am finding is the source text.
> Does anyone know of a free download of just the text of Jesus' words? It would be like a red-letter edition with just the red letters. ;-) Plain text would be perfect, but other accessible formats would be fine. Short of that, anyone have a suggestion for how to programmatically extract just his words from an existing textual source? Thanks.
> -- > You received this message because you are subscribed to the Google Groups "Open Scriptures" group. > To post to this group, send email to openscriptures@googlegroups.com. > To unsubscribe from this group, send email to openscriptures+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/openscriptures?hl=en.
> I had a friend inquire about doing some analysis of just Jesus' words from the New Testament. The analysis he wants done is fairly simple, but the challenge I am finding is the source text.
> Does anyone know of a free download of just the text of Jesus' words? It would be like a red-letter edition with just the red letters. ;-) Plain text would be perfect, but other accessible formats would be fine. Short of that, anyone have a suggestion for how to programmatically extract just his words from an existing textual source? Thanks.
On Sun, Mar 11, 2012 at 02:19:19PM -1000, Kahunapule Michael Johnson wrote: > On 03/11/2012 05:54 AM, Nathan Smith wrote: > > I had a friend inquire about doing some analysis of just Jesus' words from the New Testament. The analysis he wants done is fairly simple, but the challenge I am finding is the source text.
> > Does anyone know of a free download of just the text of Jesus' words? It would be like a red-letter edition with just the red letters. ;-) Plain text would be perfect, but other accessible formats would be fine. Short of that, anyone have a suggestion for how to programmatically extract just his words from an existing textual source? Thanks.
eBible.org is back from the dead, now. Sorry about that. I was fighting a security issue on the server, and it turns out that it is hard to move 108 domains quickly from one machine to another without somebody noticing something amiss. If eBible.org glitches like that again, please email me directly. For a limited time, the same file can be downloaded from the old server at http://old.mpj.us/web/eng-web_usfx.zip if the new one disappears again.
> On Sun, Mar 11, 2012 at 02:19:19PM -1000, Kahunapule Michael Johnson wrote: >> On 03/11/2012 05:54 AM, Nathan Smith wrote: >>> I had a friend inquire about doing some analysis of just Jesus' words from the New Testament. The analysis he wants done is fairly simple, but the challenge I am finding is the source text.
>>> Does anyone know of a free download of just the text of Jesus' words? It would be like a red-letter edition with just the red letters. ;-) Plain text would be perfect, but other accessible formats would be fine. Short of that, anyone have a suggestion for how to programmatically extract just his words from an existing textual source? Thanks. >> http://eBible.org/web/eng-web_usfx.zip ... unzip and look between <wj> and </wj>.
>> If that is all you look at, it is kind of like hearing one side of a telephone conversation in a lot of places, but it should be easy to extract.
> This looks like just the ticket, though sadly ebible.org is showing the Centos default apache page at the moment. :-(
On Sun, Mar 11, 2012 at 09:17:57PM -1000, Kahunapule Michael Johnson wrote: > eBible.org is back from the dead, now. Sorry about that. I was fighting a security issue on the server, and it turns out that it is hard to move 108 domains quickly from one machine to another without somebody noticing something amiss. If eBible.org glitches like that again, please email me directly. For a limited time, the same file can be downloaded from the old server at http://old.mpj.us/web/eng-web_usfx.zip if the new one disappears again.
On Wed, Apr 18, 2012 at 12:01:46PM -0700, evstevemd wrote: > Hi Nathan, > Trying to run python file in Ubuntu I got error:
> $ python wordsofjesus.py > Traceback (most recent call last): > File "wordsofjesus.py", line 33, in <module> > stops = stopwords.words('english') > File "/usr/lib/python2.7/dist-packages/nltk/corpus/util.py", line > 68, in __getattr__ > self.__load() > File "/usr/lib/python2.7/dist-packages/nltk/corpus/util.py", line > 56, in __load > except LookupError: raise e > LookupError: > ********************************************************************** > Resource 'corpora/stopwords' not found. Please use the NLTK > Downloader to obtain the resource: >>> nltk.download(). > Searched in: > - '/home/stefano/nltk_data' > - '/usr/share/nltk_data' > - '/usr/local/share/nltk_data' > - '/usr/lib/nltk_data' > - '/usr/local/lib/nltk_data' > **********************************************************************
I forgot to mention this, and I suppose I should update the READE me in the repo: you have to download the stopwords corpus from nltk in order for the script to run. Just open python in the terminal and do "import nltk" followed by "nltk.download()" this will bring up a GUI for downloading the various corpora which NLTK provides, including the English stopwords.
> -- > You received this message because you are subscribed to the Google Groups "Open Scriptures" group. > To post to this group, send email to openscriptures@googlegroups.com. > To unsubscribe from this group, send email to openscriptures+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/openscriptures?hl=en.